import { Component, OnInit, } from '@angular/core'; import { Router } from '@angular/router'; import { ToasterService } from 'angular2-toaster'; import { Angulartics2 } from 'angulartics2'; import { I18nService } from 'jslib/abstractions/i18n.service'; import { ImportOption, ImportService } from 'jslib/abstractions/import.service'; @Component({ selector: 'app-import', templateUrl: 'import.component.html', }) export class ImportComponent implements OnInit { featuredImportOptions: ImportOption[]; importOptions: ImportOption[]; format: string = null; fileContents: string; formPromise: Promise; protected organizationId: string = null; protected successNavigate: any[] = ['vault']; constructor(protected i18nService: I18nService, protected analytics: Angulartics2, protected toasterService: ToasterService, protected importService: ImportService, protected router: Router) { } ngOnInit() { this.setImportOptions(); this.importOptions.sort((a, b) => { if (a.name == null && b.name != null) { return -1; } if (a.name != null && b.name == null) { return 1; } if (a.name == null && b.name == null) { return 0; } return this.i18nService.collator ? this.i18nService.collator.compare(a.name, b.name) : a.name.localeCompare(b.name); }); } async submit() { const importer = this.importService.getImporter(this.format, this.organizationId != null); if (importer === null) { this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'), this.i18nService.t('selectFormat')); return; } const fileEl = document.getElementById('file') as HTMLInputElement; const files = fileEl.files; if ((files == null || files.length === 0) && (this.fileContents == null || this.fileContents === '')) { this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'), this.i18nService.t('selectFile')); return; } let fileContents = this.fileContents; if (files != null && files.length > 0) { try { const content = await this.getFileContents(files[0]); if (content != null) { fileContents = content; } } catch { } } if (fileContents == null || fileContents === '') { this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'), this.i18nService.t('selectFile')); return; } try { this.formPromise = this.importService.import(importer, fileContents, this.organizationId); const error = await this.formPromise; if (error != null) { this.error(error); return; } this.analytics.eventTrack.next({ action: 'Imported Data', properties: { label: this.format }, }); this.toasterService.popAsync('success', null, this.i18nService.t('importSuccess')); this.router.navigate(this.successNavigate); } catch { } } getFormatInstructionTitle() { if (this.format == null) { return null; } const results = this.featuredImportOptions.concat(this.importOptions).filter((o) => o.id === this.format); if (results.length > 0) { return this.i18nService.t('instructionsFor', results[0].name); } return null; } protected setImportOptions() { this.featuredImportOptions = [{ id: null, name: '-- ' + this.i18nService.t('select') + ' --', }, ...this.importService.featuredImportOptions]; this.importOptions = this.importService.regularImportOptions; } private error(error: Error) { this.analytics.eventTrack.next({ action: 'Import Data Failed', properties: { label: this.format }, }); this.toasterService.popAsync('error', this.i18nService.t('errorOccurred'), error.message); } private getFileContents(file: File): Promise { return new Promise((resolve, reject) => { const reader = new FileReader(); reader.readAsText(file, 'utf-8'); reader.onload = (evt) => { if (this.format === 'lastpasscsv' && file.type === 'text/html') { const parser = new DOMParser(); const doc = parser.parseFromString((evt.target as any).result, 'text/html'); const pre = doc.querySelector('pre'); if (pre != null) { resolve(pre.textContent); return; } reject(); return; } resolve((evt.target as any).result); }; reader.onerror = () => { reject(); }; }); } }