333 lines
9.2 KiB
JavaScript
333 lines
9.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
|
|
* 2013, Morris Jobke <morris.jobke@gmail.com>
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
/**
|
|
* Post the email address change to the server.
|
|
*/
|
|
function changeEmailAddress(){
|
|
var emailInfo = $('#email');
|
|
if (emailInfo.val() === emailInfo.defaultValue){
|
|
return;
|
|
}
|
|
emailInfo.defaultValue = emailInfo.val();
|
|
OC.msg.startSaving('#lostpassword .msg');
|
|
var post = $( "#lostpassword" ).serialize();
|
|
$.post( 'ajax/lostpassword.php', post, function(data){
|
|
OC.msg.finishedSaving('#lostpassword .msg', data);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Post the display name change to the server.
|
|
*/
|
|
function changeDisplayName(){
|
|
if ($('#displayName').val() !== '' ) {
|
|
OC.msg.startSaving('#displaynameform .msg');
|
|
// Serialize the data
|
|
var post = $( "#displaynameform" ).serialize();
|
|
// Ajax foo
|
|
$.post( 'ajax/changedisplayname.php', post, function(data){
|
|
if( data.status === "success" ){
|
|
$('#oldDisplayName').val($('#displayName').val());
|
|
// update displayName on the top right expand button
|
|
$('#expandDisplayName').text($('#displayName').val());
|
|
updateAvatar();
|
|
}
|
|
else{
|
|
$('#newdisplayname').val(data.data.displayName);
|
|
}
|
|
OC.msg.finishedSaving('#displaynameform .msg', data);
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function updateAvatar (hidedefault) {
|
|
$headerdiv = $('#header .avatardiv');
|
|
$displaydiv = $('#displayavatar .avatardiv');
|
|
|
|
if(hidedefault) {
|
|
$headerdiv.hide();
|
|
$('#header .avatardiv').removeClass('avatardiv-shown');
|
|
} else {
|
|
$headerdiv.css({'background-color': ''});
|
|
$headerdiv.avatar(OC.currentUser, 32, true);
|
|
$('#header .avatardiv').addClass('avatardiv-shown');
|
|
}
|
|
$displaydiv.css({'background-color': ''});
|
|
$displaydiv.avatar(OC.currentUser, 128, true);
|
|
|
|
$('#removeavatar').show();
|
|
}
|
|
|
|
function showAvatarCropper() {
|
|
$cropper = $('#cropper');
|
|
$cropper.prepend("<img>");
|
|
$cropperImage = $('#cropper img');
|
|
|
|
$cropperImage.attr('src', OC.generateUrl('/avatar/tmp')+'?requesttoken='+oc_requesttoken+'#'+Math.floor(Math.random()*1000));
|
|
|
|
// Looks weird, but on('load', ...) doesn't work in IE8
|
|
$cropperImage.ready(function(){
|
|
$('#displayavatar').hide();
|
|
$cropper.show();
|
|
|
|
$cropperImage.Jcrop({
|
|
onChange: saveCoords,
|
|
onSelect: saveCoords,
|
|
aspectRatio: 1,
|
|
boxHeight: 500,
|
|
boxWidth: 500,
|
|
setSelect: [0, 0, 300, 300]
|
|
});
|
|
});
|
|
}
|
|
|
|
function sendCropData() {
|
|
cleanCropper();
|
|
|
|
var cropperdata = $('#cropper').data();
|
|
var data = {
|
|
x: cropperdata.x,
|
|
y: cropperdata.y,
|
|
w: cropperdata.w,
|
|
h: cropperdata.h
|
|
};
|
|
$.post(OC.generateUrl('/avatar/cropped'), {crop: data}, avatarResponseHandler);
|
|
}
|
|
|
|
function saveCoords(c) {
|
|
$('#cropper').data(c);
|
|
}
|
|
|
|
function cleanCropper() {
|
|
$cropper = $('#cropper');
|
|
$('#displayavatar').show();
|
|
$cropper.hide();
|
|
$('.jcrop-holder').remove();
|
|
$('#cropper img').removeData('Jcrop').removeAttr('style').removeAttr('src');
|
|
$('#cropper img').remove();
|
|
}
|
|
|
|
function avatarResponseHandler(data) {
|
|
$warning = $('#avatar .warning');
|
|
$warning.hide();
|
|
if (data.status === "success") {
|
|
updateAvatar();
|
|
} else if (data.data === "notsquare") {
|
|
showAvatarCropper();
|
|
} else {
|
|
$warning.show();
|
|
$warning.text(data.data.message);
|
|
}
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
$("#passwordbutton").click( function(){
|
|
if ($('#pass1').val() !== '' && $('#pass2').val() !== '') {
|
|
// Serialize the data
|
|
var post = $( "#passwordform" ).serialize();
|
|
$('#passwordchanged').hide();
|
|
$('#passworderror').hide();
|
|
// Ajax foo
|
|
$.post(OC.generateUrl('/settings/personal/changepassword'), post, function(data){
|
|
if( data.status === "success" ){
|
|
$('#pass1').val('');
|
|
$('#pass2').val('');
|
|
$('#passwordchanged').show();
|
|
} else{
|
|
if (typeof(data.data) !== "undefined") {
|
|
$('#passworderror').html(data.data.message);
|
|
} else {
|
|
$('#passworderror').html(t('Unable to change password'));
|
|
}
|
|
$('#passworderror').show();
|
|
}
|
|
});
|
|
return false;
|
|
} else {
|
|
$('#passwordchanged').hide();
|
|
$('#passworderror').show();
|
|
return false;
|
|
}
|
|
|
|
});
|
|
|
|
$('#displayName').keyup(function(){
|
|
if ($('#displayName').val() !== '' ){
|
|
if(typeof timeout !== 'undefined'){
|
|
clearTimeout(timeout);
|
|
}
|
|
timeout = setTimeout(changeDisplayName, 1000);
|
|
}
|
|
});
|
|
|
|
|
|
$('#email').keyup(function(event){
|
|
if ($('#email').val() !== '' ){
|
|
// if this is the enter key changeEmailAddress() is already invoked
|
|
// so it doesn't need to be triggered again
|
|
if(event.keyCode === 13) {
|
|
return;
|
|
}
|
|
if(typeof timeout !== 'undefined'){
|
|
clearTimeout(timeout);
|
|
}
|
|
timeout = setTimeout(changeEmailAddress, 1000);
|
|
}
|
|
});
|
|
|
|
$('#email').keypress(function(event){
|
|
// check for enter key and non empty email
|
|
if (event.keyCode === 13 && $('#email').val() !== '' ){
|
|
event.preventDefault()
|
|
// clear timeout of previous keyup event - prevents duplicate changeEmailAddress call
|
|
if(typeof timeout !== 'undefined'){
|
|
clearTimeout(timeout);
|
|
}
|
|
changeEmailAddress();
|
|
}
|
|
});
|
|
|
|
$("#languageinput").change( function(){
|
|
// Serialize the data
|
|
var post = $( "#languageinput" ).serialize();
|
|
// Ajax foo
|
|
$.post( 'ajax/setlanguage.php', post, function(data){
|
|
if( data.status === "success" ){
|
|
location.reload();
|
|
}
|
|
else{
|
|
$('#passworderror').html( data.data.message );
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
|
|
$('button:button[name="submitDecryptAll"]').click(function() {
|
|
var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val();
|
|
$('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", true);
|
|
$('#decryptAll input:password[name="privateKeyPassword"]').prop("disabled", true);
|
|
OC.Encryption.decryptAll(privateKeyPassword);
|
|
});
|
|
|
|
$('#decryptAll input:password[name="privateKeyPassword"]').keyup(function(event) {
|
|
var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val();
|
|
if (privateKeyPassword !== '' ) {
|
|
$('#decryptAll button:button[name="submitDecryptAll"]').removeAttr("disabled");
|
|
if(event.which === 13) {
|
|
$('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", true);
|
|
$('#decryptAll input:password[name="privateKeyPassword"]').prop("disabled", true);
|
|
OC.Encryption.decryptAll(privateKeyPassword);
|
|
}
|
|
} else {
|
|
$('#decryptAll button:button[name="submitDecryptAll"]').attr("disabled", "true");
|
|
}
|
|
});
|
|
|
|
var uploadparms = {
|
|
done: function(e, data) {
|
|
avatarResponseHandler(data.result);
|
|
}
|
|
};
|
|
|
|
$('#uploadavatarbutton').click(function(){
|
|
$('#uploadavatar').click();
|
|
});
|
|
|
|
$('#uploadavatar').fileupload(uploadparms);
|
|
|
|
$('#selectavatar').click(function(){
|
|
OC.dialogs.filepicker(
|
|
t('settings', "Select a profile picture"),
|
|
function(path){
|
|
$.post(OC.generateUrl('/avatar/'), {path: path}, avatarResponseHandler);
|
|
},
|
|
false,
|
|
["image/png", "image/jpeg"]
|
|
);
|
|
});
|
|
|
|
$('#removeavatar').click(function(){
|
|
$.ajax({
|
|
type: 'DELETE',
|
|
url: OC.generateUrl('/avatar/'),
|
|
success: function(msg) {
|
|
updateAvatar(true);
|
|
$('#removeavatar').hide();
|
|
}
|
|
});
|
|
});
|
|
|
|
$('#abortcropperbutton').click(function(){
|
|
cleanCropper();
|
|
});
|
|
|
|
$('#sendcropperbutton').click(function(){
|
|
sendCropData();
|
|
});
|
|
|
|
$('#pass2').strengthify({
|
|
zxcvbn: OC.linkTo('3rdparty','zxcvbn/js/zxcvbn.js'),
|
|
titles: [
|
|
t('core', 'Very weak password'),
|
|
t('core', 'Weak password'),
|
|
t('core', 'So-so password'),
|
|
t('core', 'Good password'),
|
|
t('core', 'Strong password')
|
|
]
|
|
});
|
|
|
|
// does the user have a custom avatar? if he does hide #removeavatar
|
|
// needs to be this complicated because we can't check yet if an avatar has been loaded, because it's async
|
|
var url = OC.generateUrl(
|
|
'/avatar/{user}/{size}',
|
|
{user: OC.currentUser, size: 1}
|
|
) + '?requesttoken=' + oc_requesttoken;
|
|
$.get(url, function(result) {
|
|
if (typeof(result) === 'object') {
|
|
$('#removeavatar').hide();
|
|
}
|
|
});
|
|
} );
|
|
|
|
OC.Encryption = {
|
|
decryptAll: function(password) {
|
|
OC.Encryption.msg.startDecrypting('#decryptAll .msg');
|
|
$.post('ajax/decryptall.php', {password:password}, function(data) {
|
|
if (data.status === "error") {
|
|
OC.Encryption.msg.finishedDecrypting('#decryptAll .msg', data);
|
|
$('#decryptAll input:password[name="privateKeyPassword"]').removeAttr("disabled");
|
|
} else {
|
|
OC.Encryption.msg.finishedDecrypting('#decryptAll .msg', data);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
OC.Encryption.msg={
|
|
startDecrypting:function(selector){
|
|
var spinner = '<img src="'+ OC.imagePath('core', 'loading-small.gif') +'">';
|
|
$(selector)
|
|
.html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner )
|
|
.removeClass('success')
|
|
.removeClass('error')
|
|
.stop(true, true)
|
|
.show();
|
|
},
|
|
finishedDecrypting:function(selector, data){
|
|
if( data.status === "success" ){
|
|
$(selector).html( data.data.message )
|
|
.addClass('success')
|
|
.stop(true, true)
|
|
.delay(3000);
|
|
}else{
|
|
$(selector).html( data.data.message ).addClass('error');
|
|
}
|
|
}
|
|
};
|