1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/importers/passwordWalletTxtImporter.ts

48 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-04-27 02:51:53 +02:00
import { BaseImporter } from './baseImporter';
import { Importer } from './importer';
import { ImportResult } from '../models/domain/importResult';
export class PasswordWalletTxtImporter 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) => {
2019-04-27 03:00:17 +02:00
if (value.length < 1) {
2019-04-27 02:51:53 +02:00
return;
}
2019-04-27 03:00:17 +02:00
if (value.length > 5) {
this.processFolder(result, value[5]);
}
2019-04-27 02:51:53 +02:00
const cipher = this.initLoginCipher();
cipher.name = this.getValueOrDefault(value[0], '--');
2019-04-27 03:00:17 +02:00
if (value.length > 4) {
cipher.notes = this.getValueOrDefault(value[4], '').split('¬').join('\n');
}
if (value.length > 2) {
cipher.login.username = this.getValueOrDefault(value[2]);
}
if (value.length > 3) {
cipher.login.password = this.getValueOrDefault(value[3]);
}
if (value.length > 1) {
cipher.login.uris = this.makeUriArray(value[1]);
}
2019-04-27 02:51:53 +02:00
this.cleanupCipher(cipher);
result.ciphers.push(cipher);
});
if (this.organization) {
this.moveFoldersToCollections(result);
}
result.success = true;
return result;
}
}