2021-02-06 17:35:55 +00:00
|
|
|
import { gettext } from "django";
|
|
|
|
import { CSSResult, customElement, html, property, TemplateResult } from "lit-element";
|
2021-03-17 16:11:39 +00:00
|
|
|
|
|
|
|
import PFPage from "@patternfly/patternfly/components/Page/page.css";
|
|
|
|
import PFContent from "@patternfly/patternfly/components/Content/content.css";
|
|
|
|
import PFGallery from "@patternfly/patternfly/layouts/Gallery/gallery.css";
|
2021-03-17 18:18:15 +00:00
|
|
|
import PFCard from "@patternfly/patternfly/components/Card/card.css";
|
|
|
|
import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css";
|
|
|
|
import PFSizing from "@patternfly/patternfly/utilities/Sizing/sizing.css";
|
|
|
|
import PFFlex from "@patternfly/patternfly/utilities/Flex/flex.css";
|
|
|
|
import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css";
|
|
|
|
import AKGlobal from "../../authentik.css";
|
|
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
import PFForm from "@patternfly/patternfly/components/Form/form.css";
|
|
|
|
import PFFormControl from "@patternfly/patternfly/components/FormControl/form-control.css";
|
2021-02-06 17:35:55 +00:00
|
|
|
|
|
|
|
import "../../elements/buttons/ModalButton";
|
|
|
|
import "../../elements/buttons/SpinnerButton";
|
|
|
|
import "../../elements/CodeMirror";
|
|
|
|
import "../../elements/Tabs";
|
|
|
|
import { Page } from "../../elements/Page";
|
|
|
|
import { convertToTitle } from "../../utils";
|
2021-02-16 19:00:34 +00:00
|
|
|
import "./RelatedApplicationButton";
|
2021-03-16 20:32:39 +00:00
|
|
|
import { OAuth2Provider, OAuth2ProviderSetupURLs, ProvidersApi } from "authentik-api";
|
2021-03-08 10:14:00 +00:00
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
|
|
|
import { AdminURLManager } from "../../api/legacy";
|
2021-02-06 17:35:55 +00:00
|
|
|
|
|
|
|
@customElement("ak-provider-oauth2-view")
|
|
|
|
export class OAuth2ProviderViewPage extends Page {
|
|
|
|
pageTitle(): string {
|
2021-02-16 19:00:34 +00:00
|
|
|
return gettext(`OAuth Provider ${this.provider?.name || ""}`);
|
2021-02-06 17:35:55 +00:00
|
|
|
}
|
|
|
|
pageDescription(): string | undefined {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pageIcon(): string {
|
|
|
|
return "pf-icon pf-icon-integration";
|
|
|
|
}
|
|
|
|
|
|
|
|
@property({type: Number})
|
|
|
|
set providerID(value: number) {
|
2021-03-08 10:14:00 +00:00
|
|
|
const api = new ProvidersApi(DEFAULT_CONFIG);
|
|
|
|
api.providersOauth2Read({
|
|
|
|
id: value
|
|
|
|
}).then((prov) => {
|
|
|
|
this.provider = prov;
|
|
|
|
});
|
|
|
|
api.providersOauth2SetupUrls({
|
|
|
|
id: value
|
|
|
|
}).then((prov) => {
|
|
|
|
this.providerUrls = prov;
|
|
|
|
});
|
2021-02-06 17:35:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property({ attribute: false })
|
|
|
|
provider?: OAuth2Provider;
|
|
|
|
|
|
|
|
@property({ attribute: false })
|
2021-03-08 10:14:00 +00:00
|
|
|
providerUrls?: OAuth2ProviderSetupURLs;
|
2021-02-06 17:35:55 +00:00
|
|
|
|
|
|
|
static get styles(): CSSResult[] {
|
2021-03-17 18:18:15 +00:00
|
|
|
return [PFBase, PFPage, PFFlex, PFDisplay, PFGallery, PFContent, PFCard, PFDescriptionList, PFSizing, PFForm, PFFormControl, AKGlobal];
|
2021-02-06 17:35:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.addEventListener("ak-refresh", () => {
|
|
|
|
if (!this.provider?.pk) return;
|
|
|
|
this.providerID = this.provider?.pk;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
renderContent(): TemplateResult {
|
|
|
|
if (!this.provider) {
|
|
|
|
return html``;
|
|
|
|
}
|
|
|
|
return html`<ak-tabs>
|
|
|
|
<section slot="page-1" data-tab-title="${gettext("Overview")}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
|
|
<div class="pf-u-display-flex pf-u-justify-content-center">
|
|
|
|
<div class="pf-u-w-75">
|
|
|
|
<div class="pf-c-card pf-c-card-aggregate">
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<dl class="pf-c-description-list pf-m-2-col-on-lg">
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${gettext("Name")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">${this.provider.name}</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${gettext("Assigned to application")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
2021-02-16 19:00:34 +00:00
|
|
|
<ak-provider-related-application .provider=${this.provider}></ak-provider-related-application>
|
2021-02-06 17:35:55 +00:00
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${gettext("Client type")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
2021-03-08 10:14:00 +00:00
|
|
|
<div class="pf-c-description-list__text">${convertToTitle(this.provider.clientType || "")}</div>
|
2021-02-06 17:35:55 +00:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${gettext("Client ID")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
2021-03-08 10:14:00 +00:00
|
|
|
<div class="pf-c-description-list__text">${this.provider.clientId}</div>
|
2021-02-06 17:35:55 +00:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${gettext("Redirect URIs")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
2021-03-08 10:14:00 +00:00
|
|
|
<div class="pf-c-description-list__text">${this.provider.redirectUris}</div>
|
2021-02-06 17:35:55 +00:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card__footer">
|
2021-03-08 10:14:00 +00:00
|
|
|
<ak-modal-button href="${AdminURLManager.providers(`${this.provider.pk}/update/`)}">
|
2021-02-06 17:35:55 +00:00
|
|
|
<ak-spinner-button slot="trigger" class="pf-m-primary">
|
|
|
|
${gettext("Edit")}
|
|
|
|
</ak-spinner-button>
|
|
|
|
<div slot="modal"></div>
|
|
|
|
</ak-modal-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section slot="page-2" data-tab-title="${gettext("Metadata")}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
|
|
<div class="pf-u-display-flex pf-u-justify-content-center">
|
|
|
|
<div class="pf-u-w-75">
|
|
|
|
<div class="pf-c-card pf-c-card-aggregate">
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<form class="pf-c-form">
|
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<label class="pf-c-form__label" for="help-text-simple-form-name">
|
|
|
|
<span class="pf-c-form__label-text">${gettext("OpenID Configuration URL")}</span>
|
|
|
|
</label>
|
2021-03-08 10:14:00 +00:00
|
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.providerInfo || "-"}" />
|
2021-02-06 17:35:55 +00:00
|
|
|
</div>
|
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<label class="pf-c-form__label" for="help-text-simple-form-name">
|
|
|
|
<span class="pf-c-form__label-text">${gettext("OpenID Configuration Issuer")}</span>
|
|
|
|
</label>
|
|
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.issuer || "-"}" />
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<label class="pf-c-form__label" for="help-text-simple-form-name">
|
|
|
|
<span class="pf-c-form__label-text">${gettext("Authorize URL")}</span>
|
|
|
|
</label>
|
|
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.authorize || "-"}" />
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<label class="pf-c-form__label" for="help-text-simple-form-name">
|
|
|
|
<span class="pf-c-form__label-text">${gettext("Token URL")}</span>
|
|
|
|
</label>
|
|
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.token || "-"}" />
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<label class="pf-c-form__label" for="help-text-simple-form-name">
|
2021-03-02 14:11:18 +00:00
|
|
|
<span class="pf-c-form__label-text">${gettext("Userinfo URL")}</span>
|
2021-02-06 17:35:55 +00:00
|
|
|
</label>
|
2021-03-08 10:14:00 +00:00
|
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.userInfo || "-"}" />
|
2021-02-06 17:35:55 +00:00
|
|
|
</div>
|
2021-03-02 14:11:18 +00:00
|
|
|
<div class="pf-c-form__group">
|
|
|
|
<label class="pf-c-form__label" for="help-text-simple-form-name">
|
|
|
|
<span class="pf-c-form__label-text">${gettext("Logout URL")}</span>
|
|
|
|
</label>
|
|
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.logout || "-"}" />
|
|
|
|
</div>
|
2021-02-06 17:35:55 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</ak-tabs>`;
|
|
|
|
}
|
|
|
|
}
|