e2f01ce740
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
214 lines
12 KiB
TypeScript
214 lines
12 KiB
TypeScript
import { t } from "@lingui/macro";
|
|
import { CSSResult, customElement, html, property, TemplateResult } from "lit-element";
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
|
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";
|
|
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";
|
|
|
|
import "../../../elements/buttons/ModalButton";
|
|
import "../../../elements/buttons/SpinnerButton";
|
|
import "../../../elements/CodeMirror";
|
|
import "../../../elements/Tabs";
|
|
import "../../../elements/events/ObjectChangelog";
|
|
import "../RelatedApplicationButton";
|
|
import "./OAuth2ProviderForm";
|
|
import { Page } from "../../../elements/Page";
|
|
import { convertToTitle } from "../../../utils";
|
|
import { OAuth2Provider, OAuth2ProviderSetupURLs, ProvidersApi } from "authentik-api";
|
|
import { DEFAULT_CONFIG } from "../../../api/Config";
|
|
import { EVENT_REFRESH } from "../../../constants";
|
|
|
|
@customElement("ak-provider-oauth2-view")
|
|
export class OAuth2ProviderViewPage extends Page {
|
|
pageTitle(): string {
|
|
return t`OAuth Provider ${this.provider?.name || ""}`;
|
|
}
|
|
pageDescription(): string | undefined {
|
|
return;
|
|
}
|
|
pageIcon(): string {
|
|
return "pf-icon pf-icon-integration";
|
|
}
|
|
|
|
@property({type: Number})
|
|
set providerID(value: number) {
|
|
const api = new ProvidersApi(DEFAULT_CONFIG);
|
|
api.providersOauth2Read({
|
|
id: value
|
|
}).then((prov) => {
|
|
this.provider = prov;
|
|
});
|
|
api.providersOauth2SetupUrls({
|
|
id: value
|
|
}).then((prov) => {
|
|
this.providerUrls = prov;
|
|
});
|
|
}
|
|
|
|
@property({ attribute: false })
|
|
provider?: OAuth2Provider;
|
|
|
|
@property({ attribute: false })
|
|
providerUrls?: OAuth2ProviderSetupURLs;
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [PFBase, PFButton, PFPage, PFFlex, PFDisplay, PFGallery, PFContent, PFCard, PFDescriptionList, PFSizing, PFForm, PFFormControl, AKGlobal];
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
this.addEventListener(EVENT_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="${t`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">
|
|
<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">${t`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">${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`Client type`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">${convertToTitle(this.provider.clientType || "")}</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`Client ID`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">${this.provider.clientId}</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`Redirect URIs`}</span>
|
|
</dt>
|
|
<dd class="pf-c-description-list__description">
|
|
<div class="pf-c-description-list__text">${this.provider.redirectUris}</div>
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
<div class="pf-c-card__footer">
|
|
<ak-forms-modal>
|
|
<span slot="submit">
|
|
${t`Update`}
|
|
</span>
|
|
<span slot="header">
|
|
${t`Update OAuth2 Provider`}
|
|
</span>
|
|
<ak-provider-oauth2-form
|
|
slot="form"
|
|
.providerUUID=${this.provider.pk || 0}>
|
|
</ak-provider-oauth2-form>
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
|
${t`Edit`}
|
|
</button>
|
|
</ak-forms-modal>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section slot="page-2" data-tab-title="${t`Changelog`}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
<div class="pf-c-card">
|
|
<div class="pf-c-card__body">
|
|
<ak-object-changelog
|
|
targetModelPk=${this.provider.pk || ""}
|
|
targetModelApp="authentik_providers_oauth2"
|
|
targetModelName="oauth2provider">
|
|
</ak-object-changelog>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section slot="page-3" data-tab-title="${t`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">
|
|
<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">${t`OpenID Configuration URL`}</span>
|
|
</label>
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.providerInfo || "-"}" />
|
|
</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">${t`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">${t`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">${t`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">
|
|
<span class="pf-c-form__label-text">${t`Userinfo URL`}</span>
|
|
</label>
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.userInfo || "-"}" />
|
|
</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">${t`Logout URL`}</span>
|
|
</label>
|
|
<input class="pf-c-form-control" readonly type="text" value="${this.providerUrls?.logout || "-"}" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</ak-tabs>`;
|
|
}
|
|
}
|