2011-08-23 03:40:13 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-04-17 00:03:41 +04:00
|
|
|
/**
|
|
|
|
* Post the email address change to the server.
|
|
|
|
*/
|
|
|
|
function changeEmailAddress(){
|
2013-04-17 00:22:04 +04:00
|
|
|
emailInfo = $('#email');
|
2013-04-17 00:03:41 +04:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-04-23 23:45:12 +04:00
|
|
|
/**
|
2013-04-24 01:31:35 +04:00
|
|
|
* Post the display name change to the server.
|
2013-04-23 23:45:12 +04:00
|
|
|
*/
|
|
|
|
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').text($('#displayName').val());
|
|
|
|
// update displayName on the top right expand button
|
|
|
|
$('#expandDisplayName').text($('#displayName').val());
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$('#newdisplayname').val(data.data.displayName);
|
|
|
|
}
|
|
|
|
OC.msg.finishedSaving('#displaynameform .msg', data);
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
$(document).ready(function(){
|
|
|
|
$("#passwordbutton").click( function(){
|
2013-04-23 23:45:12 +04:00
|
|
|
if ($('#pass1').val() !== '' && $('#pass2').val() !== '') {
|
2011-08-28 01:40:41 +04:00
|
|
|
// Serialize the data
|
|
|
|
var post = $( "#passwordform" ).serialize();
|
|
|
|
$('#passwordchanged').hide();
|
|
|
|
$('#passworderror').hide();
|
|
|
|
// Ajax foo
|
|
|
|
$.post( 'ajax/changepassword.php', post, function(data){
|
2013-04-23 23:45:12 +04:00
|
|
|
if( data.status === "success" ){
|
2011-08-28 01:40:41 +04:00
|
|
|
$('#pass1').val('');
|
|
|
|
$('#pass2').val('');
|
|
|
|
$('#passwordchanged').show();
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$('#passworderror').html( data.data.message );
|
|
|
|
$('#passworderror').show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
} else {
|
2011-08-28 03:12:10 +04:00
|
|
|
$('#passwordchanged').hide();
|
|
|
|
$('#passworderror').show();
|
2011-08-28 01:40:41 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
});
|
2013-02-25 03:07:35 +04:00
|
|
|
|
2013-04-23 23:45:12 +04:00
|
|
|
$('#displayName').keyup(function(){
|
|
|
|
if ($('#displayName').val() !== '' ){
|
|
|
|
if(typeof timeout !== 'undefined'){
|
|
|
|
clearTimeout(timeout);
|
|
|
|
}
|
|
|
|
timeout = setTimeout('changeDisplayName()',1000);
|
|
|
|
}
|
|
|
|
});
|
2013-02-06 14:38:03 +04:00
|
|
|
|
2011-08-28 03:46:20 +04:00
|
|
|
|
2013-04-17 00:22:04 +04:00
|
|
|
$('#email').keyup(function(){
|
2013-04-23 23:45:12 +04:00
|
|
|
if ($('#email').val() !== '' ){
|
|
|
|
if(typeof timeout !== 'undefined'){
|
|
|
|
clearTimeout(timeout);
|
|
|
|
}
|
|
|
|
timeout = setTimeout('changeEmailAddress()',1000);
|
2013-04-17 00:03:41 +04:00
|
|
|
}
|
|
|
|
});
|
2011-09-26 23:10:56 +04:00
|
|
|
|
2011-08-28 03:46:20 +04:00
|
|
|
$("#languageinput").chosen();
|
2013-04-19 02:39:42 +04:00
|
|
|
// Show only the not selectable optgroup
|
|
|
|
// Choosen only shows optgroup-labels if there are options in the optgroup
|
|
|
|
$(".languagedivider").remove();
|
2011-08-28 03:46:20 +04:00
|
|
|
|
2011-06-20 16:33:02 +04:00
|
|
|
$("#languageinput").change( function(){
|
|
|
|
// Serialize the data
|
|
|
|
var post = $( "#languageinput" ).serialize();
|
|
|
|
// Ajax foo
|
|
|
|
$.post( 'ajax/setlanguage.php', post, function(data){
|
2013-04-23 23:45:12 +04:00
|
|
|
if( data.status === "success" ){
|
2011-08-28 01:06:15 +04:00
|
|
|
location.reload();
|
2011-06-20 16:33:02 +04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
$('#passworderror').html( data.data.message );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
2011-04-18 17:07:14 +04:00
|
|
|
} );
|
2011-09-11 19:20:23 +04:00
|
|
|
|
|
|
|
OC.msg={
|
|
|
|
startSaving:function(selector){
|
|
|
|
$(selector)
|
|
|
|
.html( t('settings', 'Saving...') )
|
|
|
|
.removeClass('success')
|
|
|
|
.removeClass('error')
|
|
|
|
.stop(true, true)
|
|
|
|
.show();
|
|
|
|
},
|
|
|
|
finishedSaving:function(selector, data){
|
2013-04-23 23:45:12 +04:00
|
|
|
if( data.status === "success" ){
|
2011-09-11 19:20:23 +04:00
|
|
|
$(selector).html( data.data.message )
|
|
|
|
.addClass('success')
|
|
|
|
.stop(true, true)
|
|
|
|
.delay(3000)
|
2013-04-23 23:45:12 +04:00
|
|
|
.fadeOut(900);
|
2011-09-11 19:20:23 +04:00
|
|
|
}else{
|
|
|
|
$(selector).html( data.data.message ).addClass('error');
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 00:17:33 +04:00
|
|
|
};
|