mirror of
https://github.com/bitwarden/jslib
synced 2025-12-20 10:13:43 +00:00
62 lines
2.7 KiB
TypeScript
62 lines
2.7 KiB
TypeScript
import { Router } from '@angular/router';
|
|
|
|
import { CryptoService } from '../../abstractions/crypto.service';
|
|
import { I18nService } from '../../abstractions/i18n.service';
|
|
import { MessagingService } from '../../abstractions/messaging.service';
|
|
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
|
|
import { UserService } from '../../abstractions/user.service';
|
|
|
|
export class LockComponent {
|
|
masterPassword: string = '';
|
|
showPassword: boolean = false;
|
|
|
|
protected successRoute: string = 'vault';
|
|
protected onSuccessfulSubmit: () => void;
|
|
|
|
constructor(protected router: Router, protected i18nService: I18nService,
|
|
protected platformUtilsService: PlatformUtilsService, protected messagingService: MessagingService,
|
|
protected userService: UserService, protected cryptoService: CryptoService) { }
|
|
|
|
async submit() {
|
|
if (this.masterPassword == null || this.masterPassword === '') {
|
|
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
|
|
this.i18nService.t('masterPassRequired'));
|
|
return;
|
|
}
|
|
|
|
const email = await this.userService.getEmail();
|
|
const kdf = await this.userService.getKdf();
|
|
const kdfIterations = await this.userService.getKdfIterations();
|
|
const key = await this.cryptoService.makeKey(this.masterPassword, email, kdf, kdfIterations);
|
|
const keyHash = await this.cryptoService.hashPassword(this.masterPassword, key);
|
|
const storedKeyHash = await this.cryptoService.getKeyHash();
|
|
|
|
if (storedKeyHash != null && keyHash != null && storedKeyHash === keyHash) {
|
|
await this.cryptoService.setKey(key);
|
|
this.messagingService.send('unlocked');
|
|
if (this.onSuccessfulSubmit != null) {
|
|
this.onSuccessfulSubmit();
|
|
} else if (this.router != null) {
|
|
this.router.navigate([this.successRoute]);
|
|
}
|
|
} else {
|
|
this.platformUtilsService.showToast('error', this.i18nService.t('errorOccurred'),
|
|
this.i18nService.t('invalidMasterPassword'));
|
|
}
|
|
}
|
|
|
|
async logOut() {
|
|
const confirmed = await this.platformUtilsService.showDialog(this.i18nService.t('logOutConfirmation'),
|
|
this.i18nService.t('logOut'), this.i18nService.t('logOut'), this.i18nService.t('cancel'));
|
|
if (confirmed) {
|
|
this.messagingService.send('logout');
|
|
}
|
|
}
|
|
|
|
togglePassword() {
|
|
this.platformUtilsService.eventTrack('Toggled Master Password on Unlock');
|
|
this.showPassword = !this.showPassword;
|
|
document.getElementById('masterPassword').focus();
|
|
}
|
|
}
|