1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-18 07:25:15 +02:00
bitwarden-browser/src/angular/components/view.component.ts

229 lines
8.0 KiB
TypeScript
Raw Normal View History

2018-04-06 04:21:18 +02:00
import {
2018-08-20 23:00:49 +02:00
ChangeDetectorRef,
2018-04-06 04:21:18 +02:00
EventEmitter,
Input,
2018-08-20 23:00:49 +02:00
NgZone,
2018-04-06 04:21:18 +02:00
OnDestroy,
2018-08-20 23:00:49 +02:00
OnInit,
2018-04-06 04:21:18 +02:00
Output,
} from '@angular/core';
import { CipherType } from '../../enums/cipherType';
import { FieldType } from '../../enums/fieldType';
import { AuditService } from '../../abstractions/audit.service';
import { CipherService } from '../../abstractions/cipher.service';
import { CryptoService } from '../../abstractions/crypto.service';
import { I18nService } from '../../abstractions/i18n.service';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
import { TokenService } from '../../abstractions/token.service';
import { TotpService } from '../../abstractions/totp.service';
2018-08-29 05:17:30 +02:00
import { UserService } from '../../abstractions/user.service';
2018-04-06 04:21:18 +02:00
import { AttachmentView } from '../../models/view/attachmentView';
import { CipherView } from '../../models/view/cipherView';
import { FieldView } from '../../models/view/fieldView';
import { LoginUriView } from '../../models/view/loginUriView';
2018-08-20 23:00:49 +02:00
import { BroadcasterService } from '../services/broadcaster.service';
2018-04-06 04:21:18 +02:00
2018-08-20 23:00:49 +02:00
const BroadcasterSubscriptionId = 'ViewComponent';
export class ViewComponent implements OnDestroy, OnInit {
2018-04-06 04:21:18 +02:00
@Input() cipherId: string;
@Output() onEditCipher = new EventEmitter<CipherView>();
cipher: CipherView;
showPassword: boolean;
showCardCode: boolean;
2018-08-29 05:17:30 +02:00
canAccessPremium: boolean;
2018-04-06 04:21:18 +02:00
totpCode: string;
totpCodeFormatted: string;
totpDash: number;
totpSec: number;
totpLow: boolean;
fieldType = FieldType;
checkPasswordPromise: Promise<number>;
private totpInterval: any;
constructor(protected cipherService: CipherService, protected totpService: TotpService,
protected tokenService: TokenService, protected i18nService: I18nService,
2018-04-06 04:21:18 +02:00
protected cryptoService: CryptoService, protected platformUtilsService: PlatformUtilsService,
2018-08-20 23:00:49 +02:00
protected auditService: AuditService, protected win: Window,
protected broadcasterService: BroadcasterService, protected ngZone: NgZone,
2018-08-29 05:17:30 +02:00
protected changeDetectorRef: ChangeDetectorRef, protected userService: UserService) { }
2018-08-20 23:00:49 +02:00
ngOnInit() {
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
this.ngZone.run(async () => {
switch (message.command) {
case 'syncCompleted':
if (message.successfully) {
await this.load();
this.changeDetectorRef.detectChanges();
}
break;
}
});
});
}
2018-04-06 04:21:18 +02:00
2018-04-06 05:49:38 +02:00
ngOnDestroy() {
2018-08-20 23:00:49 +02:00
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
2018-04-06 05:49:38 +02:00
this.cleanUp();
}
async load() {
2018-04-06 04:21:18 +02:00
this.cleanUp();
const cipher = await this.cipherService.get(this.cipherId);
this.cipher = await cipher.decrypt();
2018-08-29 05:17:30 +02:00
this.canAccessPremium = await this.userService.canAccessPremium();
2018-04-06 04:21:18 +02:00
if (this.cipher.type === CipherType.Login && this.cipher.login.totp &&
2018-08-29 05:17:30 +02:00
(cipher.organizationUseTotp || this.canAccessPremium)) {
2018-04-06 04:21:18 +02:00
await this.totpUpdateCode();
const interval = this.totpService.getTimeInterval(this.cipher.login.totp);
await this.totpTick(interval);
2018-04-06 04:21:18 +02:00
this.totpInterval = setInterval(async () => {
await this.totpTick(interval);
2018-04-06 04:21:18 +02:00
}, 1000);
}
}
edit() {
this.onEditCipher.emit(this.cipher);
}
togglePassword() {
this.platformUtilsService.eventTrack('Toggled Password');
2018-04-06 04:21:18 +02:00
this.showPassword = !this.showPassword;
}
toggleCardCode() {
this.platformUtilsService.eventTrack('Toggled Card Code');
this.showCardCode = !this.showCardCode;
}
2018-04-06 04:21:18 +02:00
async checkPassword() {
if (this.cipher.login == null || this.cipher.login.password == null || this.cipher.login.password === '') {
return;
}
this.platformUtilsService.eventTrack('Check Password');
2018-04-06 04:21:18 +02:00
this.checkPasswordPromise = this.auditService.passwordLeaked(this.cipher.login.password);
const matches = await this.checkPasswordPromise;
if (matches > 0) {
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('warning', null,
this.i18nService.t('passwordExposed', matches.toString()));
2018-04-06 04:21:18 +02:00
} else {
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('success', null, this.i18nService.t('passwordSafe'));
2018-04-06 04:21:18 +02:00
}
}
toggleFieldValue(field: FieldView) {
const f = (field as any);
f.showValue = !f.showValue;
}
launch(uri: LoginUriView) {
if (!uri.canLaunch) {
return;
}
this.platformUtilsService.eventTrack('Launched Login URI');
2018-04-06 04:21:18 +02:00
this.platformUtilsService.launchUri(uri.uri);
}
copy(value: string, typeI18nKey: string, aType: string) {
if (value == null) {
return;
}
this.platformUtilsService.eventTrack('Copied ' + aType);
2018-08-17 18:24:56 +02:00
const copyOptions = this.win != null ? { window: this.win } : null;
2018-04-19 14:00:54 +02:00
this.platformUtilsService.copyToClipboard(value, copyOptions);
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('info', null,
2018-04-06 04:21:18 +02:00
this.i18nService.t('valueCopied', this.i18nService.t(typeI18nKey)));
}
async downloadAttachment(attachment: AttachmentView) {
const a = (attachment as any);
if (a.downloading) {
return;
}
if (this.cipher.organizationId == null && !this.canAccessPremium) {
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('error', this.i18nService.t('premiumRequired'),
2018-04-06 04:21:18 +02:00
this.i18nService.t('premiumRequiredDesc'));
return;
}
a.downloading = true;
const response = await fetch(new Request(attachment.url, { cache: 'no-cache' }));
if (response.status !== 200) {
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('error', null, this.i18nService.t('errorOccurred'));
2018-04-06 04:21:18 +02:00
a.downloading = false;
return;
}
try {
const buf = await response.arrayBuffer();
const key = await this.cryptoService.getOrgKey(this.cipher.organizationId);
const decBuf = await this.cryptoService.decryptFromBytes(buf, key);
2018-04-07 06:18:31 +02:00
this.platformUtilsService.saveFile(this.win, decBuf, null, attachment.fileName);
2018-04-06 04:21:18 +02:00
} catch (e) {
2018-10-03 05:09:19 +02:00
this.platformUtilsService.showToast('error', null, this.i18nService.t('errorOccurred'));
2018-04-06 04:21:18 +02:00
}
a.downloading = false;
}
private cleanUp() {
2018-05-30 22:08:43 +02:00
this.totpCode = null;
2018-04-06 04:21:18 +02:00
this.cipher = null;
this.showPassword = false;
if (this.totpInterval) {
clearInterval(this.totpInterval);
}
}
private async totpUpdateCode() {
if (this.cipher == null || this.cipher.type !== CipherType.Login || this.cipher.login.totp == null) {
if (this.totpInterval) {
clearInterval(this.totpInterval);
}
return;
}
this.totpCode = await this.totpService.getCode(this.cipher.login.totp);
if (this.totpCode != null) {
if (this.totpCode.length > 4) {
const half = Math.floor(this.totpCode.length / 2);
this.totpCodeFormatted = this.totpCode.substring(0, half) + ' ' + this.totpCode.substring(half);
} else {
this.totpCodeFormatted = this.totpCode;
}
2018-04-06 04:21:18 +02:00
} else {
this.totpCodeFormatted = null;
if (this.totpInterval) {
clearInterval(this.totpInterval);
}
}
}
private async totpTick(intervalSeconds: number) {
2018-04-06 04:21:18 +02:00
const epoch = Math.round(new Date().getTime() / 1000.0);
const mod = epoch % intervalSeconds;
2018-04-06 04:21:18 +02:00
this.totpSec = intervalSeconds - mod;
this.totpDash = +(Math.round((((78.6 / intervalSeconds) * mod) + 'e+2') as any) + 'e-2');
2018-04-06 04:21:18 +02:00
this.totpLow = this.totpSec <= 7;
if (mod === 0) {
await this.totpUpdateCode();
}
}
}