import { SAMLPropertyMapping, PropertymappingsApi } from "authentik-api"; import { t } from "@lingui/macro"; import { customElement } from "lit-element"; import { html, TemplateResult } from "lit-html"; import { DEFAULT_CONFIG } from "../../api/Config"; import { ifDefined } from "lit-html/directives/if-defined"; import "../../elements/forms/HorizontalFormElement"; import "../../elements/CodeMirror"; import { ModelForm } from "../../elements/forms/ModelForm"; @customElement("ak-property-mapping-saml-form") export class PropertyMappingLDAPForm extends ModelForm { loadInstance(pk: string): Promise { return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsSamlRetrieve({ pmUuid: pk, }); } getSuccessMessage(): string { if (this.instance) { return t`Successfully updated mapping.`; } else { return t`Successfully created mapping.`; } } send = (data: SAMLPropertyMapping): Promise => { if (this.instance) { return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsSamlUpdate({ pmUuid: this.instance.pk || "", sAMLPropertyMappingRequest: data, }); } else { return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsSamlCreate({ sAMLPropertyMappingRequest: data, }); } }; renderForm(): TemplateResult { return html`

${t`Attribute name used for SAML Assertions. Can be a URN OID, a schema reference, or a any other string. If this property mapping is used for NameID Property, this field is discarded.`}

${t`Optionally set the 'FriendlyName' value of the Assertion attribute.`}

${t`Expression using Python.`} ${t`See documentation for a list of all variables.`}

`; } }