134 lines
4.6 KiB
TypeScript
134 lines
4.6 KiB
TypeScript
import "@goauthentik/admin/sources/SourceWizard";
|
|
import "@goauthentik/admin/sources/ldap/LDAPSourceForm";
|
|
import "@goauthentik/admin/sources/oauth/OAuthSourceForm";
|
|
import "@goauthentik/admin/sources/plex/PlexSourceForm";
|
|
import "@goauthentik/admin/sources/saml/SAMLSourceForm";
|
|
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { uiConfig } from "@goauthentik/common/ui/config";
|
|
import { PFColor } from "@goauthentik/elements/Label";
|
|
import "@goauthentik/elements/forms/DeleteBulkForm";
|
|
import "@goauthentik/elements/forms/ModalForm";
|
|
import "@goauthentik/elements/forms/ProxyForm";
|
|
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 { TemplateResult, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import { Source, SourcesApi } from "@goauthentik/api";
|
|
|
|
@customElement("ak-source-list")
|
|
export class SourceListPage extends TablePage<Source> {
|
|
pageTitle(): string {
|
|
return msg("Federation and Social login");
|
|
}
|
|
pageDescription(): string | undefined {
|
|
return msg(
|
|
"Sources of identities, which can either be synced into authentik's database, or can be used by users to authenticate and enroll themselves.",
|
|
);
|
|
}
|
|
pageIcon(): string {
|
|
return "pf-icon pf-icon-middleware";
|
|
}
|
|
searchEnabled(): boolean {
|
|
return true;
|
|
}
|
|
|
|
checkbox = true;
|
|
|
|
@property()
|
|
order = "name";
|
|
|
|
async apiEndpoint(page: number): Promise<PaginatedResponse<Source>> {
|
|
return new SourcesApi(DEFAULT_CONFIG).sourcesAllList({
|
|
ordering: this.order,
|
|
page: page,
|
|
pageSize: (await uiConfig()).pagination.perPage,
|
|
search: this.search || "",
|
|
});
|
|
}
|
|
|
|
columns(): TableColumn[] {
|
|
return [
|
|
new TableColumn(msg("Name"), "name"),
|
|
new TableColumn(msg("Type")),
|
|
new TableColumn(""),
|
|
];
|
|
}
|
|
|
|
renderToolbarSelected(): TemplateResult {
|
|
const disabled = this.selectedElements.length < 1;
|
|
return html`<ak-forms-delete-bulk
|
|
objectLabel=${msg("Source(s)")}
|
|
.objects=${this.selectedElements}
|
|
.usedBy=${(item: Source) => {
|
|
return new SourcesApi(DEFAULT_CONFIG).sourcesAllUsedByList({
|
|
slug: item.slug,
|
|
});
|
|
}}
|
|
.delete=${(item: Source) => {
|
|
return new SourcesApi(DEFAULT_CONFIG).sourcesAllDestroy({
|
|
slug: item.slug,
|
|
});
|
|
}}
|
|
>
|
|
<button ?disabled=${disabled} slot="trigger" class="pf-c-button pf-m-danger">
|
|
${msg("Delete")}
|
|
</button>
|
|
</ak-forms-delete-bulk>`;
|
|
}
|
|
|
|
row(item: Source): TemplateResult[] {
|
|
if (item.component === "") {
|
|
return this.rowInbuilt(item);
|
|
}
|
|
return [
|
|
html`<a href="#/core/sources/${item.slug}">
|
|
<div>${item.name}</div>
|
|
${item.enabled
|
|
? html``
|
|
: html`<ak-label color=${PFColor.Orange} ?compact=${true}>
|
|
${msg("Disabled")}</ak-label
|
|
>`}
|
|
</a>`,
|
|
html`${item.verboseName}`,
|
|
html` <ak-forms-modal>
|
|
<span slot="submit"> ${msg("Update")} </span>
|
|
<span slot="header"> ${msg(str`Update ${item.verboseName}`)} </span>
|
|
<ak-proxy-form
|
|
slot="form"
|
|
.args=${{
|
|
instancePk: item.slug,
|
|
}}
|
|
type=${ifDefined(item.component)}
|
|
>
|
|
</ak-proxy-form>
|
|
<button slot="trigger" class="pf-c-button pf-m-plain">
|
|
<pf-tooltip position="top" content=${msg("Edit")}>
|
|
<i class="fas fa-edit"></i>
|
|
</pf-tooltip>
|
|
</button>
|
|
</ak-forms-modal>`,
|
|
];
|
|
}
|
|
|
|
rowInbuilt(item: Source): TemplateResult[] {
|
|
return [
|
|
html`<div>
|
|
<div>${item.name}</div>
|
|
<ak-label color=${PFColor.Grey} ?compact=${true}> ${msg("Built-in")}</ak-label>
|
|
</div>`,
|
|
html`${msg("Built-in")}`,
|
|
html``,
|
|
];
|
|
}
|
|
|
|
renderObjectCreate(): TemplateResult {
|
|
return html`<ak-source-wizard> </ak-source-wizard> `;
|
|
}
|
|
}
|