ba5374f6e1
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
89 lines
3.7 KiB
TypeScript
89 lines
3.7 KiB
TypeScript
import { ExpressionPolicy, PoliciesApi } 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/forms/FormGroup";
|
|
import "../../../elements/CodeMirror";
|
|
import { first } from "../../../utils";
|
|
import { ModelForm } from "../../../elements/forms/ModelForm";
|
|
|
|
@customElement("ak-policy-expression-form")
|
|
export class ExpressionPolicyForm extends ModelForm<ExpressionPolicy, string> {
|
|
|
|
loadInstance(pk: string): Promise<ExpressionPolicy> {
|
|
return new PoliciesApi(DEFAULT_CONFIG).policiesExpressionRetrieve({
|
|
policyUuid: pk,
|
|
});
|
|
}
|
|
|
|
getSuccessMessage(): string {
|
|
if (this.instance) {
|
|
return t`Successfully updated policy.`;
|
|
} else {
|
|
return t`Successfully created policy.`;
|
|
}
|
|
}
|
|
|
|
send = (data: ExpressionPolicy): Promise<ExpressionPolicy> => {
|
|
if (this.instance) {
|
|
return new PoliciesApi(DEFAULT_CONFIG).policiesExpressionUpdate({
|
|
policyUuid: this.instance.pk || "",
|
|
expressionPolicyRequest: data
|
|
});
|
|
} else {
|
|
return new PoliciesApi(DEFAULT_CONFIG).policiesExpressionCreate({
|
|
expressionPolicyRequest: data
|
|
});
|
|
}
|
|
};
|
|
|
|
renderForm(): TemplateResult {
|
|
return html`<form class="pf-c-form pf-m-horizontal">
|
|
<div class="form-help-text">
|
|
${t`Executes the python snippet to determine whether to allow or deny a request.`}
|
|
</div>
|
|
<ak-form-element-horizontal
|
|
label=${t`Name`}
|
|
?required=${true}
|
|
name="name">
|
|
<input type="text" value="${ifDefined(this.instance?.name || "")}" class="pf-c-form-control" required>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-element-horizontal name="executionLogging">
|
|
<div class="pf-c-check">
|
|
<input type="checkbox" class="pf-c-check__input" ?checked=${first(this.instance?.executionLogging, false)}>
|
|
<label class="pf-c-check__label">
|
|
${t`Execution logging`}
|
|
</label>
|
|
</div>
|
|
<p class="pf-c-form__helper-text">
|
|
${t`When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged.`}
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
<ak-form-group .expanded=${true}>
|
|
<span slot="header">
|
|
${t`Policy-specific settings`}
|
|
</span>
|
|
<div slot="body" class="pf-c-form">
|
|
<ak-form-element-horizontal
|
|
label=${t`Expression`}
|
|
?required=${true}
|
|
name="expression">
|
|
<ak-codemirror mode="python" value="${ifDefined(this.instance?.expression)}">
|
|
</ak-codemirror>
|
|
<p class="pf-c-form__helper-text">
|
|
${t`Expression using Python.`}
|
|
<a target="_blank" href="https://goauthentik.io/docs/policies/expression">
|
|
${t`See documentation for a list of all variables.`}
|
|
</a>
|
|
</p>
|
|
</ak-form-element-horizontal>
|
|
</div>
|
|
</ak-form-group>
|
|
</form>`;
|
|
}
|
|
|
|
}
|