General Actions:
Log-in
Wiki:
L3D's Wiki
▼
:
Document Index
»
Space:
XWiki
▼
:
Document Index
»
Page:
ResetPassword
Search
Page Actions:
Export
▼
:
Export as PDF
Export as RTF
Export as HTML
More actions
▼
:
Print preview
View Source
Welcome to your wiki
»
Forgot your password?
Wiki source code of
Forgot your password?
Last modified by
Administrator
on 2011/03/02 17:34
Content
·
Comments
(0)
·
Attachments
(0)
·
History
·
Information
Show line numbers
{{velocity}} #** This page starts the password reset procedure. It works according to the next algorithm: 1. Display a form requesting the username 2. When receiving the username via form submission, generate a random verification string which is stored (as a hash) inside a ResetPasswordRequestClass object attached to the user's profile page. If no such object exists, it is created, but an existing object will be reused, meaning that at most one password reset request can be active at a moment. 3. Send an email to the address configured in the user's profile, containing a link to the second step of the password reset procedure. URL parameters: u = user account sent in the form *### ## ## ## The name of the class used for storing password reset verification data. #set ($verifClass = 'XWiki.ResetPasswordRequestClass') #set ($userName = "$!request.get('u')") #if ($userName == '')## First step, display the form requesting the username $msg.get('xe.admin.passwordReset.instructions') {{html}} <form method="post" action="" class="xformInline"> <div> <input type="hidden" name="form_token" value="$!{services.csrf.getToken()}" /> <label for="u">$msg.get('xe.admin.passwordReset.username.label')</label> <input type="text" id="u" name="u"/> <span class="buttonwrapper"><input type="submit" value="$msg.get('xe.admin.passwordReset.submit')" class="button"/></span> </div> </form> {{/html}} #else## Second step, generate the verification string, store it, and send the email ## TODO: Once the usernames are not bound to the XWiki space, revisit this code #if ($userName.indexOf('.') != -1) #set ($userDoc = $xwiki.getDocumentAsAuthor(${userName})) #else #set ($userDoc = $xwiki.getDocumentAsAuthor("XWiki.${userName}")) #end ## Check if the user exists and has a valid email address configured in his profile #set ($userObj = '') #set ($userObj = $userDoc.getObject('XWiki.XWikiUsers')) #if (!$userObj) {{warning}}$msg.get('xe.admin.passwordReset.error.noUser', ["//${escapetool.xml($userName)}//"]){{/warning}} #elseif ($userDoc.getObject('XWiki.LDAPProfileClass')) {{warning}}$msg.get('xe.admin.passwordReset.error.ldapUser', ["//${escapetool.xml($userName)}//"]){{/warning}} #else #set ($userEmail = $userObj.getProperty('email').value) #if ("$!userEmail" == '') {{error}}$msg.get('xe.admin.passwordReset.error.noEmail'){{/error}} #else ## Find the object that will hold the verification string #set ($verifObj = '') #set ($verifObj = $userDoc.getObject($verifClass, true)) ## Generate a random string #set ($verifStr = $xwiki.generateRandomString(30)) ## If the class is correctly configured, the string should automatically be stored as a hash #set ($discard = $verifObj.set('verification', $verifStr)) #set ($discard = $userDoc.saveAsAuthor($msg.get('xe.admin.passwordReset.versionComment'), true)) ## Compose the verification URL #set ($passwordResetURL = $xwiki.getDocument('XWiki.ResetPasswordComplete').getExternalURL('view', "u=${userName}&v=${verifStr}")) ## Send an email; the variables will be retrieved from the velocity context #set ($mailResult = $xwiki.mailsender.sendMessageFromTemplate($xwiki.getXWikiPreference('admin_email', 'no-reply@xwiki.org'), $userEmail, $util.null, $util.null, $xcontext.language, 'XWiki.ResetPasswordMailContent', $util.null)) #if ($mailResult == 0) {{info}}$msg.get('xe.admin.passwordReset.emailSent', ["${escapetool.h}#${escapetool.xml($userEmail)}${escapetool.h}#"]){{/info}} #else {{error}}$msg.get('xe.admin.passwordReset.error.emailFailed'){{/error}} #end #end #end [[$msg.get('xe.admin.passwordReset.error.retry')>>$doc.fullName]] | [[$msg.get('xe.admin.passwordReset.error.recoverUsername')>>ForgotUsername]] | [[$msg.get('xe.admin.passwordReset.login')>>path:$xwiki.getURL('XWiki.XWikiLogin', 'login')]] #end ## Clear private variables, so that they cannot be accessed from the rest of the page (comments, panels...) #set ($verifStr = '') #set ($passwordResetURL = '') {{/velocity}}
Quick Links
L3D Calendar
Wiki Dashboard
Document Index
Blog
Sandbox