mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
enpass json importer
This commit is contained in:
parent
18ac2db323
commit
e64fdf4e21
121
src/importers/enpassJsonImporter.ts
Normal file
121
src/importers/enpassJsonImporter.ts
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
import { BaseImporter } from './baseImporter';
|
||||||
|
import { Importer } from './importer';
|
||||||
|
|
||||||
|
import { ImportResult } from '../models/domain/importResult';
|
||||||
|
|
||||||
|
import { CardView } from '../models/view/cardView';
|
||||||
|
import { CipherView } from '../models/view/cipherView';
|
||||||
|
|
||||||
|
import { CipherType } from '../enums/cipherType';
|
||||||
|
|
||||||
|
export class EnpassJsonImporter extends BaseImporter implements Importer {
|
||||||
|
parse(data: string): ImportResult {
|
||||||
|
const result = new ImportResult();
|
||||||
|
const results = JSON.parse(data);
|
||||||
|
if (results == null || results.items == null || results.items.length === 0) {
|
||||||
|
result.success = false;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
results.items.forEach((item: any) => {
|
||||||
|
const cipher = this.initLoginCipher();
|
||||||
|
cipher.name = this.getValueOrDefault(item.title);
|
||||||
|
cipher.favorite = item.favorite > 0;
|
||||||
|
|
||||||
|
if (item.template_type != null && item.fields != null && item.fields.length > 0) {
|
||||||
|
if (item.template_type.indexOf('login.') === 0 || item.template_type.indexOf('password.') === 0) {
|
||||||
|
this.processLogin(cipher, item.fields);
|
||||||
|
} else if (item.template_type.indexOf('creditcard.') === 0) {
|
||||||
|
this.processCard(cipher, item.fields);
|
||||||
|
} else if (item.template_type.indexOf('identity.') < 0 &&
|
||||||
|
item.fields.find((f: any) => f.type === 'password' && !this.isNullOrWhitespace(f.value)) != null) {
|
||||||
|
this.processLogin(cipher, item.fields);
|
||||||
|
} else {
|
||||||
|
this.processNote(cipher, item.fields);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cipher.notes += ('\n' + this.getValueOrDefault(item.note, ''));
|
||||||
|
this.convertToNoteIfNeeded(cipher);
|
||||||
|
this.cleanupCipher(cipher);
|
||||||
|
result.ciphers.push(cipher);
|
||||||
|
});
|
||||||
|
|
||||||
|
result.success = true;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private processLogin(cipher: CipherView, fields: any[]) {
|
||||||
|
const urls: string[] = [];
|
||||||
|
fields.forEach((field: any) => {
|
||||||
|
if (this.isNullOrWhitespace(field.value) || field.type === 'section') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((field.type === 'username' || field.type === 'email') &&
|
||||||
|
this.isNullOrWhitespace(cipher.login.username)) {
|
||||||
|
cipher.login.username = field.value;
|
||||||
|
} else if (field.type === 'password' && this.isNullOrWhitespace(cipher.login.password)) {
|
||||||
|
cipher.login.password = field.value;
|
||||||
|
} else if (field.type === 'totp' && this.isNullOrWhitespace(cipher.login.totp)) {
|
||||||
|
cipher.login.totp = field.value;
|
||||||
|
} else if (field.type === 'url') {
|
||||||
|
urls.push(field.value);
|
||||||
|
} else {
|
||||||
|
this.processKvp(cipher, field.label, field.value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
cipher.login.uris = this.makeUriArray(urls);
|
||||||
|
}
|
||||||
|
|
||||||
|
private processCard(cipher: CipherView, fields: any[]) {
|
||||||
|
cipher.card = new CardView();
|
||||||
|
cipher.type = CipherType.Card;
|
||||||
|
fields.forEach((field: any) => {
|
||||||
|
if (this.isNullOrWhitespace(field.value) || field.type === 'section' || field.type === 'ccType') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (field.type === 'ccName' && this.isNullOrWhitespace(cipher.card.cardholderName)) {
|
||||||
|
cipher.card.cardholderName = field.value;
|
||||||
|
} else if (field.type === 'ccNumber' && this.isNullOrWhitespace(cipher.card.number)) {
|
||||||
|
cipher.card.number = field.value;
|
||||||
|
cipher.card.brand = this.getCardBrand(cipher.card.number);
|
||||||
|
} else if (field.type === 'ccCvc' && this.isNullOrWhitespace(cipher.card.code)) {
|
||||||
|
cipher.card.code = field.value;
|
||||||
|
} else if (field.type === 'ccExpiry' && this.isNullOrWhitespace(cipher.card.expYear)) {
|
||||||
|
const parts = field.value.split('/');
|
||||||
|
if (parts.length === 2) {
|
||||||
|
let month: string = null;
|
||||||
|
let year: string = null;
|
||||||
|
if (parts[0].length === 1 || parts[0].length === 2) {
|
||||||
|
month = parts[0];
|
||||||
|
if (month.length === 2 && month[0] === '0') {
|
||||||
|
month = month.substr(1, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (parts[1].length === 2 || parts[1].length === 4) {
|
||||||
|
year = month.length === 2 ? '20' + parts[1] : parts[1];
|
||||||
|
}
|
||||||
|
if (month != null && year != null) {
|
||||||
|
cipher.card.expMonth = month;
|
||||||
|
cipher.card.expYear = year;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.processKvp(cipher, field.label, field.value);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.processKvp(cipher, field.label, field.value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private processNote(cipher: CipherView, fields: any[]) {
|
||||||
|
fields.forEach((field: any) => {
|
||||||
|
if (this.isNullOrWhitespace(field.value) || field.type === 'section') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.processKvp(cipher, field.label, field.value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -27,6 +27,7 @@ import { ChromeCsvImporter } from '../importers/chromeCsvImporter';
|
|||||||
import { ClipperzHtmlImporter } from '../importers/clipperzHtmlImporter';
|
import { ClipperzHtmlImporter } from '../importers/clipperzHtmlImporter';
|
||||||
import { DashlaneJsonImporter } from '../importers/dashlaneJsonImporter';
|
import { DashlaneJsonImporter } from '../importers/dashlaneJsonImporter';
|
||||||
import { EnpassCsvImporter } from '../importers/enpassCsvImporter';
|
import { EnpassCsvImporter } from '../importers/enpassCsvImporter';
|
||||||
|
import { EnpassJsonImporter } from '../importers/enpassJsonImporter';
|
||||||
import { FirefoxCsvImporter } from '../importers/firefoxCsvImporter';
|
import { FirefoxCsvImporter } from '../importers/firefoxCsvImporter';
|
||||||
import { GnomeJsonImporter } from '../importers/gnomeJsonImporter';
|
import { GnomeJsonImporter } from '../importers/gnomeJsonImporter';
|
||||||
import { Importer } from '../importers/importer';
|
import { Importer } from '../importers/importer';
|
||||||
@ -72,6 +73,7 @@ export class ImportService implements ImportServiceAbstraction {
|
|||||||
{ id: 'roboformcsv', name: 'RoboForm (csv)' },
|
{ id: 'roboformcsv', name: 'RoboForm (csv)' },
|
||||||
{ id: 'keepercsv', name: 'Keeper (csv)' },
|
{ id: 'keepercsv', name: 'Keeper (csv)' },
|
||||||
{ id: 'enpasscsv', name: 'Enpass (csv)' },
|
{ id: 'enpasscsv', name: 'Enpass (csv)' },
|
||||||
|
{ id: 'enpassjson', name: 'Enpass (json)' },
|
||||||
{ id: 'safeincloudxml', name: 'SafeInCloud (xml)' },
|
{ id: 'safeincloudxml', name: 'SafeInCloud (xml)' },
|
||||||
{ id: 'pwsafexml', name: 'Password Safe (xml)' },
|
{ id: 'pwsafexml', name: 'Password Safe (xml)' },
|
||||||
{ id: 'stickypasswordxml', name: 'Sticky Password (xml)' },
|
{ id: 'stickypasswordxml', name: 'Sticky Password (xml)' },
|
||||||
@ -183,6 +185,8 @@ export class ImportService implements ImportServiceAbstraction {
|
|||||||
return new PasswordDragonXmlImporter();
|
return new PasswordDragonXmlImporter();
|
||||||
case 'enpasscsv':
|
case 'enpasscsv':
|
||||||
return new EnpassCsvImporter();
|
return new EnpassCsvImporter();
|
||||||
|
case 'enpassjson':
|
||||||
|
return new EnpassJsonImporter();
|
||||||
case 'pwsafexml':
|
case 'pwsafexml':
|
||||||
return new PasswordSafeXmlImporter();
|
return new PasswordSafeXmlImporter();
|
||||||
case 'dashlanejson':
|
case 'dashlanejson':
|
||||||
|
Loading…
Reference in New Issue
Block a user