Followup cf5f641: pass $params by reference again
[lhc/web/wiklou.git] / includes / specials / SpecialChangeEmail.php
1 <?php
2 /**
3 * Implements Special:ChangeEmail
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Let users change their email address.
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialChangeEmail extends FormSpecialPage {
30 /**
31 * @var Status
32 */
33 private $status;
34
35 public function __construct() {
36 parent::__construct( 'ChangeEmail', 'editmyprivateinfo' );
37 }
38
39 /**
40 * @return bool
41 */
42 function isListed() {
43 global $wgAuth;
44
45 return $wgAuth->allowPropChange( 'emailaddress' );
46 }
47
48 /**
49 * Main execution point
50 * @param string $par
51 */
52 function execute( $par ) {
53 $out = $this->getOutput();
54 $out->disallowUserJs();
55 $out->addModules( 'mediawiki.special.changeemail' );
56
57 return parent::execute( $par );
58 }
59
60 protected function checkExecutePermissions( User $user ) {
61 global $wgAuth;
62
63 if ( !$wgAuth->allowPropChange( 'emailaddress' ) ) {
64 throw new ErrorPageError( 'changeemail', 'cannotchangeemail' );
65 }
66
67 $this->requireLogin( 'changeemail-no-info' );
68
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' );
73 }
74
75 parent::checkExecutePermissions( $user );
76 }
77
78 protected function getFormFields() {
79 $user = $this->getUser();
80
81 $fields = array(
82 'Name' => array(
83 'type' => 'info',
84 'label-message' => 'username',
85 'default' => $user->getName(),
86 ),
87 'OldEmail' => array(
88 'type' => 'info',
89 'label-message' => 'changeemail-oldemail',
90 'default' => $user->getEmail() ?: $this->msg( 'changeemail-none' )->text(),
91 ),
92 'NewEmail' => array(
93 'type' => 'email',
94 'label-message' => 'changeemail-newemail',
95 ),
96 );
97
98 if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' ) ) {
99 $fields['Password'] = array(
100 'type' => 'password',
101 'label-message' => 'changeemail-password',
102 'autofocus' => true,
103 );
104 }
105
106 return $fields;
107 }
108
109 protected function alterForm( HTMLForm $form ) {
110 $form->setDisplayFormat( 'vform' );
111 $form->setId( 'mw-changeemail-form' );
112 $form->setTableId( 'mw-changeemail-table' );
113 $form->setWrapperLegend( false );
114 $form->setSubmitTextMsg( 'changeemail-submit' );
115 $form->addHiddenFields( $this->getRequest()->getValues( 'returnto', 'returntoquery' ) );
116 }
117
118 public function onSubmit( array $data ) {
119 $password = isset( $data['Password'] ) ? $data['Password'] : null;
120 $status = $this->attemptChange( $this->getUser(), $password, $data['NewEmail'] );
121
122 $this->status = $status;
123
124 return $status;
125 }
126
127 public function onSuccess() {
128 $request = $this->getRequest();
129
130 $titleObj = Title::newFromText( $request->getVal( 'returnto' ) );
131 if ( !$titleObj instanceof Title ) {
132 $titleObj = Title::newMainPage();
133 }
134 $query = $request->getVal( 'returntoquery' );
135
136 if ( $this->status->value === true ) {
137 $this->getOutput()->redirect( $titleObj->getFullURL( $query ) );
138 } elseif ( $this->status->value === 'eauth' ) {
139 # Notify user that a confirmation email has been sent...
140 $this->getOutput()->wrapWikiMsg( "<div class='error' style='clear: both;'>\n$1\n</div>",
141 'eauthentsent', $this->getUser()->getName() );
142 $this->getOutput()->addReturnTo( $titleObj, wfCgiToArray( $query ) ); // just show the link to go back
143 }
144 }
145
146 /**
147 * @param User $user
148 * @param string $pass
149 * @param string $newaddr
150 * @return Status
151 */
152 protected function attemptChange( User $user, $pass, $newaddr ) {
153 global $wgAuth;
154
155 if ( $newaddr != '' && !Sanitizer::validateEmail( $newaddr ) ) {
156 return Status::newFatal( 'invalidemailaddress' );
157 }
158
159 $throttleCount = LoginForm::incLoginThrottle( $user->getName() );
160 if ( $throttleCount === true ) {
161 $lang = $this->getLanguage();
162 $throttleInfo = $this->getConfig()->get( 'PasswordAttemptThrottle' );
163 return Status::newFatal(
164 'changeemail-throttled',
165 $lang->formatDuration( $throttleInfo['seconds'] )
166 );
167 }
168
169 if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' )
170 && !$user->checkTemporaryPassword( $pass )
171 && !$user->checkPassword( $pass )
172 ) {
173 return Status::newFatal( 'wrongpassword' );
174 }
175
176 if ( $throttleCount ) {
177 LoginForm::clearLoginThrottle( $user->getName() );
178 }
179
180 $oldaddr = $user->getEmail();
181 $status = $user->setEmailWithConfirmation( $newaddr );
182 if ( !$status->isGood() ) {
183 return $status;
184 }
185
186 Hooks::run( 'PrefsEmailAudit', array( $user, $oldaddr, $newaddr ) );
187
188 $user->saveSettings();
189
190 $wgAuth->updateExternalDB( $user );
191
192 return $status;
193 }
194
195 public function requiresUnblock() {
196 return false;
197 }
198
199 protected function getGroupName() {
200 return 'users';
201 }
202 }