import { Component, OnDestroy, OnInit } from "@angular/core"; import { ActivatedRoute, Router } from "@angular/router"; import { concatMap, Subject, takeUntil } from "rxjs"; import { UserNamePipe } from "@bitwarden/angular/pipes/user-name.pipe"; import { ApiService } from "@bitwarden/common/abstractions/api.service"; import { FileDownloadService } from "@bitwarden/common/abstractions/fileDownload/fileDownload.service"; import { I18nService } from "@bitwarden/common/abstractions/i18n.service"; import { LogService } from "@bitwarden/common/abstractions/log.service"; import { OrganizationUserService } from "@bitwarden/common/abstractions/organization-user/organization-user.service"; import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service"; import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction"; import { ProviderService } from "@bitwarden/common/admin-console/abstractions/provider.service"; import { Organization } from "@bitwarden/common/admin-console/models/domain/organization"; import { EventSystemUser } from "@bitwarden/common/enums"; import { EventResponse } from "@bitwarden/common/models/response/event.response"; import { BaseEventsComponent } from "../../../common/base.events.component"; import { EventService } from "../../../core"; import { EventExportService } from "../../../tools/event-export"; const EVENT_SYSTEM_USER_TO_TRANSLATION: Record = { [EventSystemUser.SCIM]: null, // SCIM acronym not able to be translated so just display SCIM [EventSystemUser.DomainVerification]: "domainVerification", }; @Component({ selector: "app-org-events", templateUrl: "events.component.html", }) export class EventsComponent extends BaseEventsComponent implements OnInit, OnDestroy { exportFileName = "org-events"; organizationId: string; organization: Organization; private orgUsersUserIdMap = new Map(); private destroy$ = new Subject(); constructor( private apiService: ApiService, private route: ActivatedRoute, eventService: EventService, i18nService: I18nService, exportService: EventExportService, platformUtilsService: PlatformUtilsService, private router: Router, logService: LogService, private userNamePipe: UserNamePipe, private organizationService: OrganizationService, private organizationUserService: OrganizationUserService, private providerService: ProviderService, fileDownloadService: FileDownloadService ) { super( eventService, i18nService, exportService, platformUtilsService, logService, fileDownloadService ); } async ngOnInit() { this.route.params .pipe( concatMap(async (params) => { this.organizationId = params.organizationId; this.organization = await this.organizationService.get(this.organizationId); if (this.organization == null || !this.organization.useEvents) { await this.router.navigate(["/organizations", this.organizationId]); return; } await this.load(); }), takeUntil(this.destroy$) ) .subscribe(); } async load() { const response = await this.organizationUserService.getAllUsers(this.organizationId); response.data.forEach((u) => { const name = this.userNamePipe.transform(u); this.orgUsersUserIdMap.set(u.userId, { name: name, email: u.email }); }); if (this.organization.providerId != null) { try { const provider = await this.providerService.get(this.organization.providerId); if ( provider != null && (await this.providerService.get(this.organization.providerId)).canManageUsers ) { const providerUsersResponse = await this.apiService.getProviderUsers( this.organization.providerId ); providerUsersResponse.data.forEach((u) => { const name = this.userNamePipe.transform(u); this.orgUsersUserIdMap.set(u.userId, { name: `${name} (${this.organization.providerName})`, email: u.email, }); }); } } catch (e) { this.logService.warning(e); } } await this.loadEvents(true); this.loaded = true; } protected requestEvents(startDate: string, endDate: string, continuationToken: string) { return this.apiService.getEventsOrganization( this.organizationId, startDate, endDate, continuationToken ); } protected getUserName(r: EventResponse, userId: string) { if (r.installationId != null) { return `Installation: ${r.installationId}`; } if (userId != null) { if (this.orgUsersUserIdMap.has(userId)) { return this.orgUsersUserIdMap.get(userId); } if (r.providerId != null && r.providerId === this.organization.providerId) { return { name: this.organization.providerName, }; } } if (r.systemUser != null) { const systemUserI18nKey: string = EVENT_SYSTEM_USER_TO_TRANSLATION[r.systemUser]; if (systemUserI18nKey) { return { name: this.i18nService.t(systemUserI18nKey), }; } else { return { name: EventSystemUser[r.systemUser], }; } } if (r.serviceAccountId) { return { name: this.i18nService.t("serviceAccount") + " " + this.getShortId(r.serviceAccountId), }; } return null; } private getShortId(id: string) { return id?.substring(0, 8); } ngOnDestroy() { this.destroy$.next(); this.destroy$.complete(); } }