import { t } from "@lingui/macro"; import { CSSResult, html, LitElement, TemplateResult } from "lit"; import { customElement, property } from "lit/decorators"; import AKGlobal from "../../../authentik.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 PFForm from "@patternfly/patternfly/components/Form/form.css"; import PFFormControl from "@patternfly/patternfly/components/FormControl/form-control.css"; import PFPage from "@patternfly/patternfly/components/Page/page.css"; import PFGallery from "@patternfly/patternfly/layouts/Gallery/gallery.css"; import PFBase from "@patternfly/patternfly/patternfly-base.css"; import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css"; import PFFlex from "@patternfly/patternfly/utilities/Flex/flex.css"; import PFSizing from "@patternfly/patternfly/utilities/Sizing/sizing.css"; import { OAuth2Provider, OAuth2ProviderSetupURLs, ProvidersApi } from "@goauthentik/api"; import { DEFAULT_CONFIG } from "../../../api/Config"; import { EVENT_REFRESH } from "../../../constants"; import "../../../elements/CodeMirror"; import "../../../elements/Tabs"; import "../../../elements/buttons/ModalButton"; import "../../../elements/buttons/SpinnerButton"; import "../../../elements/events/ObjectChangelog"; import { convertToTitle } from "../../../utils"; import "../RelatedApplicationButton"; import "./OAuth2ProviderForm"; @customElement("ak-provider-oauth2-view") export class OAuth2ProviderViewPage extends LitElement { @property({ type: Number }) set providerID(value: number) { const api = new ProvidersApi(DEFAULT_CONFIG); api.providersOauth2Retrieve({ id: value, }).then((prov) => { this.provider = prov; }); api.providersOauth2SetupUrlsRetrieve({ 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; }); } render(): TemplateResult { if (!this.provider) { return html``; } return html`
${t`Name`}
${this.provider.name}
${t`Assigned to application`}
${t`Client type`}
${convertToTitle(this.provider.clientType || "")}
${t`Client ID`}
${this.provider.clientId}
${t`Redirect URIs`}
${this.provider.redirectUris}

`; } }