* main: (213 commits) website/docs: configuration: fix typo in kubectl command (#10492) website/integrations: fix typo in minio instructions (#10500) web: bump @typescript-eslint/eslint-plugin from 7.5.0 to 7.16.0 in /tests/wdio (#10496) website: bump prettier from 3.3.2 to 3.3.3 in /website (#10493) core: bump ruff from 0.5.1 to 0.5.2 (#10494) web: bump @typescript-eslint/parser from 7.5.0 to 7.16.0 in /tests/wdio (#10495) web: bump eslint-plugin-sonarjs from 0.25.1 to 1.0.3 in /tests/wdio (#10498) web: bump prettier from 3.3.2 to 3.3.3 in /tests/wdio (#10497) web: bump pseudolocale from 2.0.0 to 2.1.0 in /web (#10499) core: bump goauthentik.io/api/v3 from 3.2024061.1 to 3.2024061.2 (#10491) web: bump API Client version (#10488) flows: remove stage challenge type (#10476) core: bump github.com/redis/go-redis/v9 from 9.5.3 to 9.5.4 (#10469) core: bump goauthentik.io/api/v3 from 3.2024060.6 to 3.2024061.1 (#10470) web: bump the babel group across 1 directory with 2 updates (#10471) web: bump the storybook group across 1 directory with 7 updates (#10472) core: bump coverage from 7.5.4 to 7.6.0 (#10473) website/docs: air gapped: clarify .env usage at the top for Kubernetes installations (#10447) website/docs: air gapped: update "see configuration" wording (#10448) website/docs: Add Kubernetes Bootstrap Instructions (#9541) ...
110 lines
3.6 KiB
TypeScript
110 lines
3.6 KiB
TypeScript
import "@goauthentik/admin/events/EventVolumeChart";
|
|
import { EventGeo, EventUser } from "@goauthentik/admin/events/utils";
|
|
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
|
import { EventWithContext } from "@goauthentik/common/events";
|
|
import { actionToLabel } from "@goauthentik/common/labels";
|
|
import { getRelativeTime } from "@goauthentik/common/utils";
|
|
import "@goauthentik/components/ak-event-info";
|
|
import { PaginatedResponse } from "@goauthentik/elements/table/Table";
|
|
import { TableColumn } from "@goauthentik/elements/table/Table";
|
|
import { TablePage } from "@goauthentik/elements/table/TablePage";
|
|
import "@patternfly/elements/pf-tooltip/pf-tooltip.js";
|
|
|
|
import { msg } from "@lit/localize";
|
|
import { CSSResult, TemplateResult, css, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import { Event, EventsApi } from "@goauthentik/api";
|
|
|
|
@customElement("ak-event-list")
|
|
export class EventListPage extends TablePage<Event> {
|
|
expandable = true;
|
|
|
|
pageTitle(): string {
|
|
return msg("Event Log");
|
|
}
|
|
pageDescription(): string | undefined {
|
|
return;
|
|
}
|
|
pageIcon(): string {
|
|
return "pf-icon pf-icon-catalog";
|
|
}
|
|
searchEnabled(): boolean {
|
|
return true;
|
|
}
|
|
|
|
@property()
|
|
order = "-created";
|
|
|
|
static get styles(): CSSResult[] {
|
|
return super.styles.concat(css`
|
|
.pf-m-no-padding-bottom {
|
|
padding-bottom: 0;
|
|
}
|
|
`);
|
|
}
|
|
|
|
async apiEndpoint(): Promise<PaginatedResponse<Event>> {
|
|
return new EventsApi(DEFAULT_CONFIG).eventsEventsList(await this.defaultEndpointConfig());
|
|
}
|
|
|
|
columns(): TableColumn[] {
|
|
return [
|
|
new TableColumn(msg("Action"), "action"),
|
|
new TableColumn(msg("User"), "user"),
|
|
new TableColumn(msg("Creation Date"), "created"),
|
|
new TableColumn(msg("Client IP"), "client_ip"),
|
|
new TableColumn(msg("Brand"), "brand_name"),
|
|
new TableColumn(msg("Actions")),
|
|
];
|
|
}
|
|
|
|
renderSectionBefore(): TemplateResult {
|
|
return html`
|
|
<div class="pf-c-page__main-section pf-m-no-padding-bottom">
|
|
<ak-events-volume-chart
|
|
.query=${{
|
|
page: this.page,
|
|
search: this.search,
|
|
}}
|
|
></ak-events-volume-chart>
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
row(item: EventWithContext): TemplateResult[] {
|
|
return [
|
|
html`<div>${actionToLabel(item.action)}</div>
|
|
<small>${item.app}</small>`,
|
|
EventUser(item),
|
|
html`<div>${getRelativeTime(item.created)}</div>
|
|
<small>${item.created.toLocaleString()}</small>`,
|
|
html`<div>${item.clientIp || msg("-")}</div>
|
|
<small>${EventGeo(item)}</small>`,
|
|
html`<span>${item.brand?.name || msg("-")}</span>`,
|
|
html`<a href="#/events/log/${item.pk}">
|
|
<pf-tooltip position="top" content=${msg("Show details")}>
|
|
<i class="fas fa-share-square"></i>
|
|
</pf-tooltip>
|
|
</a>`,
|
|
];
|
|
}
|
|
|
|
renderExpanded(item: Event): TemplateResult {
|
|
return html` <td role="cell" colspan="5">
|
|
<div class="pf-c-table__expandable-row-content">
|
|
<ak-event-info .event=${item as EventWithContext}></ak-event-info>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ak-event-list": EventListPage;
|
|
}
|
|
}
|