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-02-16 21:52:54 +00:00
|
|
|
html`
|
2021-03-29 20:24:46 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Update`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Update Flow`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</span>
|
2021-05-19 23:09:50 +00:00
|
|
|
<ak-flow-form slot="form" .instancePk=${item.slug}>
|
2021-03-29 20:24:46 +00:00
|
|
|
</ak-flow-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Edit`}
|
2021-03-29 20:24:46 +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`Flow`}
|
2021-03-18 11:14:27 +00:00
|
|
|
.delete=${() => {
|
2021-05-16 15:53:59 +00:00
|
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesDestroy({
|
2021-03-29 20:24:46 +00:00
|
|
|
slug: item.slug
|
2021-03-18 11:14:27 +00:00
|
|
|
});
|
|
|
|
}}>
|
|
|
|
<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-03-29 20:24:46 +00:00
|
|
|
<button
|
2021-03-29 20:30:57 +00:00
|
|
|
class="pf-c-button pf-m-secondary"
|
2021-03-29 20:24:46 +00:00
|
|
|
@click=${() => {
|
2021-05-16 16:38:19 +00:00
|
|
|
new FlowsApi(DEFAULT_CONFIG).flowsInstancesExecuteRetrieve({
|
2021-03-29 20:24:46 +00:00
|
|
|
slug: item.slug
|
|
|
|
}).then(link => {
|
|
|
|
window.location.assign(`${link.link}?next=/%23${window.location.href}`);
|
|
|
|
});
|
|
|
|
}}>
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Execute`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</button>
|
2021-06-02 22:40:07 +00:00
|
|
|
<a class="pf-c-button pf-m-secondary" href="/api/v2beta/flows/instances/${item.slug}/export/">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Export`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</a>`,
|
2021-02-16 21:52:54 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
renderToolbar(): TemplateResult {
|
|
|
|
return html`
|
2021-03-29 20:24:46 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create Flow`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</span>
|
|
|
|
<ak-flow-form slot="form">
|
|
|
|
</ak-flow-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Import`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Import Flow`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</span>
|
|
|
|
<ak-flow-import-form slot="form">
|
|
|
|
</ak-flow-import-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Import`}
|
2021-03-29 20:24:46 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
2021-02-16 21:52:54 +00:00
|
|
|
${super.renderToolbar()}
|
2021-05-22 11:04:13 +00:00
|
|
|
<ak-forms-confirm
|
|
|
|
successMessage=${t`Successfully cleared flow cache`}
|
|
|
|
errorMessage=${t`Failed to delete flow cache`}
|
|
|
|
action=${t`Clear cache`}
|
|
|
|
.onConfirm=${() => {
|
2021-05-22 11:10:04 +00:00
|
|
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesCacheClearCreate();
|
2021-05-22 11:04:13 +00:00
|
|
|
}}>
|
|
|
|
<span slot="header">
|
|
|
|
${t`Clear Flow cache`}
|
|
|
|
</span>
|
|
|
|
<p slot="body">
|
|
|
|
${t`Are you sure you want to clear the flow cache?
|
|
|
|
This will cause all flows to be re-evaluated on their next usage.`}
|
|
|
|
</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
|
|
|
}
|
|
|
|
}
|