mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-03 13:33:32 +01:00
44 lines
1.8 KiB
TypeScript
44 lines
1.8 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
|
|
import { ToasterService } from 'angular2-toaster';
|
|
import { Angulartics2 } from 'angulartics2';
|
|
|
|
import { ApiService } from 'jslib/abstractions/api.service';
|
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
|
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
|
|
|
import { TwoFactorRecoveryRequest } from 'jslib/models/request/twoFactorRecoveryRequest';
|
|
|
|
@Component({
|
|
selector: 'app-recover-two-factor',
|
|
templateUrl: 'recover-two-factor.component.html',
|
|
})
|
|
export class RecoverTwoFactorComponent {
|
|
email: string;
|
|
masterPassword: string;
|
|
recoveryCode: string;
|
|
formPromise: Promise<any>;
|
|
|
|
constructor(private router: Router, private apiService: ApiService,
|
|
private analytics: Angulartics2, private toasterService: ToasterService,
|
|
private i18nService: I18nService, private cryptoService: CryptoService,
|
|
private authService: AuthService) { }
|
|
|
|
async submit() {
|
|
try {
|
|
const request = new TwoFactorRecoveryRequest();
|
|
request.recoveryCode = this.recoveryCode.replace(/\s/g, '').toLowerCase();
|
|
request.email = this.email.toLowerCase();
|
|
const key = await this.authService.makePreloginKey(this.masterPassword, request.email);
|
|
request.masterPasswordHash = await this.cryptoService.hashPassword(this.masterPassword, key);
|
|
this.formPromise = this.apiService.postTwoFactorRecover(request);
|
|
await this.formPromise;
|
|
this.analytics.eventTrack.next({ action: 'Recovered 2FA' });
|
|
this.toasterService.popAsync('success', null, this.i18nService.t('twoStepRecoverDisabled'));
|
|
this.router.navigate(['/']);
|
|
} catch { }
|
|
}
|
|
}
|