bitwarden-estensione-browser/src/popup2/accounts/two-factor.component.ts

73 lines
2.6 KiB
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { ToasterService } from 'angular2-toaster';
import { Angulartics2 } from 'angulartics2';
2018-04-04 22:53:41 +02:00
import { BrowserApi } from '../../browser/browserApi';
import { TwoFactorProviderType } from 'jslib/enums/twoFactorProviderType';
import { ApiService } from 'jslib/abstractions/api.service';
import { AuthService } from 'jslib/abstractions/auth.service';
2018-04-04 22:29:43 +02:00
import { EnvironmentService } from 'jslib/abstractions/environment.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { SyncService } from 'jslib/abstractions/sync.service';
import { TwoFactorComponent as BaseTwoFactorComponent } from 'jslib/angular/components/two-factor.component';
@Component({
selector: 'app-two-factor',
2018-04-06 17:48:45 +02:00
templateUrl: 'two-factor.component.html',
})
export class TwoFactorComponent extends BaseTwoFactorComponent {
2018-04-04 22:53:41 +02:00
showNewWindowMessage = false;
constructor(authService: AuthService, router: Router,
analytics: Angulartics2, toasterService: ToasterService,
i18nService: I18nService, apiService: ApiService,
2018-04-04 22:29:43 +02:00
platformUtilsService: PlatformUtilsService, syncService: SyncService,
environmentService: EnvironmentService) {
super(authService, router, analytics, toasterService, i18nService, apiService,
2018-04-04 22:29:43 +02:00
platformUtilsService, syncService, window, environmentService);
2018-04-05 04:59:42 +02:00
this.successRoute = '/tabs/vault';
}
2018-04-04 22:53:41 +02:00
async ngOnInit() {
this.showNewWindowMessage = this.platformUtilsService.isSafari();
await super.ngOnInit();
if (this.selectedProviderType == null) {
return;
}
var isDuo = this.selectedProviderType == TwoFactorProviderType.Duo ||
this.selectedProviderType == TwoFactorProviderType.OrganizationDuo;
if (!this.platformUtilsService.isSafari() || !isDuo) {
return;
}
const params = this.authService.twoFactorProviders.get(this.selectedProviderType);
const tab = BrowserApi.createNewTab(BrowserApi.getAssetUrl('2fa/index.html'));
const tabToSend = BrowserApi.makeTabObject(tab);
window.setTimeout(() => {
BrowserApi.tabSendMessage(tabToSend, {
command: '2faPageData',
data: {
type: 'duo',
host: params.Host,
signature: params.Signature,
}
});
}, 500);
// TODO: listen for duo data message response
}
anotherMethod() {
this.router.navigate(['2fa-options']);
}
}