mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
update password boss importer
This commit is contained in:
parent
77282e7b0f
commit
a7517a3621
@ -4,6 +4,7 @@ import { Importer } from './importer';
|
||||
import { ImportResult } from '../models/domain/importResult';
|
||||
|
||||
import { CardView } from '../models/view/cardView';
|
||||
import { FolderView } from '../models/view/folderView';
|
||||
|
||||
import { CipherType } from '../enums/cipherType';
|
||||
|
||||
@ -11,16 +12,32 @@ export class PasswordBossJsonImporter extends BaseImporter implements Importer {
|
||||
parse(data: string): ImportResult {
|
||||
const result = new ImportResult();
|
||||
const results = JSON.parse(data);
|
||||
if (results == null) {
|
||||
if (results == null || results.items == null) {
|
||||
result.success = false;
|
||||
return result;
|
||||
}
|
||||
|
||||
results.forEach((value: any) => {
|
||||
const foldersMap = new Map<string, string>();
|
||||
results.folders.forEach((value: any) => {
|
||||
foldersMap.set(value.id, value.name);
|
||||
});
|
||||
const foldersIndexMap = new Map<string, number>();
|
||||
foldersMap.forEach((val, key) => {
|
||||
foldersIndexMap.set(key, result.folders.length);
|
||||
const f = new FolderView();
|
||||
f.name = val;
|
||||
result.folders.push(f);
|
||||
});
|
||||
|
||||
results.items.forEach((value: any) => {
|
||||
const cipher = this.initLoginCipher();
|
||||
cipher.name = this.getValueOrDefault(value.name, '--');
|
||||
cipher.login.uris = this.makeUriArray(value.login_url);
|
||||
|
||||
if (value.folder != null && foldersIndexMap.has(value.folder)) {
|
||||
result.folderRelationships.push([result.ciphers.length, foldersIndexMap.get(value.folder)]);
|
||||
}
|
||||
|
||||
if (value.identifiers == null) {
|
||||
return;
|
||||
}
|
||||
@ -44,6 +61,13 @@ export class PasswordBossJsonImporter extends BaseImporter implements Importer {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (property === 'custom_fields') {
|
||||
valObj.forEach((cf: any) => {
|
||||
this.processKvp(cipher, cf.name, cf.value);
|
||||
});
|
||||
continue;
|
||||
}
|
||||
|
||||
if (cipher.type === CipherType.Card) {
|
||||
if (property === 'cardNumber') {
|
||||
cipher.card.number = val;
|
||||
@ -66,12 +90,16 @@ export class PasswordBossJsonImporter extends BaseImporter implements Importer {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
if (property === 'username') {
|
||||
if ((property === 'username' || property === 'email') &&
|
||||
this.isNullOrWhitespace(cipher.login.username)) {
|
||||
cipher.login.username = val;
|
||||
continue;
|
||||
} else if (property === 'password') {
|
||||
cipher.login.password = val;
|
||||
continue;
|
||||
} else if (property === 'totp') {
|
||||
cipher.login.totp = val;
|
||||
continue;
|
||||
} else if ((cipher.login.uris == null || cipher.login.uris.length === 0) &&
|
||||
this.uriFieldNames.indexOf(property) > -1) {
|
||||
cipher.login.uris = this.makeUriArray(val);
|
||||
|
Loading…
Reference in New Issue
Block a user