mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-14 11:57:38 +08:00
39 lines
No EOL
1.1 KiB
JavaScript
39 lines
No EOL
1.1 KiB
JavaScript
// Importers should always start with this
|
|
if (!window['PassmanImporter']) {
|
|
var PassmanImporter = {}
|
|
}
|
|
// Define the importer
|
|
PassmanImporter.lastpassCsv = {
|
|
info: {
|
|
name: 'LastPass csv',
|
|
id: 'lastpassCsv',
|
|
description: 'Create an csv export. Go to More options -> Advanced -> Export -> Last Pass CSV File'
|
|
}
|
|
};
|
|
|
|
PassmanImporter.lastpassCsv.readFile = function (file_data, callback) {
|
|
return new C_Promise(function(){
|
|
var parsed_csv = PassmanImporter.readCsv(file_data);
|
|
var credential_list = [];
|
|
for (var i = 0; i < parsed_csv.length; i++) {
|
|
var row = parsed_csv[i];
|
|
var _credential = PassmanImporter.newCredential();
|
|
_credential.label = PassmanImporter.htmlDecode(row.name);
|
|
_credential.username = row.username;
|
|
_credential.password = row.password;
|
|
_credential.url = row.url;
|
|
_credential.tags = [{text: row.grouping}];
|
|
_credential.description = row.extra;
|
|
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)
|
|
});
|
|
}; |