2021-04-03 17:26:43 +00:00
|
|
|
import { t } from "@lingui/macro";
|
2021-09-21 09:31:37 +00:00
|
|
|
|
2021-10-28 07:48:51 +00:00
|
|
|
import { CSSResult, LitElement, TemplateResult, html } from "lit";
|
2021-11-04 21:34:48 +00:00
|
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
|
|
import { until } from "lit/directives/until.js";
|
2021-09-21 09:31:37 +00:00
|
|
|
|
|
|
|
import AKGlobal from "../../../authentik.css";
|
2021-11-05 00:21:10 +00:00
|
|
|
import PFBanner from "@patternfly/patternfly/components/Banner/banner.css";
|
2021-09-21 09:31:37 +00:00
|
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
2021-03-17 18:18:15 +00:00
|
|
|
import PFCard from "@patternfly/patternfly/components/Card/card.css";
|
2021-09-21 09:31:37 +00:00
|
|
|
import PFContent from "@patternfly/patternfly/components/Content/content.css";
|
2021-03-17 18:18:15 +00:00
|
|
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
2021-09-21 09:31:37 +00:00
|
|
|
import PFPage from "@patternfly/patternfly/components/Page/page.css";
|
2021-11-26 13:08:45 +00:00
|
|
|
import PFGrid from "@patternfly/patternfly/layouts/Grid/grid.css";
|
2021-03-17 18:18:15 +00:00
|
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
2021-02-06 16:55:41 +00:00
|
|
|
|
2021-11-26 13:08:45 +00:00
|
|
|
import { CryptoApi, ProvidersApi, SAMLProvider } from "@goauthentik/api";
|
2021-09-21 09:31:37 +00:00
|
|
|
|
|
|
|
import { DEFAULT_CONFIG } from "../../../api/Config";
|
|
|
|
import { EVENT_REFRESH } from "../../../constants";
|
2021-04-01 13:39:59 +00:00
|
|
|
import "../../../elements/CodeMirror";
|
|
|
|
import "../../../elements/Tabs";
|
2021-09-21 09:31:37 +00:00
|
|
|
import "../../../elements/buttons/ActionButton";
|
|
|
|
import "../../../elements/buttons/ModalButton";
|
|
|
|
import "../../../elements/buttons/SpinnerButton";
|
2021-04-01 13:39:59 +00:00
|
|
|
import "../../../elements/events/ObjectChangelog";
|
|
|
|
import "../RelatedApplicationButton";
|
|
|
|
import "./SAMLProviderForm";
|
2021-02-06 16:55:41 +00:00
|
|
|
|
|
|
|
@customElement("ak-provider-saml-view")
|
2021-04-10 15:06:54 +00:00
|
|
|
export class SAMLProviderViewPage extends LitElement {
|
2021-02-06 16:55:41 +00:00
|
|
|
@property()
|
|
|
|
set args(value: { [key: string]: number }) {
|
|
|
|
this.providerID = value.id;
|
|
|
|
}
|
|
|
|
|
2021-08-03 15:52:21 +00:00
|
|
|
@property({ type: Number })
|
2021-02-06 16:55:41 +00:00
|
|
|
set providerID(value: number) {
|
2021-08-03 15:52:21 +00:00
|
|
|
new ProvidersApi(DEFAULT_CONFIG)
|
|
|
|
.providersSamlRetrieve({
|
|
|
|
id: value,
|
|
|
|
})
|
|
|
|
.then((prov) => (this.provider = prov));
|
2021-02-06 16:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property({ attribute: false })
|
|
|
|
provider?: SAMLProvider;
|
|
|
|
|
|
|
|
static get styles(): CSSResult[] {
|
2021-08-03 15:52:21 +00:00
|
|
|
return [
|
|
|
|
PFBase,
|
|
|
|
PFPage,
|
|
|
|
PFButton,
|
2021-11-26 13:08:45 +00:00
|
|
|
PFBanner,
|
2021-08-03 15:52:21 +00:00
|
|
|
PFContent,
|
|
|
|
PFCard,
|
|
|
|
PFDescriptionList,
|
2021-11-26 13:08:45 +00:00
|
|
|
PFGrid,
|
2021-08-03 15:52:21 +00:00
|
|
|
AKGlobal,
|
|
|
|
];
|
2021-02-06 16:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
2021-03-23 14:16:56 +00:00
|
|
|
this.addEventListener(EVENT_REFRESH, () => {
|
2021-02-06 16:55:41 +00:00
|
|
|
if (!this.provider?.pk) return;
|
|
|
|
this.providerID = this.provider?.pk;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-11-26 13:08:45 +00:00
|
|
|
renderSigningCert(): Promise<TemplateResult> {
|
|
|
|
if (!this.provider?.signingKp) {
|
|
|
|
return Promise.resolve(html``);
|
|
|
|
}
|
|
|
|
return new CryptoApi(DEFAULT_CONFIG)
|
|
|
|
.cryptoCertificatekeypairsRetrieve({
|
|
|
|
kpUuid: this.provider.signingKp,
|
|
|
|
})
|
|
|
|
.then((kp) => {
|
|
|
|
return html` <div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text"
|
|
|
|
>${t`Download signing certificate`}</span
|
|
|
|
>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
<a class="pf-c-button pf-m-primary" href=${kp.certificateDownloadUrl}
|
|
|
|
>${t`Download`}</a
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>`;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-10 15:06:54 +00:00
|
|
|
render(): TemplateResult {
|
2021-02-06 16:55:41 +00:00
|
|
|
if (!this.provider) {
|
|
|
|
return html``;
|
|
|
|
}
|
2021-11-26 13:08:45 +00:00
|
|
|
return html`${
|
|
|
|
this.provider?.assignedApplicationName
|
2021-11-05 00:21:10 +00:00
|
|
|
? html``
|
|
|
|
: html`<div slot="header" class="pf-c-banner pf-m-warning">
|
|
|
|
${t`Warning: Provider is not used by an Application.`}
|
2021-11-26 13:08:45 +00:00
|
|
|
</div>`
|
|
|
|
}
|
|
|
|
<div class="pf-l-grid pf-m-gutter">
|
2021-11-26 18:40:40 +00:00
|
|
|
<div class="pf-c-card pf-l-grid__item pf-m-12-col">
|
2021-11-26 13:08:45 +00:00
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<dl class="pf-c-description-list pf-m-3-col-on-lg">
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${t`Name`}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
${this.provider.name}
|
|
|
|
</div>
|
|
|
|
</dd>
|
2021-02-06 16:55:41 +00:00
|
|
|
</div>
|
2021-11-26 13:08:45 +00:00
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text"
|
|
|
|
>${t`Assigned to application`}</span
|
|
|
|
>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
<ak-provider-related-application
|
|
|
|
.provider=${this.provider}
|
|
|
|
></ak-provider-related-application>
|
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${t`ACS URL`}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
${this.provider.acsUrl}
|
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${t`Audience`}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
${this.provider.audience || "-"}
|
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${t`Issuer`}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
${this.provider.issuer}
|
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
</dl>
|
2021-02-06 16:55:41 +00:00
|
|
|
</div>
|
2021-11-26 13:08:45 +00:00
|
|
|
<div class="pf-c-card__footer">
|
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit"> ${t`Update`} </span>
|
|
|
|
<span slot="header"> ${t`Update SAML Provider`} </span>
|
|
|
|
<ak-provider-saml-form slot="form" .instancePk=${this.provider.pk || 0}>
|
|
|
|
</ak-provider-saml-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
|
|
|
${t`Edit`}
|
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-26 18:40:40 +00:00
|
|
|
<div class="pf-c-card pf-l-grid__item pf-m-12-col">
|
2021-11-26 13:08:45 +00:00
|
|
|
<div class="pf-c-card__title">
|
|
|
|
${t`Related objects`}
|
2021-08-03 15:52:21 +00:00
|
|
|
</div>
|
2021-11-26 13:08:45 +00:00
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<dl class="pf-c-description-list pf-m-2-col">
|
|
|
|
${until(this.renderSigningCert())}
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
${
|
|
|
|
this.provider.assignedApplicationName
|
|
|
|
? html`<div class="pf-c-card pf-l-grid__item pf-m-12-col">
|
|
|
|
<div class="pf-c-card__title">${t`SAML Metadata`}</div>
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
${until(
|
|
|
|
new ProvidersApi(DEFAULT_CONFIG)
|
|
|
|
.providersSamlMetadataRetrieve({
|
|
|
|
id: this.provider.pk || 0,
|
|
|
|
})
|
|
|
|
.then((m) => {
|
|
|
|
return html`<ak-codemirror
|
|
|
|
mode="xml"
|
|
|
|
?readOnly=${true}
|
|
|
|
value="${ifDefined(m.metadata)}"
|
|
|
|
></ak-codemirror>`;
|
|
|
|
}),
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card__footer">
|
|
|
|
<a
|
|
|
|
class="pf-c-button pf-m-primary"
|
|
|
|
target="_blank"
|
|
|
|
href=${this.provider.metadataDownloadUrl}
|
|
|
|
>
|
|
|
|
${t`Download`}
|
|
|
|
</a>
|
|
|
|
<ak-action-button
|
|
|
|
.apiRequest=${() => {
|
|
|
|
const fullUrl =
|
|
|
|
window.location.origin +
|
|
|
|
this.provider?.metadataDownloadUrl;
|
|
|
|
return navigator.clipboard.writeText(fullUrl);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
${t`Copy download URL`}
|
|
|
|
</ak-action-button>
|
2021-08-03 15:52:21 +00:00
|
|
|
</div>
|
2021-11-26 13:08:45 +00:00
|
|
|
</div>`
|
|
|
|
: html``
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</div>`;
|
2021-02-06 16:55:41 +00:00
|
|
|
}
|
|
|
|
}
|