import { DEFAULT_CONFIG } from "@goauthentik/common/api/config"; import { first } from "@goauthentik/common/utils"; import "@goauthentik/elements/CodeMirror"; import { PFColor } from "@goauthentik/elements/Label"; import { Form } from "@goauthentik/elements/forms/Form"; import "@goauthentik/elements/forms/HorizontalFormElement"; import { UserOption } from "@goauthentik/elements/user/utils"; import YAML from "yaml"; import { t } from "@lingui/macro"; import { CSSResult, TemplateResult, html } from "lit"; import { customElement, property, state } from "lit/decorators.js"; import { until } from "lit/directives/until.js"; import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css"; import { CoreApi, PoliciesApi, Policy, PolicyTestRequest, PolicyTestResult, } from "@goauthentik/api"; @customElement("ak-policy-test-form") export class PolicyTestForm extends Form { @property({ attribute: false }) policy?: Policy; @state() result?: PolicyTestResult; @property({ attribute: false }) request?: PolicyTestRequest; getSuccessMessage(): string { return t`Successfully sent test-request.`; } send = (data: PolicyTestRequest): Promise => { this.request = data; return new PoliciesApi(DEFAULT_CONFIG) .policiesAllTestCreate({ policyUuid: this.policy?.pk || "", policyTestRequest: data, }) .then((result) => (this.result = result)); }; static get styles(): CSSResult[] { return super.styles.concat(PFDescriptionList); } renderResult(): TemplateResult { return html`
${this.result?.passing ? t`Yes` : t`No`}
    ${(this.result?.messages || []).length > 0 ? this.result?.messages?.map((m) => { return html`
  • ${m}
  • `; }) : html`
  • -
  • `}
${(this.result?.logMessages || []).length > 0 ? this.result?.logMessages?.map((m) => { return html`
${m.log_level}
${m.event}
`; }) : html`
${t`No log messages.`}
`}
`; } renderForm(): TemplateResult { return html`

${t`Set custom attributes using YAML or JSON.`}

${this.result ? this.renderResult() : html``}
`; } }