123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- $(document).ready(function() {
- OCA.External.Settings.mountConfig.whenSelectAuthMechanism(function($tr, authMechanism, scheme, onCompletion) {
- if (scheme === 'publickey') {
- var config = $tr.find('.configuration');
- if ($(config).find('[name="public_key_generate"]').length === 0) {
- setupTableRow($tr, config);
- onCompletion.then(function() {
- // If there's no private key, build one
- if (0 === $(config).find('[data-parameter="private_key"]').val().length) {
- generateKeys($tr);
- }
- });
- }
- }
- });
- $('#externalStorage').on('click', '[name="public_key_generate"]', function(event) {
- event.preventDefault();
- var tr = $(this).parent().parent();
- generateKeys(tr);
- });
- function setupTableRow(tr, config) {
- $(config).append($(document.createElement('input'))
- .addClass('button auth-param')
- .attr('type', 'button')
- .attr('value', t('files_external', 'Generate keys'))
- .attr('name', 'public_key_generate')
- );
- }
- function generateKeys(tr) {
- var config = $(tr).find('.configuration');
- $.post(OC.filePath('files_external', 'ajax', 'public_key.php'), {}, function(result) {
- if (result && result.status === 'success') {
- $(config).find('[data-parameter="public_key"]').val(result.data.public_key).keyup();
- $(config).find('[data-parameter="private_key"]').val(result.data.private_key);
- OCA.External.Settings.mountConfig.saveStorageConfig(tr, function() {
- // Nothing to do
- });
- } else {
- OC.dialogs.alert(result.data.message, t('files_external', 'Error generating key pair') );
- }
- });
- }
- });
|