bitwarden-estensione-browser/angular/src/components/export.component.ts

141 lines
4.7 KiB
TypeScript
Raw Normal View History

2018-04-10 01:05:13 +02:00
import {
Directive,
2018-04-10 01:05:13 +02:00
EventEmitter,
OnInit,
2018-04-10 01:05:13 +02:00
Output,
} from '@angular/core';
import { FormBuilder } from '@angular/forms';
2018-04-10 01:05:13 +02:00
import { CryptoService } from 'jslib-common/abstractions/crypto.service';
import { EventService } from 'jslib-common/abstractions/event.service';
import { ExportService } from 'jslib-common/abstractions/export.service';
import { I18nService } from 'jslib-common/abstractions/i18n.service';
import { LogService } from 'jslib-common/abstractions/log.service';
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
import { PolicyService } from 'jslib-common/abstractions/policy.service';
import { UserVerificationService } from 'jslib-common/abstractions/userVerification.service';
import { EventType } from 'jslib-common/enums/eventType';
import { PolicyType } from 'jslib-common/enums/policyType';
2018-04-10 01:05:13 +02:00
@Directive()
export class ExportComponent implements OnInit {
2018-04-10 01:05:13 +02:00
@Output() onSaved = new EventEmitter();
2018-07-05 20:39:58 +02:00
formPromise: Promise<string>;
disabledByPolicy: boolean = false;
2018-04-10 01:05:13 +02:00
exportForm = this.fb.group({
format: ['json'],
secret: [''],
});
formatOptions = [
{ name: '.json', value: 'json' },
{ name: '.csv', value: 'csv' },
{ name: '.json (Encrypted)', value: 'encrypted_json' },
];
constructor(protected cryptoService: CryptoService, protected i18nService: I18nService,
2018-08-14 21:12:10 +02:00
protected platformUtilsService: PlatformUtilsService, protected exportService: ExportService,
protected eventService: EventService, private policyService: PolicyService, protected win: Window,
private logService: LogService, private userVerificationService: UserVerificationService,
private fb: FormBuilder) { }
async ngOnInit() {
await this.checkExportDisabled();
}
async checkExportDisabled() {
this.disabledByPolicy = await this.policyService.policyAppliesToUser(PolicyType.DisablePersonalVaultExport);
if (this.disabledByPolicy) {
this.exportForm.disable();
}
}
2018-04-10 01:05:13 +02:00
get encryptedFormat() {
return this.format === 'encrypted_json';
}
2018-04-10 01:05:13 +02:00
async submit() {
if (this.disabledByPolicy) {
this.platformUtilsService.showToast('error', null, this.i18nService.t('personalVaultExportPolicyInEffect'));
return;
}
const acceptedWarning = await this.warningDialog();
if (!acceptedWarning) {
2018-04-10 01:05:13 +02:00
return;
}
const secret = this.exportForm.get('secret').value;
try {
await this.userVerificationService.verifyUser(secret);
} catch (e) {
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'), e.message);
return;
}
try {
this.formPromise = this.getExportData();
const data = await this.formPromise;
this.downloadFile(data);
this.saved();
await this.collectEvent();
this.exportForm.get('secret').setValue('');
} catch (e) {
this.logService.error(e);
2018-04-10 01:05:13 +02:00
}
}
async warningDialog() {
if (this.encryptedFormat) {
return await this.platformUtilsService.showDialog(
'<p>' + this.i18nService.t('encExportKeyWarningDesc') +
'<p>' + this.i18nService.t('encExportAccountWarningDesc'),
this.i18nService.t('confirmVaultExport'), this.i18nService.t('exportVault'),
this.i18nService.t('cancel'), 'warning',
true);
} else {
return await this.platformUtilsService.showDialog(
this.i18nService.t('exportWarningDesc'),
this.i18nService.t('confirmVaultExport'), this.i18nService.t('exportVault'),
this.i18nService.t('cancel'), 'warning');
}
}
2018-04-10 01:05:13 +02:00
protected saved() {
this.onSaved.emit();
}
2018-07-05 20:39:58 +02:00
protected getExportData() {
2018-12-17 16:54:03 +01:00
return this.exportService.getExport(this.format);
2018-07-05 20:39:58 +02:00
}
protected getFileName(prefix?: string) {
let extension = this.format;
if (this.format === 'encrypted_json') {
if (prefix == null) {
prefix = 'encrypted';
} else {
prefix = 'encrypted_' + prefix;
}
extension = 'json';
}
return this.exportService.getFileName(prefix, extension);
2018-07-05 20:39:58 +02:00
}
2019-07-12 23:11:36 +02:00
protected async collectEvent(): Promise<any> {
await this.eventService.collect(EventType.User_ClientExportedVault);
}
get format() {
return this.exportForm.get('format').value;
}
2018-04-10 01:05:13 +02:00
private downloadFile(csv: string): void {
2018-07-05 20:39:58 +02:00
const fileName = this.getFileName();
2018-04-10 01:05:13 +02:00
this.platformUtilsService.saveFile(this.win, csv, { type: 'text/plain' }, fileName);
}
}