zoho csv importer

This commit is contained in:
Kyle Spearrin 2018-07-19 15:12:58 -04:00
parent 3f329ca613
commit 8149d7877d
2 changed files with 73 additions and 1 deletions

View File

@ -105,6 +105,9 @@ export abstract class BaseImporter {
if (typeof uri === 'string') {
const loginUri = new LoginUriView();
loginUri.uri = this.fixUri(uri);
if (this.isNullOrWhitespace(loginUri.uri)) {
return null;
}
loginUri.match = null;
return [loginUri];
}
@ -114,10 +117,13 @@ export abstract class BaseImporter {
uri.forEach((u) => {
const loginUri = new LoginUriView();
loginUri.uri = this.fixUri(u);
if (this.isNullOrWhitespace(loginUri.uri)) {
return;
}
loginUri.match = null;
returnArr.push(loginUri);
});
return returnArr;
return returnArr.length === 0 ? null : returnArr;
}
return null;

View File

@ -0,0 +1,66 @@
import { BaseImporter } from './baseImporter';
import { Importer } from './importer';
import { ImportResult } from '../models/domain/importResult';
import { CipherView } from '../models/view';
export class ZohoVaultCsvImporter extends BaseImporter implements Importer {
parse(data: string): ImportResult {
const result = new ImportResult();
const results = this.parseCsv(data, true);
if (results == null) {
result.success = false;
return result;
}
results.forEach((value) => {
if (this.isNullOrWhitespace(value['Secret Name'])) {
return;
}
this.processFolder(result, this.getValueOrDefault(value.ChamberName));
const cipher = this.initLoginCipher();
cipher.favorite = this.getValueOrDefault(value.Favorite, '0') === '1';
cipher.notes = this.getValueOrDefault(value.Notes);
cipher.name = this.getValueOrDefault(value['Secret Name'], '--');
cipher.login.uris = this.makeUriArray(value['Secret URL']);
this.parseData(cipher, value.SecretData);
this.parseData(cipher, value.CustomData);
this.convertToNoteIfNeeded(cipher);
this.cleanupCipher(cipher);
result.ciphers.push(cipher);
});
if (this.organization) {
this.moveFoldersToCollections(result);
}
result.success = true;
return result;
}
private parseData(cipher: CipherView, data: string) {
if (this.isNullOrWhitespace(data)) {
return;
}
const dataLines = this.splitNewLine(data);
dataLines.forEach((line) => {
const delimPosition = line.indexOf(':');
if (delimPosition < 0) {
return;
}
const field = line.substring(0, delimPosition);
const value = line.length > delimPosition ? line.substring(delimPosition + 1) : null;
if (this.isNullOrWhitespace(field) || this.isNullOrWhitespace(value) || field === 'SecretType') {
return;
}
const fieldLower = field.toLowerCase();
if (cipher.login.username == null && this.usernameFieldNames.indexOf(fieldLower) > -1) {
cipher.login.username = value;
} else if (cipher.login.password == null && this.passwordFieldNames.indexOf(fieldLower) > -1) {
cipher.login.password = value;
} else {
this.processKvp(cipher, field, value);
}
});
}
}