mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 04:09:20 +00:00
Offer the user to reset his password
This commit is contained in:
parent
4ea1761c72
commit
19797b8731
15
assets/css/pages/resetPassword/main.css
Normal file
15
assets/css/pages/resetPassword/main.css
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Reset password main script
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
.reset-password-box {
|
||||
max-width: 300px;
|
||||
margin: auto;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.reset-password-box .btn {
|
||||
display: block;
|
||||
}
|
@ -1315,6 +1315,20 @@ var ComunicWeb = {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Password reset page
|
||||
*/
|
||||
resetPassword: {
|
||||
|
||||
/**
|
||||
* Main script
|
||||
*/
|
||||
main: {
|
||||
//TODO : implement
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Logout controller
|
||||
*/
|
||||
|
@ -104,6 +104,35 @@ ComunicWeb.components.account.interface = {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Check the validity of a reset password token
|
||||
*
|
||||
* @param {String} token The token to check
|
||||
* @param {Function} callback
|
||||
*/
|
||||
checkPasswordResetToken: function(token, callback){
|
||||
var apiURI = "account/check_password_reset_token";
|
||||
var params = {
|
||||
token: token
|
||||
};
|
||||
ComunicWeb.common.api.makeAPIrequest(apiURI, params, false, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* Reset user password
|
||||
*
|
||||
* @param {String} token The token to check
|
||||
* @param {String} passwd The new password for the user
|
||||
* @param {Function} callback
|
||||
*/
|
||||
resetUserPassword: function(token, passwd, callback){
|
||||
var apiURI = "account/reset_user_passwd";
|
||||
var params = {
|
||||
token: token,
|
||||
password: passwd
|
||||
};
|
||||
ComunicWeb.common.api.makeAPIrequest(apiURI, params, false, callback);
|
||||
},
|
||||
|
||||
/**
|
||||
* Request the export of all the data of the user
|
||||
|
190
assets/js/pages/resetPassword/main.js
Normal file
190
assets/js/pages/resetPassword/main.js
Normal file
@ -0,0 +1,190 @@
|
||||
/**
|
||||
* Reset password page main script
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
ComunicWeb.pages.resetPassword.main = {
|
||||
|
||||
/**
|
||||
* Open page
|
||||
*
|
||||
* @param {Object} args Additionnal data passed in the method
|
||||
* @param {element} target Where the page will be applied
|
||||
*/
|
||||
open: function(args, target){
|
||||
|
||||
//Create page box
|
||||
var pageBox = createElem2({
|
||||
appendTo: target,
|
||||
type: "div",
|
||||
class: "box box-primary reset-password-box"
|
||||
});
|
||||
|
||||
//Box header
|
||||
var boxHeader = createElem2({
|
||||
appendTo: pageBox,
|
||||
type: "div",
|
||||
class: "box-header"
|
||||
});
|
||||
|
||||
//Box title
|
||||
createElem2({
|
||||
appendTo: boxHeader,
|
||||
type: "h3",
|
||||
class: "box-title",
|
||||
innerHTML: "Reset password"
|
||||
});
|
||||
|
||||
//Box body
|
||||
var boxBody = createElem2({
|
||||
appendTo: pageBox,
|
||||
type: "div",
|
||||
class: "box-body"
|
||||
});
|
||||
|
||||
//Create messages target
|
||||
var messagesTarget = createElem2({
|
||||
appendTo: boxBody,
|
||||
type: "div"
|
||||
});
|
||||
|
||||
//Add loading message
|
||||
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
||||
"Loading",
|
||||
"Please wait while we retrieve a few information...",
|
||||
"info"));
|
||||
|
||||
//Get the token (specified after the "#")
|
||||
var token = document.location.toString().split("#")[1];
|
||||
|
||||
//Check the token
|
||||
if(token == null){
|
||||
emptyElem(messagesTarget);
|
||||
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
||||
"Error",
|
||||
"It seems you followed an invalid link...",
|
||||
"danger"
|
||||
));
|
||||
return;
|
||||
}
|
||||
|
||||
//Check the token's validity on the server
|
||||
ComunicWeb.components.account.interface.checkPasswordResetToken(token, function(result){
|
||||
|
||||
emptyElem(messagesTarget);
|
||||
|
||||
//Check for errors
|
||||
if(result.error){
|
||||
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
||||
"Error",
|
||||
"Your reset password request timed out, or is invalid. Please try again to reset your password...",
|
||||
"danger"
|
||||
));
|
||||
}
|
||||
|
||||
//Display reset password form
|
||||
ComunicWeb.pages.resetPassword.main.displayResetPasswordForm(boxBody, messagesTarget, token);
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Display reset password form
|
||||
*
|
||||
* @param {HTMLElement} target The target for the form
|
||||
* @param {HTMLElement} messagesTarget The target for the messages
|
||||
* @param {String} token The reset token of the user
|
||||
*/
|
||||
displayResetPasswordForm: function(target, messagesTarget, token){
|
||||
|
||||
//Create form container
|
||||
var formTarget = createElem2({
|
||||
appendTo: target,
|
||||
type: "div"
|
||||
});
|
||||
|
||||
//Message
|
||||
add_p(formTarget, "Please enter now your new password.");
|
||||
|
||||
//Prompt for new password
|
||||
var passwordInput = createFormGroup({
|
||||
target: formTarget,
|
||||
type: "password",
|
||||
label: "Your new password",
|
||||
placeholder: "Your new password"
|
||||
});
|
||||
|
||||
//Ask password confirmation
|
||||
var confirmPasswordInput = createFormGroup({
|
||||
target: formTarget,
|
||||
type: "password",
|
||||
label: "Confirm your password",
|
||||
placeholder: "Confirm your password"
|
||||
});
|
||||
|
||||
//Submit button
|
||||
var submit = createElem2({
|
||||
appendTo: formTarget,
|
||||
type: "div",
|
||||
class: "btn btn-primary",
|
||||
innerHTML: "Submit"
|
||||
});
|
||||
|
||||
//Make submit button lives
|
||||
submit.addEventListener("click", function(e){
|
||||
|
||||
//Empty messages target
|
||||
emptyElem(messagesTarget);
|
||||
|
||||
//Check password validity
|
||||
if(!ComunicWeb.common.formChecker.checkInput(passwordInput, true))
|
||||
return notify("Please specify a valid password!", "danger");
|
||||
|
||||
//Check password confirmation
|
||||
if(passwordInput.value != confirmPasswordInput.value)
|
||||
return notify("Password and its confirmation do not mach !", "danger");
|
||||
|
||||
submit.style.display = "none";
|
||||
|
||||
//Send a request to the server
|
||||
ComunicWeb.components.account.interface.resetUserPassword(token, passwordInput.value, function(result){
|
||||
|
||||
//Make submit button visible
|
||||
submit.style.display = "block";
|
||||
|
||||
//Check for errors
|
||||
if(result.error){
|
||||
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
||||
"Error",
|
||||
"The server rejected your request, please refresh the page and try again...",
|
||||
"danger"
|
||||
));
|
||||
return;
|
||||
}
|
||||
|
||||
//Success
|
||||
//Remove the form
|
||||
emptyElem(formTarget);
|
||||
|
||||
//Success message
|
||||
messagesTarget.appendChild(ComunicWeb.common.messages.createCalloutElem(
|
||||
"Success",
|
||||
"Your password has been successfully changed !",
|
||||
"success"
|
||||
));
|
||||
|
||||
//Add a button to go to login page
|
||||
var goLogin = createElem2({
|
||||
appendTo: formTarget,
|
||||
type: "div",
|
||||
class: "btn btn-primary",
|
||||
innerHTML: "Go login"
|
||||
});
|
||||
|
||||
goLogin.addEventListener("click", function(e){
|
||||
openPage("login");
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
}
|
@ -105,6 +105,15 @@ ComunicWeb.pagesList = {
|
||||
disableMenus: false,
|
||||
},
|
||||
|
||||
/**
|
||||
* Password reset page
|
||||
*/
|
||||
reset_password: {
|
||||
pageTitle: "Reset password",
|
||||
methodHandler: "ComunicWeb.pages.resetPassword.main.open",
|
||||
disableMenus: false
|
||||
},
|
||||
|
||||
/**
|
||||
* 404 Page not found
|
||||
*/
|
||||
|
@ -236,7 +236,10 @@ class Dev {
|
||||
//Password forgotten page
|
||||
"css/pages/passwordForgotten/main.css",
|
||||
"css/pages/passwordForgotten/promptOption.css",
|
||||
"css/pages/passwordForgotten/mailAdmin.css"
|
||||
"css/pages/passwordForgotten/mailAdmin.css",
|
||||
|
||||
//Password reset page
|
||||
"css/pages/resetPassword/main.css"
|
||||
);
|
||||
|
||||
/**
|
||||
@ -427,6 +430,9 @@ class Dev {
|
||||
"js/pages/passwordForgotten/mailAdmin.js",
|
||||
"js/pages/passwordForgotten/promptSecurityQuestions.js",
|
||||
|
||||
//Reset password page
|
||||
"js/pages/resetPassword/main.js",
|
||||
|
||||
//Logout page
|
||||
"js/pages/logout.js",
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user