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

128 lines
4.7 KiB
TypeScript
Raw Normal View History

2018-04-06 21:33:20 +02:00
import {
ChangeDetectorRef,
Component,
NgZone,
} from '@angular/core';
import { Router } from '@angular/router';
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';
2019-07-02 14:26:33 +02:00
import { StateService } from 'jslib/abstractions/state.service';
import { StorageService } from 'jslib/abstractions/storage.service';
import { SyncService } from 'jslib/abstractions/sync.service';
2018-04-06 21:33:20 +02:00
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
import { TwoFactorComponent as BaseTwoFactorComponent } from 'jslib/angular/components/two-factor.component';
2018-12-03 19:47:40 +01:00
import { PopupUtilsService } from '../services/popup-utils.service';
2018-04-06 21:33:20 +02:00
const BroadcasterSubscriptionId = 'TwoFactorComponent';
@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,
i18nService: I18nService, apiService: ApiService,
2018-04-04 22:29:43 +02:00
platformUtilsService: PlatformUtilsService, syncService: SyncService,
2018-04-06 21:33:20 +02:00
environmentService: EnvironmentService, private ngZone: NgZone,
2018-12-03 19:47:40 +01:00
private broadcasterService: BroadcasterService, private changeDetectorRef: ChangeDetectorRef,
2019-07-02 14:26:33 +02:00
private popupUtilsService: PopupUtilsService, stateService: StateService,
storageService: StorageService) {
super(authService, router, i18nService, apiService, platformUtilsService, window, environmentService,
stateService, storageService);
2018-07-13 16:50:32 +02:00
super.onSuccessfulLogin = () => {
2018-04-25 18:08:23 +02:00
return syncService.fullSync(true);
};
super.successRoute = '/tabs/vault';
}
2018-04-04 22:53:41 +02:00
async ngOnInit() {
2018-04-06 21:33:20 +02:00
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
this.ngZone.run(async () => {
switch (message.command) {
case '2faPageResponse':
if (message.type === 'duo') {
this.token = message.data.sigValue;
this.submitWithTab(message.webExtSender.tab);
}
default:
break;
}
this.changeDetectorRef.detectChanges();
2018-04-11 05:49:46 +02:00
});
2018-04-06 21:33:20 +02:00
});
2018-12-03 19:47:40 +01:00
const isSafari = this.platformUtilsService.isSafari();
this.showNewWindowMessage = isSafari;
2018-04-04 22:53:41 +02:00
await super.ngOnInit();
if (this.selectedProviderType == null) {
return;
}
2018-12-03 19:47:40 +01:00
if (!isSafari && this.selectedProviderType === TwoFactorProviderType.Email &&
this.popupUtilsService.inPopup(window)) {
const confirmed = await this.platformUtilsService.showDialog(this.i18nService.t('popup2faCloseMessage'),
null, this.i18nService.t('yes'), this.i18nService.t('no'));
if (confirmed) {
this.popupUtilsService.popOut(window);
}
}
2018-04-11 05:49:46 +02:00
const isDuo = this.selectedProviderType === TwoFactorProviderType.Duo ||
this.selectedProviderType === TwoFactorProviderType.OrganizationDuo;
2018-12-03 19:47:40 +01:00
if (!isSafari || !isDuo) {
2018-04-04 22:53:41 +02:00
return;
}
2019-05-27 16:29:41 +02:00
const params = this.authService.twoFactorProvidersData.get(this.selectedProviderType);
2018-04-04 22:53:41 +02:00
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,
2018-04-11 05:49:46 +02:00
},
2018-04-04 22:53:41 +02:00
});
}, 500);
2018-04-06 21:33:20 +02:00
}
2018-04-04 22:53:41 +02:00
2018-04-06 21:33:20 +02:00
ngOnDestroy() {
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
super.ngOnDestroy();
2018-04-04 22:53:41 +02:00
}
anotherMethod() {
this.router.navigate(['2fa-options']);
}
2018-04-06 21:33:20 +02:00
async submitWithTab(sendSuccessToTab: any) {
await super.submit();
if (sendSuccessToTab != null) {
window.setTimeout(() => {
BrowserApi.tabSendMessage(sendSuccessToTab, {
command: '2faPageData',
2018-04-11 05:49:46 +02:00
data: { type: 'success' },
2018-04-06 21:33:20 +02:00
});
}, 1000);
}
}
}