From 0c9fd975f76c8edbdee6b7a76b3ae8bb8ec1b5b3 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 11 Jul 2018 17:43:26 -0400 Subject: [PATCH] kepper csv importer --- src/importers/baseImporter.ts | 2 +- src/importers/keeperCsvImporter.ts | 70 ++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 src/importers/keeperCsvImporter.ts diff --git a/src/importers/baseImporter.ts b/src/importers/baseImporter.ts index 21778c240b..77dd6d3c0d 100644 --- a/src/importers/baseImporter.ts +++ b/src/importers/baseImporter.ts @@ -271,7 +271,7 @@ export abstract class BaseImporter { if (this.isNullOrWhitespace(key)) { key = ''; } - if (value.length > 200 || value.search(this.newLineRegex) > -1) { + if (value.length > 200 || value.trim().search(this.newLineRegex) > -1) { if (cipher.notes == null) { cipher.notes = ''; } diff --git a/src/importers/keeperCsvImporter.ts b/src/importers/keeperCsvImporter.ts new file mode 100644 index 0000000000..6e4cee1737 --- /dev/null +++ b/src/importers/keeperCsvImporter.ts @@ -0,0 +1,70 @@ +import { BaseImporter } from './baseImporter'; +import { Importer } from './importer'; + +import { ImportResult } from '../models/domain/importResult'; + +import { FolderView } from '../models/view/folderView'; + +export class KeeperCsvImporter extends BaseImporter implements Importer { + parse(data: string): ImportResult { + const result = new ImportResult(); + const results = this.parseCsv(data, false); + if (results == null) { + result.success = false; + return result; + } + + results.forEach((value) => { + if (value.length < 6) { + return; + } + + let folderIndex = result.folders.length; + const hasFolder = !this.isNullOrWhitespace(value[0]); + let addFolder = hasFolder; + + if (hasFolder) { + for (let i = 0; i < result.folders.length; i++) { + if (result.folders[i].name === value[0]) { + addFolder = false; + folderIndex = i; + break; + } + } + } + + if (addFolder) { + const f = new FolderView(); + f.name = value[0]; + result.folders.push(f); + } + if (hasFolder) { + result.folderRelationships.push([result.ciphers.length, folderIndex]); + } + + const cipher = this.initLoginCipher(); + cipher.notes = this.getValueOrDefault(value[5]) + '\n'; + cipher.name = this.getValueOrDefault(value[1], '--'); + cipher.login.username = this.getValueOrDefault(value[2]); + cipher.login.password = this.getValueOrDefault(value[3]); + cipher.login.uris = this.makeUriArray(value[4]); + + if (value.length > 7) { + // we have some custom fields. + for (let i = 7; i < value.length; i = i + 2) { + this.processKvp(cipher, value[i], value[i + 1]); + } + } + + this.cleanupCipher(cipher); + result.ciphers.push(cipher); + }); + + if (this.organization) { + this.moveFoldersToCollections(result); + } + + result.success = true; + return result; + } +}