2021-04-03 17:26:43 +00:00
|
|
|
import { t } from "@lingui/macro";
|
2021-02-16 21:52:54 +00:00
|
|
|
import { customElement, html, property, TemplateResult } from "lit-element";
|
|
|
|
import { AKResponse } from "../../api/Client";
|
|
|
|
import { TablePage } from "../../elements/table/TablePage";
|
|
|
|
|
|
|
|
import "../../elements/buttons/SpinnerButton";
|
2021-03-18 11:14:27 +00:00
|
|
|
import "../../elements/forms/DeleteForm";
|
2021-03-29 20:24:46 +00:00
|
|
|
import "../../elements/forms/ModalForm";
|
2021-05-22 11:04:13 +00:00
|
|
|
import "../../elements/forms/ConfirmationForm";
|
2021-03-29 20:24:46 +00:00
|
|
|
import "./FlowForm";
|
|
|
|
import "./FlowImportForm";
|
2021-02-16 21:52:54 +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 { Flow, FlowsApi } from "authentik-api";
|
2021-03-08 10:14:00 +00:00
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
2021-02-16 21:52:54 +00:00
|
|
|
|
|
|
|
@customElement("ak-flow-list")
|
|
|
|
export class FlowListPage extends TablePage<Flow> {
|
|
|
|
searchEnabled(): boolean {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
pageTitle(): string {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Flows`;
|
2021-02-16 21:52:54 +00:00
|
|
|
}
|
|
|
|
pageDescription(): string {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Flows describe a chain of Stages to authenticate, enroll or recover a user. Stages are chosen based on policies applied to them.`;
|
2021-02-16 21:52:54 +00:00
|
|
|
}
|
|
|
|
pageIcon(): string {
|
2021-03-20 15:06:56 +00:00
|
|
|
return "pf-icon pf-icon-process-automation";
|
2021-02-16 21:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property()
|
|
|
|
order = "slug";
|
|
|
|
|
|
|
|
apiEndpoint(page: number): Promise<AKResponse<Flow>> {
|
2021-03-08 10:14:00 +00:00
|
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesList({
|
2021-02-16 21:52:54 +00:00
|
|
|
ordering: this.order,
|
|
|
|
page: page,
|
2021-03-08 10:14:00 +00:00
|
|
|
pageSize: PAGE_SIZE,
|
2021-02-16 21:52:54 +00:00
|
|
|
search: this.search || "",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
columns(): TableColumn[] {
|
|
|
|
return [
|
2021-04-04 14:56:16 +00:00
|
|
|
new TableColumn(t`Identifier`, "slug"),
|
|
|
|
new TableColumn(t`Name`, "name"),
|
|
|
|
new TableColumn(t`Designation`, "designation"),
|
2021-04-04 14:22:29 +00:00
|
|
|
new TableColumn(t`Stages`),
|
|
|
|
new TableColumn(t`Policies`),
|
2021-02-16 21:52:54 +00:00
|
|
|
new TableColumn(""),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
row(item: Flow): TemplateResult[] {
|
|
|
|
return [
|
2021-02-19 18:29:17 +00:00
|
|
|
html`<a href="#/flow/flows/${item.slug}">
|
2021-02-16 21:52:54 +00:00
|
|
|
<code>${item.slug}</code>
|
|
|
|
</a>`,
|
|
|
|
html`${item.name}`,
|
|
|
|
html`${item.designation}`,
|
2021-03-27 21:02:01 +00:00
|
|
|
html`${Array.from(item.stages || []).length}`,
|
|
|
|
html`${Array.from(item.policies || []).length}`,
|
2021-08-03 15:52:21 +00:00
|
|
|
html` <ak-forms-modal>
|
|
|
|
<span slot="submit"> ${t`Update`} </span>
|
|
|
|
<span slot="header"> ${t`Update Flow`} </span>
|
|
|
|
<ak-flow-form slot="form" .instancePk=${item.slug}> </ak-flow-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary">${t`Edit`}</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
<ak-forms-delete
|
|
|
|
.obj=${item}
|
|
|
|
objectLabel=${t`Flow`}
|
|
|
|
.usedBy=${() => {
|
|
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesUsedByList({
|
|
|
|
slug: item.slug,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
.delete=${() => {
|
|
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesDestroy({
|
|
|
|
slug: item.slug,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-danger">${t`Delete`}</button>
|
|
|
|
</ak-forms-delete>
|
|
|
|
<button
|
|
|
|
class="pf-c-button pf-m-secondary"
|
|
|
|
@click=${() => {
|
|
|
|
new FlowsApi(DEFAULT_CONFIG)
|
|
|
|
.flowsInstancesExecuteRetrieve({
|
|
|
|
slug: item.slug,
|
|
|
|
})
|
|
|
|
.then((link) => {
|
|
|
|
window.location.assign(
|
|
|
|
`${link.link}?next=/%23${window.location.href}`,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
${t`Execute`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</button>
|
2021-08-03 15:52:21 +00:00
|
|
|
<a class="pf-c-button pf-m-secondary" href=${item.exportUrl}> ${t`Export`} </a>`,
|
2021-02-16 21:52:54 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
renderToolbar(): TemplateResult {
|
2021-08-03 15:52:21 +00:00
|
|
|
return html` <ak-forms-modal>
|
|
|
|
<span slot="submit"> ${t`Create`} </span>
|
|
|
|
<span slot="header"> ${t`Create Flow`} </span>
|
|
|
|
<ak-flow-form slot="form"> </ak-flow-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">${t`Create`}</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit"> ${t`Import`} </span>
|
|
|
|
<span slot="header"> ${t`Import Flow`} </span>
|
|
|
|
<ak-flow-import-form slot="form"> </ak-flow-import-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">${t`Import`}</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
${super.renderToolbar()}
|
|
|
|
<ak-forms-confirm
|
|
|
|
successMessage=${t`Successfully cleared flow cache`}
|
|
|
|
errorMessage=${t`Failed to delete flow cache`}
|
|
|
|
action=${t`Clear cache`}
|
|
|
|
.onConfirm=${() => {
|
|
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesCacheClearCreate();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<span slot="header"> ${t`Clear Flow cache`} </span>
|
|
|
|
<p slot="body">
|
|
|
|
${t`Are you sure you want to clear the flow cache?
|
2021-05-22 11:04:13 +00:00
|
|
|
This will cause all flows to be re-evaluated on their next usage.`}
|
2021-08-03 15:52:21 +00:00
|
|
|
</p>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary" type="button">
|
|
|
|
${t`Clear cache`}
|
|
|
|
</button>
|
|
|
|
<div slot="modal"></div>
|
|
|
|
</ak-forms-confirm>`;
|
2021-02-16 21:52:54 +00:00
|
|
|
}
|
|
|
|
}
|