bitwarden-estensione-browser/libs/common/src/importers/passwordAgentCsvImporter.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.9 KiB
TypeScript
Raw Normal View History

2022-02-22 15:39:11 +01:00
import { ImportResult } from "../models/domain/importResult";
2018-07-23 23:33:35 +02:00
import { BaseImporter } from "./baseImporter";
import { Importer } from "./importer";
export class PasswordAgentCsvImporter extends BaseImporter implements Importer {
parse(data: string): Promise<ImportResult> {
2018-07-23 23:33:35 +02:00
const result = new ImportResult();
const results = this.parseCsv(data, false);
if (results == null) {
result.success = false;
return Promise.resolve(result);
}
2018-07-23 23:33:35 +02:00
let newVersion = true;
results.forEach((value) => {
if (value.length !== 5 && value.length < 9) {
2021-12-16 13:36:21 +01:00
return;
}
const altFormat = value.length === 10 && value[0] === "0";
const cipher = this.initLoginCipher();
cipher.name = this.getValueOrDefault(value[altFormat ? 1 : 0], "--");
cipher.login.username = this.getValueOrDefault(value[altFormat ? 2 : 1]);
cipher.login.password = this.getValueOrDefault(value[altFormat ? 3 : 2]);
2018-07-23 23:33:35 +02:00
if (value.length === 5) {
newVersion = false;
cipher.notes = this.getValueOrDefault(value[4]);
cipher.login.uris = this.makeUriArray(value[3]);
2021-12-16 13:36:21 +01:00
} else {
2018-07-23 23:33:35 +02:00
const folder = this.getValueOrDefault(value[altFormat ? 9 : 8], "(None)");
let folderName = folder !== "(None)" ? folder.split("\\").join("/") : null;
if (folderName != null) {
folderName = folder.split(" > ").join("/");
folderName = folder.split(">").join("/");
2018-07-23 23:33:35 +02:00
}
this.processFolder(result, folderName);
cipher.notes = this.getValueOrDefault(value[altFormat ? 5 : 3]);
cipher.login.uris = this.makeUriArray(value[4]);
2021-12-16 13:36:21 +01:00
}
2018-07-23 23:33:35 +02:00
this.convertToNoteIfNeeded(cipher);
this.cleanupCipher(cipher);
result.ciphers.push(cipher);
2021-12-16 13:36:21 +01:00
});
2018-07-23 23:33:35 +02:00
if (newVersion && this.organization) {
this.moveFoldersToCollections(result);
2018-07-23 23:33:35 +02:00
}
2021-12-16 13:36:21 +01:00
2018-07-23 23:33:35 +02:00
result.success = true;
return Promise.resolve(result);
2021-12-16 13:36:21 +01:00
}
2018-07-23 23:33:35 +02:00
}