Allgemeine Aktionen:
Anmelden
Registrieren
Start
▼
:
Wiki Verzeichnis
»
Bereich:
XWiki
»
Seite:
ResetPassword
default
Aktionen:
Exportieren
▼
:
Als PDF exportieren
Als RTF exportieren
Als HTML exportieren
Weitere Aktionen
▼
:
Druckvorschau
Zeige den Quellcode
Willkommen bei bytebang
»
Kennwort vergessen?
Wiki-Quellcode von
Kennwort vergessen?
Zuletzt geändert von
Administrator
am 2014/06/29 19:28
Inhalt
·
Anhänge
(0)
·
Information
Zeilennummern anzeigen
{{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 {{translation key="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">$services.localization.render('xe.admin.passwordReset.username.label')</label> <input type="text" id="u" name="u"/> <span class="buttonwrapper"><input type="submit" value="$services.localization.render('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}}$services.localization.render('xe.admin.passwordReset.error.noUser', ["//${escapetool.xml($userName)}//"]){{/warning}} #elseif ($userDoc.getObject('XWiki.LDAPProfileClass')) {{warning}}$services.localization.render('xe.admin.passwordReset.error.ldapUser', ["//${escapetool.xml($userName)}//"]){{/warning}} #else #set ($userEmail = $userObj.getProperty('email').value) #if ("$!userEmail" == '') {{error}}{{translation key="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 = $util.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($services.localization.render('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@${request.serverName}"), $userEmail, $NULL, $NULL, $xcontext.language, 'XWiki.ResetPasswordMailContent', {})) #if ($mailResult == 0) {{info}}$services.localization.render('xe.admin.passwordReset.emailSent', ["${escapetool.h}#$userDoc.display('email', $userObj)${escapetool.h}#"]){{/info}} #else {{error}}{{translation key="xe.admin.passwordReset.error.emailFailed"/}}{{/error}} #end #end #end [[{{translation key="xe.admin.passwordReset.error.retry"/}}>>$doc.fullName]] | [[{{translation key="xe.admin.passwordReset.error.recoverUsername"/}}>>ForgotUsername]] | [[{{translation key="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}}