execute( $par ); } class PasswordResetForm extends SpecialPage { function __construct( $name=null, $reset=null ) { if( $name !== null ) { $this->mName = $name; $this->mTemporaryPassword = $reset; } else { global $wgRequest; $this->mName = $wgRequest->getVal( 'wpName' ); $this->mTemporaryPassword = $wgRequest->getVal( 'wpPassword' ); } } /** * Main execution point */ function execute( $par='' ) { global $wgUser, $wgAuth, $wgOut, $wgRequest; if( !$wgAuth->allowPasswordChange() ) { $this->error( wfMsg( 'resetpass_forbidden' ) ); return; } if( $this->mName === null && !$wgRequest->wasPosted() ) { $this->error( wfMsg( 'resetpass_missing' ) ); return; } if( $wgRequest->wasPosted() && $wgUser->matchEditToken( $wgRequest->getVal( 'token' ) ) ) { $newpass = $wgRequest->getVal( 'wpNewPassword' ); $retype = $wgRequest->getVal( 'wpRetype' ); try { $this->attemptReset( $newpass, $retype ); $wgOut->addWikiText( wfMsg( 'resetpass_success' ) ); $data = array( 'action' => 'submitlogin', 'wpName' => $this->mName, 'wpPassword' => $newpass, 'returnto' => $wgRequest->getVal( 'returnto' ), ); if( $wgRequest->getCheck( 'wpRemember' ) ) { $data['wpRemember'] = 1; } $login = new LoginForm( new FauxRequest( $data, true ) ); $login->execute(); return; } catch( PasswordError $e ) { $this->error( $e->getMessage() ); } } $this->showForm(); } function error( $msg ) { global $wgOut; $wgOut->addHtml( '
' . htmlspecialchars( $msg ) . '
' ); } function showForm() { global $wgOut, $wgUser, $wgLang, $wgRequest; $self = SpecialPage::getTitleFor( 'Resetpass' ); $form = '
' . wfOpenElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ) . '

' . wfMsgHtml( 'resetpass_header' ) . '

' . '
' . wfMsgExt( 'resetpass_text', array( 'parse' ) ) . '
' . '' . wfHidden( 'token', $wgUser->editToken() ) . wfHidden( 'wpName', $this->mName ) . wfHidden( 'wpPassword', $this->mTemporaryPassword ) . wfHidden( 'returnto', $wgRequest->getVal( 'returnto' ) ) . $this->pretty( array( array( 'wpName', 'username', 'text', $this->mName ), array( 'wpNewPassword', 'newpassword', 'password', '' ), array( 'wpRetype', 'yourpasswordagain', 'password', '' ), ) ) . '' . '' . '' . '' . '' . '' . '' . '' . '
' . Xml::checkLabel( wfMsg( 'remembermypassword' ), 'wpRemember', 'wpRemember', $wgRequest->getCheck( 'wpRemember' ) ) . '
' . wfSubmitButton( wfMsgHtml( 'resetpass_submit' ) ) . '
' . wfCloseElement( 'form' ) . '
'; $wgOut->addHtml( $form ); } function pretty( $fields ) { $out = ''; foreach( $fields as $list ) { list( $name, $label, $type, $value ) = $list; if( $type == 'text' ) { $field = '' . htmlspecialchars( $value ) . ''; } else { $field = Xml::input( $name, 20, $value, array( 'id' => $name, 'type' => $type ) ); } $out .= ''; $out .= ''; $out .= Xml::label( wfMsg( $label ), $name ); $out .= ''; $out .= ''; $out .= $field; $out .= ''; $out .= ''; } return $out; } /** * @throws PasswordError */ function attemptReset( $newpass, $retype ) { $user = User::newFromName( $this->mName ); if( $user->isAnon() ) { throw new PasswordError( 'no such user' ); } if( !$user->checkTemporaryPassword( $this->mTemporaryPassword ) ) { throw new PasswordError( wfMsg( 'resetpass_bad_temporary' ) ); } if( $newpass !== $retype ) { throw new PasswordError( wfMsg( 'badretype' ) ); } $user->setPassword( $newpass ); $user->saveSettings(); } } ?>