import { t } from "@lingui/macro"; import { html, TemplateResult } from "lit"; import { customElement, property } from "lit/decorators"; import { ifDefined } from "lit/directives/if-defined"; import { until } from "lit/directives/until"; import { OutpostsApi, ServiceConnection } from "@goauthentik/api"; import { AKResponse } from "../../api/Client"; import { DEFAULT_CONFIG } from "../../api/Config"; import { uiConfig } from "../../common/config"; import { PFColor } from "../../elements/Label"; import "../../elements/buttons/Dropdown"; import "../../elements/buttons/SpinnerButton"; import "../../elements/forms/DeleteBulkForm"; import "../../elements/forms/ModalForm"; import "../../elements/forms/ProxyForm"; import { TableColumn } from "../../elements/table/Table"; import { TablePage } from "../../elements/table/TablePage"; import "./OutpostHealth"; import "./ServiceConnectionDockerForm"; import "./ServiceConnectionKubernetesForm"; @customElement("ak-outpost-service-connection-list") export class OutpostServiceConnectionListPage extends TablePage { pageTitle(): string { return "Outpost integrations"; } pageDescription(): string | undefined { return "Outpost integrations define how authentik connects to external platforms to manage and deploy Outposts."; } pageIcon(): string { return "pf-icon pf-icon-integration"; } searchEnabled(): boolean { return true; } checkbox = true; async apiEndpoint(page: number): Promise> { return new OutpostsApi(DEFAULT_CONFIG).outpostsServiceConnectionsAllList({ ordering: this.order, page: page, pageSize: (await uiConfig()).pagination.perPage, search: this.search || "", }); } columns(): TableColumn[] { return [ new TableColumn(t`Name`, "name"), new TableColumn(t`Type`), new TableColumn(t`Local`, "local"), new TableColumn(t`State`), new TableColumn(t`Actions`), ]; } @property() order = "name"; row(item: ServiceConnection): TemplateResult[] { return [ html`${item.name}`, html`${item.verboseName}`, html`${item.local ? t`Yes` : t`No`}`, html`${until( new OutpostsApi(DEFAULT_CONFIG) .outpostsServiceConnectionsAllStateRetrieve({ uuid: item.pk || "", }) .then((state) => { if (state.healthy) { return html``; } return html``; }), html``, )}`, html` ${t`Update`} ${t`Update ${item.verboseName}`} `, ]; } renderToolbarSelected(): TemplateResult { const disabled = this.selectedElements.length < 1; return html` { return new OutpostsApi(DEFAULT_CONFIG).outpostsServiceConnectionsAllUsedByList({ uuid: item.pk, }); }} .delete=${(item: ServiceConnection) => { return new OutpostsApi(DEFAULT_CONFIG).outpostsServiceConnectionsAllDestroy({ uuid: item.pk, }); }} > `; } renderToolbar(): TemplateResult { return html` ${super.renderToolbar()}`; } }