summaryrefslogtreecommitdiffstats
path: root/js/settings.js
blob: 6709884ec7207a43c35109f919dc54bd19fe053b (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
News = News || {}
News.Settings={
	importkind: '',
	importpath: '',
	IMPORTCLOUD:'cloud',
	IMPORTLOCAL:'local',
	cloudFileSelected:function(path){
		$.getJSON(OC.filePath('news', 'ajax', 'selectfromcloud.php'),{'path':path},function(jsondata){
			if(jsondata.status == 'success'){
				$('#browsebtn, #cloudbtn, #importbtn').show();
				$('#opml_file').text(t('news', 'File ') + path + t('news', ' loaded from cloud.'));
				News.Settings.importkind = News.Settings.IMPORTCLOUD;
				News.Settings.importpath = jsondata.data.tmp;
			}
			else{
				OC.dialogs.alert(jsondata.data.message, t('news', 'Error'));
			}
		});
	},
	browseFile:function(filelist){
		if(!filelist) {
			OC.dialogs.alert(t('news','No files selected.'), t('news', 'Error'));
			return;
		}
		var file = filelist[0];
		$('#browsebtn, #cloudbtn, #importbtn').show();
		$('#opml_file').text(t('news', 'File ') + file.name + t('news', ' loaded from local filesystem.'));
		$('#opml_file').prop('value', file.name);
	},
	importOpml:function(button){
		$(button).attr("disabled", true);
		$(button).prop('value', t('news', 'Importing...'));

		var path = '';
		if (News.Settings.importkind == News.Settings.IMPORTCLOUD) {
			path = News.Settings.importpath;
		} else if (this.importkind == this.IMPORTLOCAL) {
		}
		else {
			OC.dialogs.alert(t('news','Import kind not specified'), t('news', 'Error'));
		}

		$.post(OC.filePath('news', 'ajax', 'importopml.php'), { path: path }, function(jsondata){
			if (jsondata.status == 'success') {
				var message = jsondata.data.countsuccess + t('news', ' out of ') + jsondata.data.count + 
					t('news', ' feeds imported successfully from ') + jsondata.data.title;   
				OC.dialogs.alert(message, t('news', 'Success'));
			} else {
				OC.dialogs.alert(jsondata.data.message, t('news', 'Error'));
			}
			$(button).prop('value', t('news', 'Import'));
			$(button).attr("disabled", false);
		});
	},
	exportOpml:function(button){
	//TODO
		alert("test");
	}
}

$('#browsebtn, #cloudbtn, #importbtn').hide();

$('#cloudbtn, #cloudlink').click(function() {
	/*
	  * it needs to be filtered by MIME type, but there are too many MIME types corresponding to opml
	  * and filepicker doesn't support multiple MIME types filter.
	  */
	OC.dialogs.filepicker(t('news', 'Select file'), News.Settings.cloudFileSelected, false, '', true);
});

$('#browsebtn, #browselink').click(function() {
	$('#file_upload_start').trigger('click');
});

$('#file_upload_start').change(function() {
	News.Settings.browseFile(this.files);
});

$('#importbtn').click(function() {
	News.Settings.importOpml(this);
});

$('#exportbtn').click(function() {
	News.Settings.exportOpml(this);
});