mirror of
https://github.com/nextcloud/passman.git
synced 2025-10-12 06:25:52 +08:00
Add clipperz importer
This commit is contained in:
parent
e60ed02621
commit
60b7da4f8b
2 changed files with 49 additions and 0 deletions
48
js/importers/importer-clipperz.js
Normal file
48
js/importers/importer-clipperz.js
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
// Importers should always start with this
|
||||||
|
if (!window['PassmanImporter']) {
|
||||||
|
var PassmanImporter = {}
|
||||||
|
}
|
||||||
|
// Define the importer
|
||||||
|
PassmanImporter.clippers = {
|
||||||
|
info: {
|
||||||
|
name: 'Clipperz.is',
|
||||||
|
id: 'clippers',
|
||||||
|
description: 'Go to menu -> Export -> Download HTML + JSON. Fields will be imported as custom fields.'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
PassmanImporter.clippers.readFile = function (file_data) {
|
||||||
|
var credential_list = [];
|
||||||
|
var re = /<textarea>(.*?)<\/textarea>/gi;
|
||||||
|
var matches = re.exec(file_data);
|
||||||
|
if(matches){
|
||||||
|
var raw_json = matches[0].substring(10);
|
||||||
|
raw_json = PassmanImporter.htmlDecode(raw_json.slice(0, -11));
|
||||||
|
var json_objects = PassmanImporter.readJson(raw_json);
|
||||||
|
for(var i = 0; i < json_objects.length; i++){
|
||||||
|
var card = json_objects[i];
|
||||||
|
re = /(\w+)/gi;
|
||||||
|
var tags = card.label.match(re);
|
||||||
|
card.label = card.label.replace(tags.join(' '), '').trim();
|
||||||
|
tags = tags.map(function(item){ return {text: item.replace('', '') }});
|
||||||
|
|
||||||
|
|
||||||
|
var _credential = PassmanImporter.newCredential();
|
||||||
|
_credential.label = card.label;
|
||||||
|
_credential.description = card.data.notes;
|
||||||
|
_credential.tags = tags;
|
||||||
|
for(var field in card.currentVersion.fields){
|
||||||
|
var field_data = card.currentVersion.fields[field];
|
||||||
|
_credential.custom_fields.push(
|
||||||
|
{
|
||||||
|
'label': field_data.label,
|
||||||
|
'value': field_data.value,
|
||||||
|
'secret': (field_data.hidden == true)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
credential_list.push(_credential);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return credential_list;
|
||||||
|
};
|
|
@ -68,6 +68,7 @@ script('passman', 'importers/importer-lastpasscsv');
|
||||||
script('passman', 'importers/importer-dashlanecsv');
|
script('passman', 'importers/importer-dashlanecsv');
|
||||||
script('passman', 'importers/importer-zohocsv');
|
script('passman', 'importers/importer-zohocsv');
|
||||||
script('passman', 'importers/importer-passmanjson');
|
script('passman', 'importers/importer-passmanjson');
|
||||||
|
script('passman', 'importers/importer-clipperz');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Styles
|
* Styles
|
||||||
|
|
Loading…
Add table
Reference in a new issue