2021-04-03 17:26:43 +00:00
|
|
|
import { t } from "@lingui/macro";
|
2021-01-12 21:26:57 +00:00
|
|
|
import { customElement, html, property, TemplateResult } from "lit-element";
|
2021-02-09 16:04:55 +00:00
|
|
|
import { AKResponse } from "../../api/Client";
|
2021-01-12 21:26:57 +00:00
|
|
|
import { TablePage } from "../../elements/table/TablePage";
|
|
|
|
|
2021-03-31 13:58:19 +00:00
|
|
|
import "../policies/BoundPoliciesList";
|
2021-01-12 21:26:57 +00:00
|
|
|
import "../../elements/buttons/SpinnerButton";
|
2021-03-29 17:21:48 +00:00
|
|
|
import "../../elements/forms/ModalForm";
|
2021-01-12 21:26:57 +00:00
|
|
|
import { TableColumn } from "../../elements/table/Table";
|
2021-03-02 14:12:26 +00:00
|
|
|
import { PAGE_SIZE } from "../../constants";
|
2021-03-16 20:32:39 +00:00
|
|
|
import { EventsApi, NotificationRule } from "authentik-api";
|
2021-03-08 10:14:00 +00:00
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
2021-03-18 11:14:27 +00:00
|
|
|
import "../../elements/forms/DeleteForm";
|
2021-03-29 17:21:48 +00:00
|
|
|
import "./RuleForm";
|
2021-01-12 21:26:57 +00:00
|
|
|
|
2021-01-15 15:23:27 +00:00
|
|
|
@customElement("ak-event-rule-list")
|
2021-03-08 10:14:00 +00:00
|
|
|
export class RuleListPage extends TablePage<NotificationRule> {
|
2021-01-12 21:26:57 +00:00
|
|
|
expandable = true;
|
2021-08-05 10:30:43 +00:00
|
|
|
checkbox = true;
|
2021-01-12 21:26:57 +00:00
|
|
|
|
|
|
|
searchEnabled(): boolean {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
pageTitle(): string {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Notification Rules`;
|
2021-01-12 21:26:57 +00:00
|
|
|
}
|
|
|
|
pageDescription(): string {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Send notifications whenever a specific Event is created and matched by policies.`;
|
2021-01-12 21:26:57 +00:00
|
|
|
}
|
|
|
|
pageIcon(): string {
|
2021-03-20 15:06:56 +00:00
|
|
|
return "pf-icon pf-icon-attention-bell";
|
2021-01-12 21:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property()
|
|
|
|
order = "name";
|
|
|
|
|
2021-03-08 10:14:00 +00:00
|
|
|
apiEndpoint(page: number): Promise<AKResponse<NotificationRule>> {
|
|
|
|
return new EventsApi(DEFAULT_CONFIG).eventsRulesList({
|
2021-01-12 21:26:57 +00:00
|
|
|
ordering: this.order,
|
|
|
|
page: page,
|
2021-03-08 10:14:00 +00:00
|
|
|
pageSize: PAGE_SIZE,
|
2021-01-12 21:26:57 +00:00
|
|
|
search: this.search || "",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
columns(): TableColumn[] {
|
|
|
|
return [
|
2021-04-04 14:56:16 +00:00
|
|
|
new TableColumn(t`Name`, "name"),
|
|
|
|
new TableColumn(t`Severity`, "severity"),
|
|
|
|
new TableColumn(t`Sent to group`, "group"),
|
2021-08-05 10:30:43 +00:00
|
|
|
new TableColumn(t`Actions`),
|
2021-01-12 21:26:57 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-08-05 10:30:43 +00:00
|
|
|
renderToolbarSelected(): TemplateResult {
|
|
|
|
const disabled = this.selectedElements.length !== 1;
|
|
|
|
const item = this.selectedElements[0];
|
|
|
|
return html`<ak-forms-delete
|
|
|
|
.obj=${item}
|
|
|
|
objectLabel=${t`Notification rule`}
|
|
|
|
.usedBy=${() => {
|
|
|
|
return new EventsApi(DEFAULT_CONFIG).eventsRulesUsedByList({
|
|
|
|
pbmUuid: item.pk,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
.delete=${() => {
|
|
|
|
return new EventsApi(DEFAULT_CONFIG).eventsRulesDestroy({
|
|
|
|
pbmUuid: item.pk,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<button ?disabled=${disabled} slot="trigger" class="pf-c-button pf-m-danger">
|
|
|
|
${t`Delete`}
|
|
|
|
</button>
|
|
|
|
</ak-forms-delete>`;
|
|
|
|
}
|
|
|
|
|
2021-03-08 10:14:00 +00:00
|
|
|
row(item: NotificationRule): TemplateResult[] {
|
2021-01-12 21:26:57 +00:00
|
|
|
return [
|
|
|
|
html`${item.name}`,
|
|
|
|
html`${item.severity}`,
|
2021-05-12 14:41:15 +00:00
|
|
|
html`${item.groupObj?.name || t`None (rule disabled)`}`,
|
2021-08-05 20:04:45 +00:00
|
|
|
html`<ak-forms-modal>
|
2021-08-05 10:30:43 +00:00
|
|
|
<span slot="submit"> ${t`Update`} </span>
|
|
|
|
<span slot="header"> ${t`Update Notification Rule`} </span>
|
|
|
|
<ak-event-rule-form slot="form" .instancePk=${item.pk}> </ak-event-rule-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-plain">
|
|
|
|
<i class="fas fa-edit"></i>
|
|
|
|
</button>
|
|
|
|
</ak-forms-modal>`,
|
2021-01-12 21:26:57 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
renderToolbar(): TemplateResult {
|
|
|
|
return html`
|
2021-08-03 15:52:21 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit"> ${t`Create`} </span>
|
|
|
|
<span slot="header"> ${t`Create Notification Rule`} </span>
|
|
|
|
<ak-event-rule-form slot="form"> </ak-event-rule-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">${t`Create`}</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
${super.renderToolbar()}
|
2021-01-12 21:26:57 +00:00
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
2021-03-08 10:14:00 +00:00
|
|
|
renderExpanded(item: NotificationRule): TemplateResult {
|
2021-08-03 15:52:21 +00:00
|
|
|
return html` <td role="cell" colspan="4">
|
|
|
|
<div class="pf-c-table__expandable-row-content">
|
|
|
|
<p>
|
|
|
|
${t`These bindings control upon which events this rule triggers. Bindings to
|
|
|
|
groups/users are checked against the user of the event.`}
|
|
|
|
</p>
|
|
|
|
<ak-bound-policies-list .target=${item.pk}> </ak-bound-policies-list>
|
|
|
|
</div>
|
2021-08-05 20:04:45 +00:00
|
|
|
</td>`;
|
2021-01-12 21:26:57 +00:00
|
|
|
}
|
|
|
|
}
|