summaryrefslogtreecommitdiffstats
path: root/third_party/js/PKI.js/src/OtherRevocationInfoFormat.ts
blob: e1de7593837e3eef5fd548713d23bf5a3ca7c6da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import * as asn1js from "asn1js";
import * as pvutils from "pvutils";
import { EMPTY_STRING } from "./constants";
import { AsnError } from "./errors";
import { PkiObject, PkiObjectParameters } from "./PkiObject";
import * as Schema from "./Schema";

const OTHER_REV_INFO_FORMAT = "otherRevInfoFormat";
const OTHER_REV_INFO = "otherRevInfo";
const CLEAR_PROPS = [
  OTHER_REV_INFO_FORMAT,
  OTHER_REV_INFO
];

export interface IOtherRevocationInfoFormat {
  otherRevInfoFormat: string;
  otherRevInfo: any;
}

export interface OtherRevocationInfoFormatJson {
  otherRevInfoFormat: string;
  otherRevInfo?: any;
}

export type OtherRevocationInfoFormatParameters = PkiObjectParameters & Partial<IOtherRevocationInfoFormat>;

/**
 * Represents the OtherRevocationInfoFormat structure described in [RFC5652](https://datatracker.ietf.org/doc/html/rfc5652)
 */
export class OtherRevocationInfoFormat extends PkiObject implements IOtherRevocationInfoFormat {

  public static override CLASS_NAME = "OtherRevocationInfoFormat";

  public otherRevInfoFormat!: string;
  public otherRevInfo: any;

  /**
   * Initializes a new instance of the {@link OtherRevocationInfoFormat} class
   * @param parameters Initialization parameters
   */
  constructor(parameters: OtherRevocationInfoFormatParameters = {}) {
    super();

    this.otherRevInfoFormat = pvutils.getParametersValue(parameters, OTHER_REV_INFO_FORMAT, OtherRevocationInfoFormat.defaultValues(OTHER_REV_INFO_FORMAT));
    this.otherRevInfo = pvutils.getParametersValue(parameters, OTHER_REV_INFO, OtherRevocationInfoFormat.defaultValues(OTHER_REV_INFO));

    if (parameters.schema) {
      this.fromSchema(parameters.schema);
    }
  }

  /**
   * Returns default values for all class members
   * @param memberName String name for a class member
   * @returns Default value
   */
  static override defaultValues(memberName: typeof OTHER_REV_INFO_FORMAT): string;
  static override defaultValues(memberName: typeof OTHER_REV_INFO): any;
  static override defaultValues(memberName: string): any {
    switch (memberName) {
      case OTHER_REV_INFO_FORMAT:
        return EMPTY_STRING;
      case OTHER_REV_INFO:
        return new asn1js.Any();
      default:
        return super.defaultValues(memberName);
    }
  }

  /**
   * @inheritdoc
   * @asn ASN.1 schema
   * ```asn
   * OtherCertificateFormat ::= SEQUENCE {
   *    otherRevInfoFormat OBJECT IDENTIFIER,
   *    otherRevInfo ANY DEFINED BY otherCertFormat }
   *```
   */
  public static override schema(parameters: Schema.SchemaParameters<{
    otherRevInfoFormat?: string;
    otherRevInfo?: string;
  }> = {}): Schema.SchemaType {
    const names = pvutils.getParametersValue<NonNullable<typeof parameters.names>>(parameters, "names", {});

    return (new asn1js.Sequence({
      name: (names.blockName || EMPTY_STRING),
      value: [
        new asn1js.ObjectIdentifier({ name: (names.otherRevInfoFormat || OTHER_REV_INFO_FORMAT) }),
        new asn1js.Any({ name: (names.otherRevInfo || OTHER_REV_INFO) })
      ]
    }));
  }

  public fromSchema(schema: Schema.SchemaType): void {
    // Clear input data first
    pvutils.clearProps(schema, CLEAR_PROPS);

    // Check the schema is valid
    const asn1 = asn1js.compareSchema(schema,
      schema,
      OtherRevocationInfoFormat.schema()
    );
    AsnError.assertSchema(asn1, this.className);

    // Get internal properties from parsed schema
    this.otherRevInfoFormat = asn1.result.otherRevInfoFormat.valueBlock.toString();
    this.otherRevInfo = asn1.result.otherRevInfo;
  }

  public toSchema(): asn1js.Sequence {
    // Construct and return new ASN.1 schema for this object
    return (new asn1js.Sequence({
      value: [
        new asn1js.ObjectIdentifier({ value: this.otherRevInfoFormat }),
        this.otherRevInfo
      ]
    }));
  }

  public toJSON(): OtherRevocationInfoFormatJson {
    const res: OtherRevocationInfoFormatJson = {
      otherRevInfoFormat: this.otherRevInfoFormat
    };

    if (!(this.otherRevInfo instanceof asn1js.Any)) {
      res.otherRevInfo = this.otherRevInfo.toJSON();
    }

    return res;
  }

}