bitwarden-estensione-browser/src/popup2/vault/current-tab.component.ts

154 lines
4.5 KiB
TypeScript
Raw Normal View History

2018-04-05 04:59:42 +02:00
import {
Component,
ComponentFactoryResolver,
NgZone,
OnDestroy,
OnInit,
Type,
ViewChild,
ViewContainerRef,
} from '@angular/core';
import { Router } from '@angular/router';
2018-04-06 20:03:35 +02:00
import { ToasterService } from 'angular2-toaster';
import { Angulartics2 } from 'angulartics2';
import { BrowserApi } from '../../browser/browserApi';
import { CipherType } from 'jslib/enums/cipherType';
import { CipherView } from 'jslib/models/view/cipherView';
import { CipherService } from 'jslib/abstractions/cipher.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { AutofillService } from '../../services/abstractions/autofill.service';
import { PopupUtilsService } from '../services/popup-utils.service';
2018-04-05 04:59:42 +02:00
@Component({
2018-04-06 20:03:35 +02:00
selector: 'app-current-tab',
templateUrl: 'current-tab.component.html',
2018-04-05 04:59:42 +02:00
})
2018-04-06 20:03:35 +02:00
export class CurrentTabComponent implements OnInit {
pageDetails: any[] = [];
2018-04-06 20:18:28 +02:00
cardCiphers: CipherView[];
identityCiphers: CipherView[];
loginCiphers: CipherView[];
2018-04-06 20:03:35 +02:00
url: string;
domain: string;
canAutofill = false;
searchText: string = null;
inSidebar = false;
showPopout = true;
disableSearch = false;
loaded = false;
constructor(private platformUtilsService: PlatformUtilsService, private cipherService: CipherService,
private popupUtilsService: PopupUtilsService, private autofillService: AutofillService,
private analytics: Angulartics2, private toasterService: ToasterService,
private i18nService: I18nService, private router: Router) {
this.inSidebar = popupUtilsService.inSidebar(window);
this.showPopout = !this.inSidebar && !platformUtilsService.isSafari();
this.disableSearch = platformUtilsService.isEdge();
}
ngOnInit() {
this.load();
}
async refresh() {
await this.load();
}
addCipher() {
2018-04-06 20:12:50 +02:00
this.router.navigate(['/add-cipher']);
2018-04-06 20:03:35 +02:00
}
2018-04-05 04:59:42 +02:00
2018-04-06 20:03:35 +02:00
viewCipher(cipher: CipherView) {
this.router.navigate(['/view-cipher'], { queryParams: { cipherId: cipher.id } });
2018-04-05 04:59:42 +02:00
}
2018-04-06 20:03:35 +02:00
async fillCipher(cipher: CipherView) {
if (!this.canAutofill) {
this.analytics.eventTrack.next({ action: 'Autofilled Error' });
this.toasterService.popAsync('error', null, this.i18nService.t('autofillError'));
return;
}
try {
const totpCode = await this.autofillService.doAutoFill({
cipher: cipher,
pageDetails: this.pageDetails,
fromBackground: false,
doc: window.document,
});
this.analytics.eventTrack.next({ action: 'Autofilled' });
if (totpCode != null && this.platformUtilsService.isFirefox()) {
this.platformUtilsService.copyToClipboard(totpCode, { doc: window.document });
}
if (this.popupUtilsService.inPopup(window)) {
BrowserApi.closePopup(window);
}
} catch {
this.analytics.eventTrack.next({ action: 'Autofilled Error' });
this.toasterService.popAsync('error', null, this.i18nService.t('autofillError'));
}
}
searchVault() {
}
private async load() {
const tab = await BrowserApi.getTabFromCurrentWindow();
if (tab) {
this.url = tab.url;
} else {
this.loaded = true;
return;
}
this.domain = this.platformUtilsService.getDomain(this.url);
BrowserApi.tabSendMessage(tab, {
command: 'collectPageDetails',
tab: tab,
sender: 'currentController',
}).then(() => {
this.canAutofill = true;
});
const ciphers = await this.cipherService.getAllDecryptedForUrl(this.url, [
CipherType.Card,
CipherType.Identity,
]);
2018-04-06 20:18:28 +02:00
this.loginCiphers = [];
this.cardCiphers = [];
this.identityCiphers = [];
2018-04-06 20:03:35 +02:00
ciphers.forEach((c) => {
switch (c.type) {
case CipherType.Login:
this.loginCiphers.push(c);
break;
case CipherType.Card:
this.cardCiphers.push(c);
break;
case CipherType.Identity:
this.identityCiphers.push(c);
break;
default:
break;
}
});
this.loaded = true;
}
2018-04-05 04:59:42 +02:00
}