mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-14 11:57:38 +08:00
40 lines
No EOL
1 KiB
JavaScript
40 lines
No EOL
1 KiB
JavaScript
// Importers should always start with this
|
|
if (!window['PassmanImporter']) {
|
|
var PassmanImporter = {}
|
|
}
|
|
// 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"'
|
|
}
|
|
};
|
|
|
|
PassmanImporter.zohoCsv.readFile = function (file_data, callback) {
|
|
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);
|
|
})
|
|
}; |