passman/js/importers/importer-dashlanecsv.js

48 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-09-25 17:21:04 +08:00
// Importers should always start with this
if (!window['PassmanImporter']) {
var PassmanImporter = {}
}
// Define the importer
PassmanImporter.dashLaneCsv = {
info: {
name: 'Dashlane 4 csv',
id: 'dashLaneCsv',
description: 'Create an csv export. Go to File -> export -> Unsecured archive (readable) in CSV format'
}
};
2016-10-13 02:12:28 +08:00
PassmanImporter.dashLaneCsv.readFile = function (file_data) {
2016-09-26 23:32:13 +08:00
return new C_Promise(function(){
var rows = file_data.split('\n');
var credential_list = [];
2016-10-13 02:12:28 +08:00
for (var i = 0; i < rows.length; i++) {
var row = rows[i];
2016-09-26 23:32:13 +08:00
var row_data = row.split('","');
if (row_data[0].charAt(0) == '"') {
row_data[0] = row_data[0].substring(1);
}
2016-09-25 17:21:04 +08:00
2016-09-26 23:32:13 +08:00
if (row_data[row_data.length-1].toString().charAt(row_data[row_data.length - 1].length - 1) == '"') {
row_data[row_data.length - 1] = row_data[row_data.length -1].substring(0, row_data[row_data.length - 1].length - 1);
}
2016-09-25 17:21:04 +08:00
2016-09-26 23:32:13 +08:00
var _credential = PassmanImporter.newCredential();
_credential.label = row_data[0];
_credential.username = row_data[2];
_credential.password = row_data[row_data.length - 2];
_credential.url = row_data[0];
_credential.description = row_data[row_data.length - 1];
if(_credential.label){
credential_list.push(_credential);
}
2016-09-27 00:23:35 +08:00
var progress = {
percent: i/rows.length*100,
loaded: i,
total: rows.length
};
this.call_progress(progress);
2016-09-25 22:18:18 +08:00
}
2016-09-26 23:32:13 +08:00
this.call_then(credential_list);
});
2016-09-25 17:21:04 +08:00
};