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;
|
|
|
|
|
|
|
|
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-01-12 21:26:57 +00:00
|
|
|
new TableColumn(""),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
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-04-03 17:26:43 +00:00
|
|
|
html`${item.group?.name || t`None (rule disabled)`}`,
|
2021-01-12 21:26:57 +00:00
|
|
|
html`
|
2021-03-29 17:21:48 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Update`}
|
2021-03-29 17:21:48 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Update Notification Rule`}
|
2021-03-29 17:21:48 +00:00
|
|
|
</span>
|
|
|
|
<ak-event-rule-form slot="form" .rule=${item}>
|
|
|
|
</ak-event-rule-form>
|
2021-04-04 17:03:25 +00:00
|
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Edit`}
|
2021-03-29 17:21:48 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
2021-03-18 11:14:27 +00:00
|
|
|
<ak-forms-delete
|
|
|
|
.obj=${item}
|
2021-04-03 17:26:43 +00:00
|
|
|
objectLabel=${t`Notification rule`}
|
2021-03-18 11:14:27 +00:00
|
|
|
.delete=${() => {
|
|
|
|
return new EventsApi(DEFAULT_CONFIG).eventsRulesDelete({
|
|
|
|
pbmUuid: item.pk || ""
|
|
|
|
});
|
|
|
|
}}>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-danger">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Delete`}
|
2021-03-18 11:14:27 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-delete>`,
|
2021-01-12 21:26:57 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
renderToolbar(): TemplateResult {
|
|
|
|
return html`
|
2021-03-29 17:21:48 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create`}
|
2021-03-29 17:21:48 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create Notification Rule`}
|
2021-03-29 17:21:48 +00:00
|
|
|
</span>
|
|
|
|
<ak-event-rule-form slot="form">
|
|
|
|
</ak-event-rule-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create`}
|
2021-03-29 17:21:48 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
2021-01-12 21:26:57 +00:00
|
|
|
${super.renderToolbar()}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
2021-03-08 10:14:00 +00:00
|
|
|
renderExpanded(item: NotificationRule): TemplateResult {
|
2021-01-12 21:26:57 +00:00
|
|
|
return html`
|
|
|
|
<td role="cell" colspan="4">
|
|
|
|
<div class="pf-c-table__expandable-row-content">
|
2021-04-20 21:16:17 +00:00
|
|
|
<p>${t`These bindings control upon which events this rule triggers. Bindings to
|
2021-04-04 17:03:25 +00:00
|
|
|
groups/users are checked against the user of the event.`}</p>
|
2021-01-12 21:26:57 +00:00
|
|
|
<ak-bound-policies-list .target=${item.pk}>
|
|
|
|
</ak-bound-policies-list>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td></td>
|
|
|
|
<td></td>`;
|
|
|
|
}
|
|
|
|
}
|