import { t } from "@lingui/macro"; import { CSSResult, LitElement, TemplateResult, html } from "lit"; import { customElement, property } from "lit/decorators.js"; import { ifDefined } from "lit/directives/if-defined.js"; import { until } from "lit/directives/until.js"; import AKGlobal from "../../../authentik.css"; import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; import PFButton from "@patternfly/patternfly/components/Button/button.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css"; import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css"; import PFPage from "@patternfly/patternfly/components/Page/page.css"; import PFGrid from "@patternfly/patternfly/layouts/Grid/grid.css"; import PFBase from "@patternfly/patternfly/patternfly-base.css"; import { CryptoApi, ProvidersApi, SAMLProvider } from "@goauthentik/api"; import { DEFAULT_CONFIG } from "../../../api/Config"; import { EVENT_REFRESH } from "../../../constants"; import "../../../elements/CodeMirror"; import "../../../elements/Tabs"; import "../../../elements/buttons/ActionButton"; import "../../../elements/buttons/ModalButton"; import "../../../elements/buttons/SpinnerButton"; import "../../../elements/events/ObjectChangelog"; import "../RelatedApplicationButton"; import "./SAMLProviderForm"; @customElement("ak-provider-saml-view") export class SAMLProviderViewPage extends LitElement { @property() set args(value: { [key: string]: number }) { this.providerID = value.id; } @property({ type: Number }) set providerID(value: number) { new ProvidersApi(DEFAULT_CONFIG) .providersSamlRetrieve({ id: value, }) .then((prov) => (this.provider = prov)); } @property({ attribute: false }) provider?: SAMLProvider; static get styles(): CSSResult[] { return [ PFBase, PFPage, PFButton, PFBanner, PFContent, PFCard, PFDescriptionList, PFGrid, AKGlobal, ]; } constructor() { super(); this.addEventListener(EVENT_REFRESH, () => { if (!this.provider?.pk) return; this.providerID = this.provider?.pk; }); } renderSigningCert(): Promise { if (!this.provider?.signingKp) { return Promise.resolve(html``); } return new CryptoApi(DEFAULT_CONFIG) .cryptoCertificatekeypairsRetrieve({ kpUuid: this.provider.signingKp, }) .then((kp) => { return html`
${t`Download signing certificate`}
`; }); } render(): TemplateResult { if (!this.provider) { return html``; } return html`${ this.provider?.assignedApplicationName ? html`` : html`
${t`Warning: Provider is not used by an Application.`}
` }
${t`Name`}
${this.provider.name}
${t`Assigned to application`}
${t`ACS URL`}
${this.provider.acsUrl}
${t`Audience`}
${this.provider.audience || "-"}
${t`Issuer`}
${this.provider.issuer}
${t`Related objects`}
${until(this.renderSigningCert())}
${ this.provider.assignedApplicationName ? html`
${t`SAML Metadata`}
${until( new ProvidersApi(DEFAULT_CONFIG) .providersSamlMetadataRetrieve({ id: this.provider.pk || 0, }) .then((m) => { return html``; }), )}
` : html`` }
`; } }