2015-03-27 03:35:36 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013
|
|
|
|
* Sam Tuke <samtuke@owncloud.com>
|
|
|
|
* Robin Appelman <icewind1991@gmail.com>
|
|
|
|
* Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2015-04-22 17:41:47 +03:00
|
|
|
$(document).ready(function () {
|
2015-05-07 13:55:49 +03:00
|
|
|
|
|
|
|
$('input:button[name="enableRecoveryKey"]').click(function () {
|
2015-03-27 03:35:36 +03:00
|
|
|
|
2015-05-07 13:55:49 +03:00
|
|
|
var recoveryStatus = $(this).attr('status');
|
|
|
|
var newRecoveryStatus = (1 + parseInt(recoveryStatus)) % 2;
|
|
|
|
var buttonValue = $(this).attr('value');
|
|
|
|
|
|
|
|
var recoveryPassword = $('#encryptionRecoveryPassword').val();
|
|
|
|
var confirmPassword = $('#repeatEncryptionRecoveryPassword').val();
|
|
|
|
OC.msg.startSaving('#encryptionSetRecoveryKey .msg');
|
|
|
|
$.post(
|
|
|
|
OC.generateUrl('/apps/encryption/ajax/adminRecovery'),
|
|
|
|
{
|
|
|
|
adminEnableRecovery: newRecoveryStatus,
|
|
|
|
recoveryPassword: recoveryPassword,
|
|
|
|
confirmPassword: confirmPassword
|
|
|
|
}
|
|
|
|
).done(function (data) {
|
|
|
|
OC.msg.finishedSuccess('#encryptionSetRecoveryKey .msg', data.data.message);
|
|
|
|
|
|
|
|
if (newRecoveryStatus === 0) {
|
|
|
|
$('p[name="changeRecoveryPasswordBlock"]').addClass("hidden");
|
|
|
|
$('input:button[name="enableRecoveryKey"]').attr('value', 'Enable recovery key');
|
|
|
|
$('input:button[name="enableRecoveryKey"]').attr('status', '0');
|
|
|
|
} else {
|
|
|
|
$('input:password[name="changeRecoveryPassword"]').val("");
|
|
|
|
$('p[name="changeRecoveryPasswordBlock"]').removeClass("hidden");
|
|
|
|
$('input:button[name="enableRecoveryKey"]').attr('value', 'Disable recovery key');
|
|
|
|
$('input:button[name="enableRecoveryKey"]').attr('status', '1');
|
2015-04-22 17:41:47 +03:00
|
|
|
}
|
2015-05-07 13:55:49 +03:00
|
|
|
})
|
|
|
|
.fail(function (jqXHR) {
|
|
|
|
$('input:button[name="enableRecoveryKey"]').attr('value', buttonValue);
|
|
|
|
$('input:button[name="enableRecoveryKey"]').attr('status', recoveryStatus);
|
|
|
|
OC.msg.finishedError('#encryptionSetRecoveryKey .msg', JSON.parse(jqXHR.responseText).data.message);
|
|
|
|
});
|
|
|
|
|
2015-04-22 17:41:47 +03:00
|
|
|
|
2015-05-07 13:55:49 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
$("#repeatEncryptionRecoveryPassword").keyup(function (event) {
|
|
|
|
if (event.keyCode == 13) {
|
|
|
|
$("#enableRecoveryKey").click();
|
2015-03-27 03:35:36 +03:00
|
|
|
}
|
2015-05-07 13:55:49 +03:00
|
|
|
});
|
2015-03-27 03:35:36 +03:00
|
|
|
|
|
|
|
// change recovery password
|
|
|
|
|
2015-04-22 17:41:47 +03:00
|
|
|
$('button:button[name="submitChangeRecoveryKey"]').click(function () {
|
2015-03-27 03:35:36 +03:00
|
|
|
var oldRecoveryPassword = $('#oldEncryptionRecoveryPassword').val();
|
|
|
|
var newRecoveryPassword = $('#newEncryptionRecoveryPassword').val();
|
|
|
|
var confirmNewPassword = $('#repeatedNewEncryptionRecoveryPassword').val();
|
|
|
|
OC.msg.startSaving('#encryptionChangeRecoveryKey .msg');
|
|
|
|
$.post(
|
2015-04-22 17:41:47 +03:00
|
|
|
OC.generateUrl('/apps/encryption/ajax/changeRecoveryPassword'),
|
|
|
|
{
|
|
|
|
oldPassword: oldRecoveryPassword,
|
|
|
|
newPassword: newRecoveryPassword,
|
|
|
|
confirmPassword: confirmNewPassword
|
|
|
|
}
|
|
|
|
).done(function (data) {
|
|
|
|
OC.msg.finishedSuccess('#encryptionChangeRecoveryKey .msg', data.data.message);
|
|
|
|
})
|
|
|
|
.fail(function (jqXHR) {
|
|
|
|
OC.msg.finishedError('#encryptionChangeRecoveryKey .msg', JSON.parse(jqXHR.responseText).data.message);
|
|
|
|
});
|
2015-03-27 03:35:36 +03:00
|
|
|
});
|
|
|
|
|
2015-10-13 18:54:06 +03:00
|
|
|
$('#encryptHomeStorage').change(function() {
|
|
|
|
$.post(
|
|
|
|
OC.generateUrl('/apps/encryption/ajax/setEncryptHomeStorage'),
|
|
|
|
{
|
|
|
|
encryptHomeStorage: this.checked
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2015-03-27 03:35:36 +03:00
|
|
|
});
|