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

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

30 lines
1020 B
TypeScript
Raw Normal View History

2022-02-22 15:39:11 +01:00
import { ImportResult } from "../models/domain/importResult";
2018-07-11 05:17:55 +02:00
import { BaseImporter } from "./baseImporter";
import { Importer } from "./importer";
export class SaferPassCsvImporter extends BaseImporter implements Importer {
parse(data: string): Promise<ImportResult> {
2018-07-11 05:17:55 +02:00
const result = new ImportResult();
const results = this.parseCsv(data, true);
if (results == null) {
result.success = false;
return Promise.resolve(result);
2018-07-11 05:17:55 +02:00
}
results.forEach((value) => {
2018-07-11 05:17:55 +02:00
const cipher = this.initLoginCipher();
cipher.name = this.getValueOrDefault(this.nameFromUrl(value.url), "--");
cipher.notes = this.getValueOrDefault(value.notes);
cipher.login.username = this.getValueOrDefault(value.username);
cipher.login.password = this.getValueOrDefault(value.password);
cipher.login.uris = this.makeUriArray(value.url);
this.cleanupCipher(cipher);
result.ciphers.push(cipher);
});
result.success = true;
return Promise.resolve(result);
2018-07-11 05:17:55 +02:00
}
}