Welcome to mirror list, hosted at ThFree Co, Russian Federation.

importer-zohocsv.js « importers « js - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d677572a2f57c4fdaa820931bb707caaa7754729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// 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) {
	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);
	})
};