passman/js/importers/importer-zohocsv.js

44 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-09-25 22:18:18 +08:00
// Importers should always start with this
2016-10-15 23:05:25 +08:00
var PassmanImporter = PassmanImporter || {};
2016-09-25 22:18:18 +08:00
2016-10-15 23:05:25 +08:00
(function(window, $, PassmanImporter) {
'use strict';
2016-09-27 00:23:35 +08:00
2016-10-15 23:05:25 +08:00
// Define the importer
PassmanImporter.zohoCsv = {
info: {
name: 'ZOHO csv',
id: 'zohoCsv',
description: 'Create an csv export. Go to Tools -> Export secrets -> Select "General CSV" and click "Export Secrets"'
2016-09-25 22:18:18 +08:00
}
2016-10-15 23:05:25 +08:00
};
PassmanImporter.zohoCsv.readFile = function (file_data) {
return new C_Promise(function(){
var parsed_csv = PassmanImporter.readCsv(file_data, false);
var credential_list = [];
for (var i = 0; i < parsed_csv.length; i++) {
var row = parsed_csv[i];
var _credential = PassmanImporter.newCredential();
_credential.label = row[0];
_credential.username = row[3];
_credential.password = row[4];
_credential.url = row[1];
_credential.description = row[2];
if(_credential.label){
credential_list.push(_credential);
}
var progress = {
percent: i/parsed_csv.length*100,
loaded: i,
total: parsed_csv.length
};
this.call_progress(progress);
}
this.call_then(credential_list);
})
};
})(window, $, PassmanImporter);