2022-02-22 15:39:11 +01:00
|
|
|
import { ImportResult } from "../models/domain/importResult";
|
|
|
|
|
2020-08-24 18:21:17 +02:00
|
|
|
import { BaseImporter } from "./baseImporter";
|
|
|
|
import { Importer } from "./importer";
|
|
|
|
|
|
|
|
export class YotiCsvImporter extends BaseImporter implements Importer {
|
2020-12-05 03:05:11 +01:00
|
|
|
parse(data: string): Promise<ImportResult> {
|
2020-08-24 18:21:17 +02:00
|
|
|
const result = new ImportResult();
|
|
|
|
const results = this.parseCsv(data, true);
|
|
|
|
if (results == null) {
|
|
|
|
result.success = false;
|
2020-12-05 03:05:11 +01:00
|
|
|
return Promise.resolve(result);
|
2020-08-24 18:21:17 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 16:49:23 +01:00
|
|
|
results.forEach((value) => {
|
2020-08-24 18:21:17 +02:00
|
|
|
const cipher = this.initLoginCipher();
|
|
|
|
cipher.name = this.getValueOrDefault(value.Name, "--");
|
|
|
|
cipher.login.username = this.getValueOrDefault(value["User name"]);
|
|
|
|
cipher.login.password = this.getValueOrDefault(value.Password);
|
|
|
|
cipher.login.uris = this.makeUriArray(value.URL);
|
|
|
|
this.cleanupCipher(cipher);
|
|
|
|
result.ciphers.push(cipher);
|
|
|
|
});
|
|
|
|
|
|
|
|
result.success = true;
|
2020-12-05 03:05:11 +01:00
|
|
|
return Promise.resolve(result);
|
2020-08-24 18:21:17 +02:00
|
|
|
}
|
|
|
|
}
|