import { HaveIBeenPwendPolicy, PoliciesApi } from "authentik-api"; import { gettext } from "django"; import { customElement, property } from "lit-element"; import { html, TemplateResult } from "lit-html"; import { DEFAULT_CONFIG } from "../../../api/Config"; import { Form } from "../../../elements/forms/Form"; import { ifDefined } from "lit-html/directives/if-defined"; import "../../../elements/forms/HorizontalFormElement"; import "../../../elements/forms/FormGroup"; import { first } from "../../../utils"; @customElement("ak-policy-hibp-form") export class HaveIBeenPwnedPolicyForm extends Form { set policyUUID(value: string) { new PoliciesApi(DEFAULT_CONFIG).policiesHaveibeenpwnedRead({ policyUuid: value, }).then(policy => { this.policy = policy; }); } @property({attribute: false}) policy?: HaveIBeenPwendPolicy; getSuccessMessage(): string { if (this.policy) { return gettext("Successfully updated policy."); } else { return gettext("Successfully created policy."); } } send = (data: HaveIBeenPwendPolicy): Promise => { if (this.policy) { return new PoliciesApi(DEFAULT_CONFIG).policiesHaveibeenpwnedUpdate({ policyUuid: this.policy.pk || "", data: data }); } else { return new PoliciesApi(DEFAULT_CONFIG).policiesHaveibeenpwnedCreate({ data: data }); } }; renderForm(): TemplateResult { return html`

${gettext("When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged.")}

${gettext("Policy-specific settings")}

${gettext("Field key to check, field keys defined in Prompt stages are available.")}

${gettext("Allow up to N occurrences in the HIBP database.")}

`; } }