146 lines
5.6 KiB
TypeScript
146 lines
5.6 KiB
TypeScript
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { EVENT_REFRESH } from "@goauthentik/common/constants";
|
|
import { PFColor } from "@goauthentik/elements/Label";
|
|
import "@goauthentik/elements/buttons/ActionButton";
|
|
import "@goauthentik/elements/buttons/SpinnerButton";
|
|
import { PaginatedResponse } from "@goauthentik/elements/table/Table";
|
|
import { TableColumn } from "@goauthentik/elements/table/Table";
|
|
import { TablePage } from "@goauthentik/elements/table/TablePage";
|
|
import "@patternfly/elements/pf-tooltip/pf-tooltip.js";
|
|
|
|
import { msg, str } from "@lit/localize";
|
|
import { CSSResult, TemplateResult, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
|
|
|
import { AdminApi, Task, TaskStatusEnum } from "@goauthentik/api";
|
|
|
|
@customElement("ak-system-task-list")
|
|
export class SystemTaskListPage extends TablePage<Task> {
|
|
searchEnabled(): boolean {
|
|
return false;
|
|
}
|
|
pageTitle(): string {
|
|
return msg("System Tasks");
|
|
}
|
|
pageDescription(): string {
|
|
return msg("Long-running operations which authentik executes in the background.");
|
|
}
|
|
pageIcon(): string {
|
|
return "pf-icon pf-icon-automation";
|
|
}
|
|
|
|
expandable = true;
|
|
|
|
@property()
|
|
order = "slug";
|
|
|
|
static get styles(): CSSResult[] {
|
|
return super.styles.concat(PFDescriptionList);
|
|
}
|
|
|
|
async apiEndpoint(page: number): Promise<PaginatedResponse<Task>> {
|
|
return new AdminApi(DEFAULT_CONFIG).adminSystemTasksList().then((tasks) => {
|
|
return {
|
|
pagination: {
|
|
count: tasks.length,
|
|
totalPages: 1,
|
|
startIndex: 1,
|
|
endIndex: tasks.length,
|
|
current: page,
|
|
next: 0,
|
|
previous: 0,
|
|
},
|
|
results: tasks,
|
|
};
|
|
});
|
|
}
|
|
|
|
columns(): TableColumn[] {
|
|
return [
|
|
new TableColumn(msg("Identifier")),
|
|
new TableColumn(msg("Description")),
|
|
new TableColumn(msg("Last run")),
|
|
new TableColumn(msg("Status")),
|
|
new TableColumn(msg("Actions")),
|
|
];
|
|
}
|
|
|
|
taskStatus(task: Task): TemplateResult {
|
|
switch (task.status) {
|
|
case TaskStatusEnum.Successful:
|
|
return html`<ak-label color=${PFColor.Green}>${msg("Successful")}</ak-label>`;
|
|
case TaskStatusEnum.Warning:
|
|
return html`<ak-label color=${PFColor.Orange}>${msg("Warning")}</ak-label>`;
|
|
case TaskStatusEnum.Error:
|
|
return html`<ak-label color=${PFColor.Red}>${msg("Error")}</ak-label>`;
|
|
default:
|
|
return html`<ak-label color=${PFColor.Grey}>${msg("Unknown")}</ak-label>`;
|
|
}
|
|
}
|
|
|
|
renderExpanded(item: Task): TemplateResult {
|
|
return html` <td role="cell" colspan="3">
|
|
<div class="pf-c-table__expandable-row-content">
|
|
<dl class="pf-c-description-list pf-m-horizontal">
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${msg("Duration")}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
${msg(str`${item.taskDuration.toFixed(2)} seconds`)}
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
<div class="pf-c-description-list__group">
|
|
<dt class="pf-c-description-list__term">
|
|
<span class="pf-c-description-list__text">${msg("Messages")}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">
|
|
${item.messages.map((m) => {
|
|
return html`<li>${m}</li>`;
|
|
})}
|
|
</div>
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
<td></td>`;
|
|
}
|
|
|
|
row(item: Task): TemplateResult[] {
|
|
return [
|
|
html`${item.taskName}`,
|
|
html`${item.taskDescription}`,
|
|
html`${item.taskFinishTimestamp.toLocaleString()}`,
|
|
this.taskStatus(item),
|
|
html`<ak-action-button
|
|
class="pf-m-plain"
|
|
.apiRequest=${() => {
|
|
return new AdminApi(DEFAULT_CONFIG)
|
|
.adminSystemTasksRetryCreate({
|
|
id: item.taskName,
|
|
})
|
|
.then(() => {
|
|
this.dispatchEvent(
|
|
new CustomEvent(EVENT_REFRESH, {
|
|
bubbles: true,
|
|
composed: true,
|
|
}),
|
|
);
|
|
});
|
|
}}
|
|
>
|
|
<pf-tooltip position="top" content=${msg("Restart task")}>
|
|
<i class="fas fa-redo" aria-hidden="true"></i>
|
|
</pf-tooltip>
|
|
</ak-action-button>`,
|
|
];
|
|
}
|
|
}
|