Blame view

sources/apps/files_external/js/dropbox.js 4.65 KB
03e52840d   Kload   Init
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
  $(document).ready(function() {
  
  	$('#externalStorage tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Dropbox').each(function() {
  		var configured = $(this).find('[data-parameter="configured"]');
  		if ($(configured).val() == 'true') {
  			$(this).find('.configuration input').attr('disabled', 'disabled');
  			$(this).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
  		} else {
  			var app_key = $(this).find('.configuration [data-parameter="app_key"]').val();
  			var app_secret = $(this).find('.configuration [data-parameter="app_secret"]').val();
  			var config = $(this).find('.configuration');
  			if (app_key != '' && app_secret != '') {
  				var pos = window.location.search.indexOf('oauth_token') + 12;
  				var token = $(this).find('.configuration [data-parameter="token"]');
  				if (pos != -1 && window.location.search.substr(pos, $(token).val().length) == $(token).val()) {
  					var token_secret = $(this).find('.configuration [data-parameter="token_secret"]');
  					var tr = $(this);
  					var statusSpan = $(tr).find('.status span');
  					statusSpan.removeClass();
  					statusSpan.addClass('waiting');
  					$.post(OC.filePath('files_external', 'ajax', 'dropbox.php'), { step: 2, app_key: app_key, app_secret: app_secret, request_token: $(token).val(), request_token_secret: $(token_secret).val() }, function(result) {
  						if (result && result.status == 'success') {
  							$(token).val(result.access_token);
  							$(token_secret).val(result.access_token_secret);
  							$(configured).val('true');
a293d369c   Kload   Update sources to...
26
27
28
29
30
31
  							OC.MountConfig.saveStorage(tr, function(status) {
  								if (status) {
  									$(tr).find('.configuration input').attr('disabled', 'disabled');
  									$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
  								}
  							});
03e52840d   Kload   Init
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
  						} else {
  							OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring Dropbox storage'));
  						}
  					});
  				}
  			} else {
  				onDropboxInputsChange($(this));
  			}
  		}
  	});
  
  	$('#externalStorage').on('paste', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Dropbox td', function() {
  		var tr = $(this).parent();
  		setTimeout(function() {
  			onDropboxInputsChange(tr);
  		}, 20);
  	});
  
  	$('#externalStorage').on('keyup', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Dropbox td', function() {
  		onDropboxInputsChange($(this).parent());
  	});
  
  	$('#externalStorage').on('change', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Dropbox .chzn-select', function() {
  		onDropboxInputsChange($(this).parent().parent());
  	});
  
  	function onDropboxInputsChange(tr) {
  		if ($(tr).find('[data-parameter="configured"]').val() != 'true') {
  			var config = $(tr).find('.configuration');
  			if ($(tr).find('.mountPoint input').val() != ''
  				&& $(config).find('[data-parameter="app_key"]').val() != ''
  				&& $(config).find('[data-parameter="app_secret"]').val() != ''
  				&& ($(tr).find('.chzn-select').length == 0
  				|| $(tr).find('.chzn-select').val() != null))
  			{
  				if ($(tr).find('.dropbox').length == 0) {
  					$(config).append('<a class="button dropbox">'+t('files_external', 'Grant access')+'</a>');
  				} else {
  					$(tr).find('.dropbox').show();
  				}
  			} else if ($(tr).find('.dropbox').length > 0) {
  				$(tr).find('.dropbox').hide();
  			}
  		}
  	}
  
  	$('#externalStorage').on('click', '.dropbox', function(event) {
  		event.preventDefault();
  		var tr = $(this).parent().parent();
  		var app_key = $(this).parent().find('[data-parameter="app_key"]').val();
  		var app_secret = $(this).parent().find('[data-parameter="app_secret"]').val();
03e52840d   Kload   Init
83
84
85
86
87
88
89
90
91
92
  		if (app_key != '' && app_secret != '') {
  			var tr = $(this).parent().parent();
  			var configured = $(this).parent().find('[data-parameter="configured"]');
  			var token = $(this).parent().find('[data-parameter="token"]');
  			var token_secret = $(this).parent().find('[data-parameter="token_secret"]');
  			$.post(OC.filePath('files_external', 'ajax', 'dropbox.php'), { step: 1, app_key: app_key, app_secret: app_secret, callback: location.protocol + '//' + location.host + location.pathname }, function(result) {
  				if (result && result.status == 'success') {
  					$(configured).val('false');
  					$(token).val(result.data.request_token);
  					$(token_secret).val(result.data.request_token_secret);
a293d369c   Kload   Update sources to...
93
94
95
  					OC.MountConfig.saveStorage(tr, function() {
  						window.location = result.data.url;
  					});
03e52840d   Kload   Init
96
97
98
99
100
101
102
103
104
105
106
107
108
  				} else {
  					OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring Dropbox storage'));
  				}
  			});
  		} else {
  			OC.dialogs.alert(
  				t('files_external', 'Please provide a valid Dropbox app key and secret.'),
  				t('files_external', 'Error configuring Dropbox storage')
  			);
  		}
  	});
  
  });