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, state } from "lit/decorators.js"; import { EnterpriseApi, License } from "@goauthentik/api"; @customElement("ak-enterprise-license-form") export class EnterpriseLicenseForm extends ModelForm { @state() installID?: string; loadInstance(pk: string): Promise { return new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicenseRetrieve({ licenseUuid: pk, }); } getSuccessMessage(): string { if (this.instance) { return msg("Successfully updated license."); } else { return msg("Successfully created license."); } } async load(): Promise { this.installID = ( await new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicenseGetInstallIdRetrieve() ).installId; } async send(data: License): Promise { if (this.instance) { return new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicensePartialUpdate({ licenseUuid: this.instance.licenseUuid || "", patchedLicenseRequest: data, }); } else { return new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicenseCreate({ licenseRequest: data, }); } } renderForm(): TemplateResult { return html`
`; } }