Merge "Removed unused and poorly supported time argument to BagOStuff::delete"
[mediawiki.git] / includes / specials / SpecialChangeEmail.php
blob674cbc8cee38eff18a251a520b326825afdf6da5
1 <?php
2 /**
3 * Implements Special:ChangeEmail
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup SpecialPage
24 /**
25 * Let users change their email address.
27 * @ingroup SpecialPage
29 class SpecialChangeEmail extends FormSpecialPage {
30 /**
31 * @var Status
33 private $status;
35 public function __construct() {
36 parent::__construct( 'ChangeEmail', 'editmyprivateinfo' );
39 /**
40 * @return bool
42 public function isListed() {
43 global $wgAuth;
45 return $wgAuth->allowPropChange( 'emailaddress' );
48 /**
49 * Main execution point
50 * @param string $par
52 function execute( $par ) {
53 $out = $this->getOutput();
54 $out->disallowUserJs();
55 $out->addModules( 'mediawiki.special.changeemail' );
57 parent::execute( $par );
60 protected function checkExecutePermissions( User $user ) {
61 global $wgAuth;
63 if ( !$wgAuth->allowPropChange( 'emailaddress' ) ) {
64 throw new ErrorPageError( 'changeemail', 'cannotchangeemail' );
67 $this->requireLogin( 'changeemail-no-info' );
69 // This could also let someone check the current email address, so
70 // require both permissions.
71 if ( !$this->getUser()->isAllowed( 'viewmyprivateinfo' ) ) {
72 throw new PermissionsError( 'viewmyprivateinfo' );
75 parent::checkExecutePermissions( $user );
78 protected function getFormFields() {
79 $user = $this->getUser();
81 $fields = array(
82 'Name' => array(
83 'type' => 'info',
84 'label-message' => 'username',
85 'default' => $user->getName(),
87 'OldEmail' => array(
88 'type' => 'info',
89 'label-message' => 'changeemail-oldemail',
90 'default' => $user->getEmail() ?: $this->msg( 'changeemail-none' )->text(),
92 'NewEmail' => array(
93 'type' => 'email',
94 'label-message' => 'changeemail-newemail',
98 if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' ) ) {
99 $fields['Password'] = array(
100 'type' => 'password',
101 'label-message' => 'changeemail-password',
102 'autofocus' => true,
106 return $fields;
109 protected function getDisplayFormat() {
110 return 'vform';
113 protected function alterForm( HTMLForm $form ) {
114 $form->setId( 'mw-changeemail-form' );
115 $form->setTableId( 'mw-changeemail-table' );
116 $form->setSubmitTextMsg( 'changeemail-submit' );
117 $form->addHiddenFields( $this->getRequest()->getValues( 'returnto', 'returntoquery' ) );
120 public function onSubmit( array $data ) {
121 $password = isset( $data['Password'] ) ? $data['Password'] : null;
122 $status = $this->attemptChange( $this->getUser(), $password, $data['NewEmail'] );
124 $this->status = $status;
126 return $status;
129 public function onSuccess() {
130 $request = $this->getRequest();
132 $titleObj = Title::newFromText( $request->getVal( 'returnto' ) );
133 if ( !$titleObj instanceof Title ) {
134 $titleObj = Title::newMainPage();
136 $query = $request->getVal( 'returntoquery' );
138 if ( $this->status->value === true ) {
139 $this->getOutput()->redirect( $titleObj->getFullURL( $query ) );
140 } elseif ( $this->status->value === 'eauth' ) {
141 # Notify user that a confirmation email has been sent...
142 $this->getOutput()->wrapWikiMsg( "<div class='error' style='clear: both;'>\n$1\n</div>",
143 'eauthentsent', $this->getUser()->getName() );
144 $this->getOutput()->addReturnTo( $titleObj, wfCgiToArray( $query ) ); // just show the link to go back
149 * @param User $user
150 * @param string $pass
151 * @param string $newaddr
152 * @return Status
154 private function attemptChange( User $user, $pass, $newaddr ) {
155 global $wgAuth;
157 if ( $newaddr != '' && !Sanitizer::validateEmail( $newaddr ) ) {
158 return Status::newFatal( 'invalidemailaddress' );
161 $throttleCount = LoginForm::incLoginThrottle( $user->getName() );
162 if ( $throttleCount === true ) {
163 $lang = $this->getLanguage();
164 $throttleInfo = $this->getConfig()->get( 'PasswordAttemptThrottle' );
165 return Status::newFatal(
166 'changeemail-throttled',
167 $lang->formatDuration( $throttleInfo['seconds'] )
171 if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' )
172 && !$user->checkTemporaryPassword( $pass )
173 && !$user->checkPassword( $pass )
175 return Status::newFatal( 'wrongpassword' );
178 if ( $throttleCount ) {
179 LoginForm::clearLoginThrottle( $user->getName() );
182 $oldaddr = $user->getEmail();
183 $status = $user->setEmailWithConfirmation( $newaddr );
184 if ( !$status->isGood() ) {
185 return $status;
188 Hooks::run( 'PrefsEmailAudit', array( $user, $oldaddr, $newaddr ) );
190 $user->saveSettings();
192 $wgAuth->updateExternalDB( $user );
194 return $status;
197 public function requiresUnblock() {
198 return false;
201 protected function getGroupName() {
202 return 'users';