2012-06-13 21:54:32 +04:00
|
|
|
$(document).ready(function() {
|
2012-08-13 19:01:38 +04:00
|
|
|
|
2013-02-26 04:45:01 +04:00
|
|
|
$('#externalStorage tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Google').each(function(index, tr) {
|
2013-01-02 20:54:21 +04:00
|
|
|
setupGoogleRow(tr);
|
|
|
|
});
|
|
|
|
|
2013-02-26 04:45:01 +04:00
|
|
|
$('#externalStorage').on('change', '#selectBackend', function() {
|
|
|
|
if ($(this).val() == '\\OC\\Files\\Storage\\Google') {
|
2013-01-02 20:54:21 +04:00
|
|
|
setupGoogleRow($('#externalStorage tbody>tr:last').prev('tr'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function setupGoogleRow(tr) {
|
|
|
|
var configured = $(tr).find('[data-parameter="configured"]');
|
2012-08-14 01:10:36 +04:00
|
|
|
if ($(configured).val() == 'true') {
|
2013-01-02 20:54:21 +04:00
|
|
|
$(tr).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 {
|
2013-01-02 20:54:21 +04:00
|
|
|
var token = $(tr).find('[data-parameter="token"]');
|
|
|
|
var token_secret = $(tr).find('[data-parameter="token_secret"]');
|
2012-08-14 01:10:36 +04:00
|
|
|
var params = {};
|
|
|
|
window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
|
|
|
|
params[key] = value;
|
|
|
|
});
|
|
|
|
if (params['oauth_token'] !== undefined && params['oauth_verifier'] !== undefined && decodeURIComponent(params['oauth_token']) == $(token).val()) {
|
2013-01-10 06:47:24 +04:00
|
|
|
var statusSpan = $(tr).find('.status span');
|
|
|
|
statusSpan.removeClass();
|
|
|
|
statusSpan.addClass('waiting');
|
2012-08-14 01:10:36 +04:00
|
|
|
$.post(OC.filePath('files_external', 'ajax', 'google.php'), { step: 2, oauth_verifier: params['oauth_verifier'], 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');
|
|
|
|
OC.MountConfig.saveStorage(tr);
|
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-08-14 01:10:36 +04:00
|
|
|
} else {
|
2013-01-02 01:19:40 +04:00
|
|
|
OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring Google Drive storage'));
|
2013-01-02 20:54:21 +04:00
|
|
|
onGoogleInputsChange(tr);
|
2012-08-14 01:10:36 +04:00
|
|
|
}
|
2012-06-13 21:54:32 +04:00
|
|
|
});
|
2013-01-02 01:19:40 +04:00
|
|
|
} else {
|
2013-01-02 20:54:21 +04:00
|
|
|
onGoogleInputsChange(tr);
|
2012-08-14 01:10:36 +04:00
|
|
|
}
|
|
|
|
}
|
2013-01-02 20:54:21 +04:00
|
|
|
}
|
2012-08-14 01:10:36 +04:00
|
|
|
|
2013-02-26 04:45:01 +04:00
|
|
|
$('#externalStorage').on('paste', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Google td', function() {
|
2013-01-02 01:19:40 +04:00
|
|
|
var tr = $(this).parent();
|
|
|
|
setTimeout(function() {
|
|
|
|
onGoogleInputsChange(tr);
|
|
|
|
}, 20);
|
2012-06-13 21:54:32 +04:00
|
|
|
});
|
2012-08-13 19:01:38 +04:00
|
|
|
|
2013-02-26 04:45:01 +04:00
|
|
|
$('#externalStorage').on('keyup', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Google td', function() {
|
2013-01-02 01:19:40 +04:00
|
|
|
onGoogleInputsChange($(this).parent());
|
|
|
|
});
|
|
|
|
|
2013-02-26 04:45:01 +04:00
|
|
|
$('#externalStorage').on('change', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\Google .chzn-select', function() {
|
2013-01-02 01:19:40 +04:00
|
|
|
onGoogleInputsChange($(this).parent().parent());
|
|
|
|
});
|
|
|
|
|
|
|
|
function onGoogleInputsChange(tr) {
|
|
|
|
if ($(tr).find('[data-parameter="configured"]').val() != 'true') {
|
|
|
|
var config = $(tr).find('.configuration');
|
|
|
|
if ($(tr).find('.mountPoint input').val() != '' && ($(tr).find('.chzn-select').length == 0 || $(tr).find('.chzn-select').val() != null)) {
|
|
|
|
if ($(tr).find('.google').length == 0) {
|
|
|
|
$(config).append('<a class="button google">'+t('files_external', 'Grant access')+'</a>');
|
|
|
|
} else {
|
|
|
|
$(tr).find('.google').show();
|
|
|
|
}
|
|
|
|
} else if ($(tr).find('.google').length > 0) {
|
2012-08-14 01:10:36 +04:00
|
|
|
$(tr).find('.google').hide();
|
|
|
|
}
|
|
|
|
}
|
2013-01-02 01:19:40 +04:00
|
|
|
}
|
2012-08-14 01:10:36 +04:00
|
|
|
|
2013-02-26 04:45:01 +04:00
|
|
|
$('#externalStorage').on('click', '.google', function(event) {
|
2012-06-13 21:54:32 +04:00
|
|
|
event.preventDefault();
|
|
|
|
var tr = $(this).parent().parent();
|
2012-08-14 01:10:36 +04:00
|
|
|
var configured = $(this).parent().find('[data-parameter="configured"]');
|
2012-06-13 21:54:32 +04:00
|
|
|
var token = $(this).parent().find('[data-parameter="token"]');
|
|
|
|
var token_secret = $(this).parent().find('[data-parameter="token_secret"]');
|
2013-01-02 01:19:40 +04:00
|
|
|
var statusSpan = $(tr).find('.status span');
|
2012-12-24 22:48:18 +04:00
|
|
|
$.post(OC.filePath('files_external', 'ajax', 'google.php'), { step: 1, callback: location.protocol + '//' + location.host + location.pathname }, function(result) {
|
2012-06-13 21:54:32 +04:00
|
|
|
if (result && result.status == 'success') {
|
2012-08-14 01:10:36 +04:00
|
|
|
$(configured).val('false');
|
2012-06-13 21:54:32 +04:00
|
|
|
$(token).val(result.data.request_token);
|
|
|
|
$(token_secret).val(result.data.request_token_secret);
|
2013-01-02 01:19:40 +04:00
|
|
|
OC.MountConfig.saveStorage(tr);
|
|
|
|
statusSpan.removeClass();
|
|
|
|
statusSpan.addClass('waiting');
|
|
|
|
window.location = result.data.url;
|
2012-06-13 21:54:32 +04:00
|
|
|
} else {
|
2013-01-02 01:19:40 +04:00
|
|
|
OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring Google Drive storage'));
|
2012-06-13 21:54:32 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2012-08-13 19:01:38 +04:00
|
|
|
|
2012-06-13 21:54:32 +04:00
|
|
|
});
|