allowPropChange( 'emailaddress' ); } /** * Main execution point * @param string $par */ function execute( $par ) { $out = $this->getOutput(); $out->disallowUserJs(); $out->addModules( 'mediawiki.special.changeemail' ); parent::execute( $par ); } protected function checkExecutePermissions( User $user ) { global $wgAuth; if ( !$wgAuth->allowPropChange( 'emailaddress' ) ) { throw new ErrorPageError( 'changeemail', 'cannotchangeemail' ); } $this->requireLogin( 'changeemail-no-info' ); // This could also let someone check the current email address, so // require both permissions. if ( !$this->getUser()->isAllowed( 'viewmyprivateinfo' ) ) { throw new PermissionsError( 'viewmyprivateinfo' ); } parent::checkExecutePermissions( $user ); } protected function getFormFields() { $user = $this->getUser(); $fields = array( 'Name' => array( 'type' => 'info', 'label-message' => 'username', 'default' => $user->getName(), ), 'OldEmail' => array( 'type' => 'info', 'label-message' => 'changeemail-oldemail', 'default' => $user->getEmail() ?: $this->msg( 'changeemail-none' )->text(), ), 'NewEmail' => array( 'type' => 'email', 'label-message' => 'changeemail-newemail', 'autofocus' => true ), ); if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' ) ) { $fields['Password'] = array( 'type' => 'password', 'label-message' => 'changeemail-password' ); } return $fields; } protected function getDisplayFormat() { return 'ooui'; } protected function alterForm( HTMLForm $form ) { $form->setId( 'mw-changeemail-form' ); $form->setTableId( 'mw-changeemail-table' ); $form->setSubmitTextMsg( 'changeemail-submit' ); $form->addHiddenFields( $this->getRequest()->getValues( 'returnto', 'returntoquery' ) ); } public function onSubmit( array $data ) { $password = isset( $data['Password'] ) ? $data['Password'] : null; $status = $this->attemptChange( $this->getUser(), $password, $data['NewEmail'] ); $this->status = $status; return $status; } public function onSuccess() { $request = $this->getRequest(); $returnto = $request->getVal( 'returnto' ); $titleObj = $returnto !== null ? Title::newFromText( $returnto ) : null; if ( !$titleObj instanceof Title ) { $titleObj = Title::newMainPage(); } $query = $request->getVal( 'returntoquery' ); if ( $this->status->value === true ) { $this->getOutput()->redirect( $titleObj->getFullURL( $query ) ); } elseif ( $this->status->value === 'eauth' ) { # Notify user that a confirmation email has been sent... $this->getOutput()->wrapWikiMsg( "
\n$1\n
", 'eauthentsent', $this->getUser()->getName() ); // just show the link to go back $this->getOutput()->addReturnTo( $titleObj, wfCgiToArray( $query ) ); } } /** * @param User $user * @param string $pass * @param string $newaddr * @return Status */ private function attemptChange( User $user, $pass, $newaddr ) { global $wgAuth; if ( $newaddr != '' && !Sanitizer::validateEmail( $newaddr ) ) { return Status::newFatal( 'invalidemailaddress' ); } $throttleCount = LoginForm::incLoginThrottle( $user->getName() ); if ( $throttleCount === true ) { $lang = $this->getLanguage(); $throttleInfo = $this->getConfig()->get( 'PasswordAttemptThrottle' ); return Status::newFatal( 'changeemail-throttled', $lang->formatDuration( $throttleInfo['seconds'] ) ); } if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' ) && !$user->checkTemporaryPassword( $pass ) && !$user->checkPassword( $pass ) ) { return Status::newFatal( 'wrongpassword' ); } if ( $throttleCount ) { LoginForm::clearLoginThrottle( $user->getName() ); } $oldaddr = $user->getEmail(); $status = $user->setEmailWithConfirmation( $newaddr ); if ( !$status->isGood() ) { return $status; } Hooks::run( 'PrefsEmailAudit', array( $user, $oldaddr, $newaddr ) ); $user->saveSettings(); $wgAuth->updateExternalDB( $user ); return $status; } public function requiresUnblock() { return false; } protected function getGroupName() { return 'users'; } }