73 lines
2.9 KiB
TypeScript
73 lines
2.9 KiB
TypeScript
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { docLink } from "@goauthentik/common/global";
|
|
import "@goauthentik/elements/CodeMirror";
|
|
import { CodeMirrorMode } from "@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 } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import { NotificationWebhookMapping, PropertymappingsApi } from "@goauthentik/api";
|
|
|
|
@customElement("ak-property-mapping-notification-form")
|
|
export class PropertyMappingNotification extends ModelForm<NotificationWebhookMapping, string> {
|
|
loadInstance(pk: string): Promise<NotificationWebhookMapping> {
|
|
return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsNotificationRetrieve({
|
|
pmUuid: pk,
|
|
});
|
|
}
|
|
|
|
getSuccessMessage(): string {
|
|
return this.instance
|
|
? msg("Successfully updated mapping.")
|
|
: msg("Successfully created mapping.");
|
|
}
|
|
|
|
async send(data: NotificationWebhookMapping): Promise<NotificationWebhookMapping> {
|
|
if (this.instance) {
|
|
return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsNotificationUpdate({
|
|
pmUuid: this.instance.pk || "",
|
|
notificationWebhookMappingRequest: data,
|
|
});
|
|
} else {
|
|
return new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsNotificationCreate({
|
|
notificationWebhookMappingRequest: data,
|
|
});
|
|
}
|
|
}
|
|
|
|
renderForm(): TemplateResult {
|
|
return html` <ak-form-element-horizontal label=${msg("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
|
|
label=${msg("Expression")}
|
|
?required=${true}
|
|
name="expression"
|
|
>
|
|
<ak-codemirror
|
|
mode=${CodeMirrorMode.Python}
|
|
value="${ifDefined(this.instance?.expression)}"
|
|
>
|
|
</ak-codemirror>
|
|
<p class="pf-c-form__helper-text">
|
|
${msg("Expression using Python.")}
|
|
<a
|
|
target="_blank"
|
|
href="${docLink("/docs/property-mappings/expression?utm_source=authentik")}"
|
|
>
|
|
${msg("See documentation for a list of all variables.")}
|
|
</a>
|
|
</p>
|
|
</ak-form-element-horizontal>`;
|
|
}
|
|
}
|