54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
$('#externalStorage tbody tr.\\\\OC\\\\Files\\\\Storage\\\\SFTP_Key').each(function() {
|
|
var tr = $(this);
|
|
var config = $(tr).find('.configuration');
|
|
if ($(config).find('.sftp_key').length === 0) {
|
|
setupTableRow(tr, config);
|
|
}
|
|
});
|
|
|
|
// We can't catch the DOM elements being added, but we can pick up when
|
|
// they receive focus
|
|
$('#externalStorage').on('focus', 'tbody tr.\\\\OC\\\\Files\\\\Storage\\\\SFTP_Key', function() {
|
|
var tr = $(this);
|
|
var config = $(tr).find('.configuration');
|
|
|
|
if ($(config).find('.sftp_key').length === 0) {
|
|
setupTableRow(tr, config);
|
|
}
|
|
});
|
|
|
|
$('#externalStorage').on('click', '.sftp_key', function(event) {
|
|
event.preventDefault();
|
|
var tr = $(this).parent().parent();
|
|
generateKeys(tr);
|
|
});
|
|
|
|
function setupTableRow(tr, config) {
|
|
$(config).append($(document.createElement('input')).addClass('button sftp_key')
|
|
.attr('type', 'button')
|
|
.attr('value', t('files_external', 'Generate keys')));
|
|
// If there's no private key, build one
|
|
if (0 === $(config).find('[data-parameter="private_key"]').val().length) {
|
|
generateKeys(tr);
|
|
}
|
|
}
|
|
|
|
function generateKeys(tr) {
|
|
var config = $(tr).find('.configuration');
|
|
|
|
$.post(OC.filePath('files_external', 'ajax', 'sftp_key.php'), {}, function(result) {
|
|
if (result && result.status === 'success') {
|
|
$(config).find('[data-parameter="public_key"]').val(result.data.public_key);
|
|
$(config).find('[data-parameter="private_key"]').val(result.data.private_key);
|
|
OCA.External.mountConfig.saveStorageConfig(tr, function() {
|
|
// Nothing to do
|
|
});
|
|
} else {
|
|
OC.dialogs.alert(result.data.message, t('files_external', 'Error generating key pair') );
|
|
}
|
|
});
|
|
}
|
|
});
|