2012-06-12 19:36:25 +04:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
2012-08-14 01:10:36 +04:00
|
|
|
$('#externalStorage tbody tr.OC_Filestorage_Dropbox').each(function() {
|
|
|
|
var configured = $(this).find('[data-parameter="configured"]');
|
|
|
|
if ($(configured).val() == 'true') {
|
|
|
|
$(this).find('.configuration input').attr('disabled', 'disabled');
|
2012-10-03 01:09:28 +04:00
|
|
|
$(this).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
|
2012-08-14 01:10:36 +04:00
|
|
|
} else {
|
2012-06-12 19:36:25 +04:00
|
|
|
var app_key = $(this).find('.configuration [data-parameter="app_key"]').val();
|
|
|
|
var app_secret = $(this).find('.configuration [data-parameter="app_secret"]').val();
|
2012-08-14 01:10:36 +04:00
|
|
|
var config = $(this).find('.configuration');
|
|
|
|
if (app_key != '' && app_secret != '') {
|
2012-09-06 00:17:33 +04:00
|
|
|
var pos = window.location.search.indexOf('oauth_token') + 12;
|
2012-06-12 19:36:25 +04:00
|
|
|
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);
|
|
|
|
$.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);
|
2012-09-13 05:29:55 +04:00
|
|
|
$(configured).val('true');
|
2012-06-12 19:36:25 +04:00
|
|
|
OC.MountConfig.saveStorage(tr);
|
2012-08-14 01:10:36 +04:00
|
|
|
$(tr).find('.configuration input').attr('disabled', 'disabled');
|
2012-10-03 01:09:28 +04:00
|
|
|
$(tr).find('.configuration').append('<span id="access" style="padding-left:0.5em;">'+t('files_external', 'Access granted')+'</span>');
|
2012-06-12 19:36:25 +04:00
|
|
|
} else {
|
2012-10-03 01:09:28 +04:00
|
|
|
OC.dialogs.alert(result.data.message,
|
|
|
|
t('files_external', 'Error configuring Dropbox storage')
|
|
|
|
);
|
2012-06-12 19:36:25 +04:00
|
|
|
}
|
|
|
|
});
|
2012-08-13 19:01:38 +04:00
|
|
|
}
|
2012-08-14 01:10:36 +04:00
|
|
|
} else if ($(this).find('.mountPoint input').val() != '' && $(config).find('[data-parameter="app_key"]').val() != '' && $(config).find('[data-parameter="app_secret"]').val() != '' && $(this).find('.dropbox').length == 0) {
|
2012-10-03 01:09:28 +04:00
|
|
|
$(this).find('.configuration').append('<a class="button dropbox">'+t('files_external', 'Grant access')+'</a>');
|
2012-08-14 01:10:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#externalStorage tbody tr input').live('keyup', function() {
|
|
|
|
var tr = $(this).parent().parent();
|
|
|
|
if ($(tr).hasClass('OC_Filestorage_Dropbox') && $(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() != '') {
|
|
|
|
if ($(tr).find('.dropbox').length == 0) {
|
2012-10-03 01:09:28 +04:00
|
|
|
$(config).append('<a class="button dropbox">'+t('files_external', 'Grant access')+'</a>');
|
2012-08-14 01:10:36 +04:00
|
|
|
} else {
|
|
|
|
$(tr).find('.dropbox').show();
|
2012-06-12 19:36:25 +04:00
|
|
|
}
|
2012-08-14 01:10:36 +04:00
|
|
|
} else if ($(tr).find('.dropbox').length > 0) {
|
|
|
|
$(tr).find('.dropbox').hide();
|
2012-06-12 19:36:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.dropbox').live('click', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var app_key = $(this).parent().find('[data-parameter="app_key"]').val();
|
|
|
|
var app_secret = $(this).parent().find('[data-parameter="app_secret"]').val();
|
|
|
|
if (app_key != '' && app_secret != '') {
|
|
|
|
var tr = $(this).parent().parent();
|
2012-08-14 01:10:36 +04:00
|
|
|
var configured = $(this).parent().find('[data-parameter="configured"]');
|
2012-06-12 19:36:25 +04:00
|
|
|
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: window.location.href }, function(result) {
|
|
|
|
if (result && result.status == 'success') {
|
2012-08-14 01:10:36 +04:00
|
|
|
$(configured).val('false');
|
2012-06-12 19:36:25 +04:00
|
|
|
$(token).val(result.data.request_token);
|
|
|
|
$(token_secret).val(result.data.request_token_secret);
|
2012-08-14 01:10:36 +04:00
|
|
|
if (OC.MountConfig.saveStorage(tr)) {
|
|
|
|
window.location = result.data.url;
|
|
|
|
} else {
|
2012-10-03 01:09:28 +04:00
|
|
|
OC.dialogs.alert(
|
|
|
|
t('files_external', 'Fill out all required fields'),
|
|
|
|
t('files_external', 'Error configuring Dropbox storage')
|
|
|
|
);
|
2012-08-14 01:10:36 +04:00
|
|
|
}
|
2012-06-12 19:36:25 +04:00
|
|
|
} else {
|
2012-10-03 01:09:28 +04:00
|
|
|
OC.dialogs.alert(result.data.message,
|
|
|
|
t('files_external', 'Error configuring Dropbox storage')
|
|
|
|
);
|
2012-06-12 19:36:25 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2012-10-03 01:09:28 +04:00
|
|
|
OC.dialogs.alert(
|
|
|
|
t('files_external', 'Please provide a valid Dropbox app key and secret.'),
|
|
|
|
t('files_external', 'Error configuring Dropbox storage')
|
|
|
|
);
|
2012-06-12 19:36:25 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|