1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00
bitwarden-browser/apps/web/src/app/organizations/tools/import-export/org-export.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-07-05 20:40:53 +02:00
import { Component } from "@angular/core";
import { UntypedFormBuilder } from "@angular/forms";
2018-07-05 20:40:53 +02:00
import { ActivatedRoute } from "@angular/router";
2022-06-14 17:10:53 +02:00
import { CryptoService } from "@bitwarden/common/abstractions/crypto.service";
import { EventService } from "@bitwarden/common/abstractions/event.service";
import { ExportService } from "@bitwarden/common/abstractions/export.service";
import { FileDownloadService } from "@bitwarden/common/abstractions/fileDownload/fileDownload.service";
2022-06-14 17:10:53 +02:00
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
import { LogService } from "@bitwarden/common/abstractions/log.service";
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
import { PolicyService } from "@bitwarden/common/abstractions/policy/policy.service.abstraction";
import { UserVerificationService } from "@bitwarden/common/abstractions/userVerification/userVerification.service.abstraction";
import { EventType } from "@bitwarden/common/enums/eventType";
2018-07-05 20:40:53 +02:00
import { ExportComponent } from "../../../tools/import-export/export.component";
2019-08-09 17:14:46 +02:00
2018-07-05 20:40:53 +02:00
@Component({
selector: "app-org-export",
templateUrl: "../../../tools/import-export/export.component.html",
2018-07-05 20:40:53 +02:00
})
// eslint-disable-next-line rxjs-angular/prefer-takeuntil
export class OrganizationExportComponent extends ExportComponent {
constructor(
cryptoService: CryptoService,
i18nService: I18nService,
2018-08-14 21:14:04 +02:00
platformUtilsService: PlatformUtilsService,
exportService: ExportService,
eventService: EventService,
private route: ActivatedRoute,
policyService: PolicyService,
logService: LogService,
userVerificationService: UserVerificationService,
formBuilder: UntypedFormBuilder,
fileDownloadService: FileDownloadService
) {
super(
cryptoService,
i18nService,
platformUtilsService,
exportService,
eventService,
policyService,
logService,
userVerificationService,
formBuilder,
fileDownloadService
);
2018-07-05 20:40:53 +02:00
}
2021-12-17 15:57:11 +01:00
async ngOnInit() {
// eslint-disable-next-line rxjs-angular/prefer-takeuntil, rxjs/no-async-subscribe
this.route.parent.parent.params.subscribe(async (params) => {
2018-07-05 20:40:53 +02:00
this.organizationId = params.organizationId;
});
await super.ngOnInit();
2018-07-05 20:40:53 +02:00
}
2021-12-17 15:57:11 +01:00
async checkExportDisabled() {
return;
}
2021-12-17 15:57:11 +01:00
2018-07-05 20:40:53 +02:00
getExportData() {
2018-12-17 16:54:18 +01:00
return this.exportService.getOrganizationExport(this.organizationId, this.format);
2018-07-05 20:40:53 +02:00
}
2021-12-17 15:57:11 +01:00
2018-07-05 20:40:53 +02:00
getFileName() {
return super.getFileName("org");
}
2021-12-17 15:57:11 +01:00
async collectEvent(): Promise<void> {
await this.eventService.collect(
EventType.Organization_ClientExportedVault,
null,
null,
this.organizationId
);
2019-07-12 23:11:50 +02:00
}
2018-07-05 20:40:53 +02:00
}