2021-03-20 15:37:31 +00:00
|
|
|
import { gettext } from "django";
|
|
|
|
import { CSSResult, customElement, html, property, TemplateResult } from "lit-element";
|
|
|
|
|
|
|
|
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 PFBase from "@patternfly/patternfly/patternfly-base.css";
|
2021-03-20 16:50:48 +00:00
|
|
|
import AKGlobal from "../../authentik.css";
|
2021-03-20 15:37:31 +00:00
|
|
|
|
|
|
|
import "../../elements/buttons/ModalButton";
|
|
|
|
import "../../elements/buttons/SpinnerButton";
|
|
|
|
import "../../elements/CodeMirror";
|
|
|
|
import "../../elements/Tabs";
|
|
|
|
import "../../elements/events/ObjectChangelog";
|
|
|
|
import "../../elements/user/UserConsentList";
|
2021-03-20 15:47:39 +00:00
|
|
|
import "../../elements/oauth/UserCodeList";
|
|
|
|
import "../../elements/oauth/UserRefreshList";
|
2021-03-20 16:30:10 +00:00
|
|
|
import "../../elements/charts/UserChart";
|
2021-03-20 15:37:31 +00:00
|
|
|
import { Page } from "../../elements/Page";
|
|
|
|
import { CoreApi, User } from "authentik-api";
|
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
2021-03-20 16:50:48 +00:00
|
|
|
import { AdminURLManager } from "../../api/legacy";
|
2021-03-23 14:16:56 +00:00
|
|
|
import { EVENT_REFRESH } from "../../constants";
|
2021-03-20 15:37:31 +00:00
|
|
|
|
|
|
|
@customElement("ak-user-view")
|
|
|
|
export class UserViewPage extends Page {
|
|
|
|
pageTitle(): string {
|
|
|
|
return gettext(`User ${this.user?.username || ""}`);
|
|
|
|
}
|
|
|
|
pageDescription(): string | undefined {
|
2021-03-20 16:50:48 +00:00
|
|
|
return this.user?.name || "";
|
2021-03-20 15:37:31 +00:00
|
|
|
}
|
|
|
|
pageIcon(): string {
|
2021-03-20 16:50:48 +00:00
|
|
|
return "pf-icon pf-icon-user";
|
2021-03-20 15:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property({ type: Number })
|
|
|
|
set userId(id: number) {
|
|
|
|
new CoreApi(DEFAULT_CONFIG).coreUsersRead({
|
|
|
|
id: id,
|
|
|
|
}).then((user) => {
|
|
|
|
this.user = user;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@property({ attribute: false })
|
|
|
|
user?: User;
|
|
|
|
|
|
|
|
static get styles(): CSSResult[] {
|
|
|
|
return [PFBase, PFPage, PFFlex, PFDisplay, PFGallery, PFContent, PFCard, PFDescriptionList, PFSizing, AKGlobal];
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
2021-03-23 14:16:56 +00:00
|
|
|
this.addEventListener(EVENT_REFRESH, () => {
|
2021-03-20 15:37:31 +00:00
|
|
|
if (!this.user?.pk) return;
|
|
|
|
this.userId = this.user?.pk;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
renderContent(): TemplateResult {
|
|
|
|
if (!this.user) {
|
|
|
|
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-l-gallery pf-m-gutter">
|
2021-03-20 16:50:48 +00:00
|
|
|
<div class="pf-c-card pf-c-card-aggregate pf-l-gallery__item pf-m-4-col">
|
|
|
|
<div class="pf-c-card__title">
|
|
|
|
${gettext("User Info")}
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<dl class="pf-c-description-list">
|
|
|
|
<div class="pf-c-description-list__group">
|
|
|
|
<dt class="pf-c-description-list__term">
|
|
|
|
<span class="pf-c-description-list__text">${gettext("Username")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">${this.user.username}</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("Name")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">${this.user.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("Email")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">${this.user.email}</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("Last login")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">${this.user.lastLogin?.toLocaleString()}</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("Active")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
<i class="fa ${this.user.isActive ? "fa-check-circle pf-m-success" : "fa-exclamation-triangle pf-m-warning"}"></i>
|
|
|
|
</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("Superuser")}</span>
|
|
|
|
</dt>
|
|
|
|
<dd class="pf-c-description-list__description">
|
|
|
|
<div class="pf-c-description-list__text">
|
|
|
|
<i class="fa ${this.user.isSuperuser ? "fa-check-circle pf-m-success" : "fa-exclamation-triangle pf-m-warning"}"></i>
|
|
|
|
</div>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card__footer">
|
|
|
|
<ak-modal-button href="${AdminURLManager.users(`${this.user.pk}/update/`)}">
|
|
|
|
<ak-spinner-button slot="trigger" class="pf-m-primary">
|
|
|
|
${gettext("Edit")}
|
|
|
|
</ak-spinner-button>
|
|
|
|
<div slot="modal"></div>
|
|
|
|
</ak-modal-button>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card__footer">
|
|
|
|
<ak-modal-button href="${AdminURLManager.users(`${this.user.pk}/reset/`)}">
|
|
|
|
<ak-spinner-button slot="trigger" class="pf-m-secondary">
|
|
|
|
${gettext("Reset Password")}
|
|
|
|
</ak-spinner-button>
|
|
|
|
<div slot="modal"></div>
|
|
|
|
</ak-modal-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card pf-c-card-aggregate pf-l-gallery__item pf-m-4-col" style="grid-column-end: span 4;grid-row-end: span 2;">
|
2021-03-20 15:37:31 +00:00
|
|
|
<div class="pf-c-card__body">
|
2021-03-20 16:30:10 +00:00
|
|
|
<ak-charts-user>
|
|
|
|
</ak-charts-user>
|
2021-03-20 15:37:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section slot="page-2" data-tab-title="${gettext("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.user.pk || ""}
|
|
|
|
targetModelApp="authentik_core"
|
|
|
|
targetModelName="user">
|
|
|
|
</ak-object-changelog>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section slot="page-3" data-tab-title="${gettext("Explicit Consent")}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
|
|
<div class="pf-c-card">
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<ak-user-consent-list .userId="${(this.user.pk || 0).toString()}">
|
|
|
|
</ak-user-consent-list>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-03-20 15:47:39 +00:00
|
|
|
<section slot="page-4" data-tab-title="${gettext("OAuth Authorization Codes")}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
|
|
<div class="pf-c-card">
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<ak-user-oauth-code-list .userId="${(this.user.pk || 0).toString()}">
|
|
|
|
</ak-user-oauth-code-list>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section slot="page-5" data-tab-title="${gettext("OAuth Refresh Codes")}" class="pf-c-page__main-section pf-m-no-padding-mobile">
|
|
|
|
<div class="pf-c-card">
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<ak-user-oauth-refresh-list .userId="${(this.user.pk || 0).toString()}">
|
|
|
|
</ak-user-oauth-refresh-list>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-03-20 15:37:31 +00:00
|
|
|
</ak-tabs>`;
|
|
|
|
}
|
|
|
|
}
|