mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 02:33:46 +00:00
[PS-1805] BEEEP: Renamed importers based on agreed naming-convention (#3978)
* Rename all importer related files Renamed all files based on our naming convention which we decided on with https://github.com/bitwarden/adr/blob/master/decisions/0012-angular-filename-convention.md * Removed entries from whitelist-capital-letters.txt * Rename missing safeInCloud test data * Fix broken import * Renamed folders (removed capital letters) * Fix filename of BitwardenCsvImporter * Fix imports of onepassword mac/win importer tests * Remove already renamed folders from whitelist * Rename dashlaneImporters to dashlane Rename the folder Fix all the imports Remove dashlaneImporters from white-list * Rename keeperImporters to keeper Rename the folder Fix all the imports Remove keeperImporters from white-list * Rename onepasswordImporters to onepassword Rename the folder Fix all the imports Remove onepasswordImporters from white-list * Rename safeinCloud test data folder * Fix onepassword importer type imports
This commit is contained in:
committed by
GitHub
parent
235fb8f6ee
commit
0e78910582
130
libs/common/src/importers/passwordboss-json-importer.ts
Normal file
130
libs/common/src/importers/passwordboss-json-importer.ts
Normal file
@@ -0,0 +1,130 @@
|
||||
import { CipherType } from "../enums/cipherType";
|
||||
import { ImportResult } from "../models/domain/import-result";
|
||||
import { CardView } from "../models/view/card.view";
|
||||
import { FolderView } from "../models/view/folder.view";
|
||||
|
||||
import { BaseImporter } from "./base-importer";
|
||||
import { Importer } from "./importer";
|
||||
|
||||
export class PasswordBossJsonImporter extends BaseImporter implements Importer {
|
||||
parse(data: string): Promise<ImportResult> {
|
||||
const result = new ImportResult();
|
||||
const results = JSON.parse(data);
|
||||
if (results == null || results.items == null) {
|
||||
result.success = false;
|
||||
return Promise.resolve(result);
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
if (!this.isNullOrWhitespace(value.identifiers.notes)) {
|
||||
cipher.notes = value.identifiers.notes.split("\\r\\n").join("\n").split("\\n").join("\n");
|
||||
}
|
||||
|
||||
if (value.type === "CreditCard") {
|
||||
cipher.card = new CardView();
|
||||
cipher.type = CipherType.Card;
|
||||
}
|
||||
|
||||
for (const property in value.identifiers) {
|
||||
// eslint-disable-next-line
|
||||
if (!value.identifiers.hasOwnProperty(property)) {
|
||||
continue;
|
||||
}
|
||||
const valObj = value.identifiers[property];
|
||||
const val = valObj != null ? valObj.toString() : null;
|
||||
if (
|
||||
this.isNullOrWhitespace(val) ||
|
||||
property === "notes" ||
|
||||
property === "ignoreItemInSecurityScore"
|
||||
) {
|
||||
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;
|
||||
cipher.card.brand = this.getCardBrand(val);
|
||||
continue;
|
||||
} else if (property === "nameOnCard") {
|
||||
cipher.card.cardholderName = val;
|
||||
continue;
|
||||
} else if (property === "security_code") {
|
||||
cipher.card.code = val;
|
||||
continue;
|
||||
} else if (property === "expires") {
|
||||
try {
|
||||
const expDate = new Date(val);
|
||||
cipher.card.expYear = expDate.getFullYear().toString();
|
||||
cipher.card.expMonth = (expDate.getMonth() + 1).toString();
|
||||
} catch {
|
||||
// Ignore error
|
||||
}
|
||||
continue;
|
||||
} else if (property === "cardType") {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
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);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
this.processKvp(cipher, property, val);
|
||||
}
|
||||
|
||||
this.convertToNoteIfNeeded(cipher);
|
||||
this.cleanupCipher(cipher);
|
||||
result.ciphers.push(cipher);
|
||||
});
|
||||
|
||||
result.success = true;
|
||||
return Promise.resolve(result);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user