import { DEFAULT_CONFIG } from "@goauthentik/common/api/config"; import "@goauthentik/elements/CodeMirror"; import "@goauthentik/elements/forms/HorizontalFormElement"; import { ModelForm } from "@goauthentik/elements/forms/ModelForm"; import { msg } from "@lit/localize"; import { TemplateResult, html } from "lit"; import { customElement } from "lit/decorators.js"; import { ifDefined } from "lit/directives/if-defined.js"; import { CertificateKeyPair, CertificateKeyPairRequest, CryptoApi } from "@goauthentik/api"; @customElement("ak-crypto-certificate-form") export class CertificateKeyPairForm extends ModelForm { loadInstance(pk: string): Promise { return new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsRetrieve({ kpUuid: pk, }); } getSuccessMessage(): string { return this.instance ? msg("Successfully updated certificate-key pair.") : msg("Successfully created certificate-key pair."); } async send(data: CertificateKeyPair): Promise { if (this.instance) { return new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsPartialUpdate({ kpUuid: this.instance.pk || "", patchedCertificateKeyPairRequest: data, }); } else { return new CryptoApi(DEFAULT_CONFIG).cryptoCertificatekeypairsCreate({ certificateKeyPairRequest: data as unknown as CertificateKeyPairRequest, }); } } renderForm(): TemplateResult { return html`

${msg("PEM-encoded Certificate data.")}

${msg( "Optional Private Key. If this is set, you can use this keypair for encryption.", )}

`; } }