|
|
|
|
@ -4,20 +4,26 @@ |
|
|
|
|
* See the COPYING-README file. |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
function updatePrivateKeyPassword() { |
|
|
|
|
var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val(); |
|
|
|
|
var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val(); |
|
|
|
|
OC.msg.startSaving('#encryption .msg'); |
|
|
|
|
$.post( |
|
|
|
|
OC.generateUrl('/apps/encryption/ajax/updatePrivateKeyPassword'), |
|
|
|
|
{ oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword } |
|
|
|
|
).success(function(response) { |
|
|
|
|
OC.msg.finishedSuccess('#encryption .msg', response.message); |
|
|
|
|
}).fail(function(response) { |
|
|
|
|
OC.msg.finishedError('#encryption .msg', response.responseJSON.message); |
|
|
|
|
}); |
|
|
|
|
if (!OC.Encryption) { |
|
|
|
|
OC.Encryption = {}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
OC.Encryption = { |
|
|
|
|
updatePrivateKeyPassword: function() { |
|
|
|
|
var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val(); |
|
|
|
|
var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val(); |
|
|
|
|
OC.msg.startSaving('#encryption .msg'); |
|
|
|
|
$.post( |
|
|
|
|
OC.generateUrl('/apps/encryption/ajax/updatePrivateKeyPassword'), |
|
|
|
|
{oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword} |
|
|
|
|
).success(function (response) { |
|
|
|
|
OC.msg.finishedSuccess('#encryption .msg', response.message); |
|
|
|
|
}).fail(function (response) { |
|
|
|
|
OC.msg.finishedError('#encryption .msg', response.responseJSON.message); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$(document).ready(function(){ |
|
|
|
|
|
|
|
|
|
// Trigger ajax on recoveryAdmin status change
|
|
|
|
|
@ -45,7 +51,7 @@ $(document).ready(function(){ |
|
|
|
|
if (newPrivateKeyPassword !== '' && oldPrivateKeyPassword !== '' ) { |
|
|
|
|
$('button:button[name="submitChangePrivateKeyPassword"]').removeAttr("disabled"); |
|
|
|
|
if(event.which === 13) { |
|
|
|
|
updatePrivateKeyPassword(); |
|
|
|
|
OC.Encryption.updatePrivateKeyPassword(); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$('button:button[name="submitChangePrivateKeyPassword"]').attr("disabled", "true"); |
|
|
|
|
@ -53,7 +59,7 @@ $(document).ready(function(){ |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$('button:button[name="submitChangePrivateKeyPassword"]').click(function() { |
|
|
|
|
updatePrivateKeyPassword(); |
|
|
|
|
OC.Encryption.updatePrivateKeyPassword(); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|