Merge "Message::inLanguage() shouldn't unstub StubUserLang"
[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 public 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 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 getDisplayFormat() {
110 return 'vform';
111 }
112
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' ) );
118 }
119
120 public function onSubmit( array $data ) {
121 $password = isset( $data['Password'] ) ? $data['Password'] : null;
122 $status = $this->attemptChange( $this->getUser(), $password, $data['NewEmail'] );
123
124 $this->status = $status;
125
126 return $status;
127 }
128
129 public function onSuccess() {
130 $request = $this->getRequest();
131
132 $returnto = $request->getVal( 'returnto' );
133 $titleObj = $returnto !== null ? Title::newFromText( $returnto ) : null;
134 if ( !$titleObj instanceof Title ) {
135 $titleObj = Title::newMainPage();
136 }
137 $query = $request->getVal( 'returntoquery' );
138
139 if ( $this->status->value === true ) {
140 $this->getOutput()->redirect( $titleObj->getFullURL( $query ) );
141 } elseif ( $this->status->value === 'eauth' ) {
142 # Notify user that a confirmation email has been sent...
143 $this->getOutput()->wrapWikiMsg( "<div class='error' style='clear: both;'>\n$1\n</div>",
144 'eauthentsent', $this->getUser()->getName() );
145 // just show the link to go back
146 $this->getOutput()->addReturnTo( $titleObj, wfCgiToArray( $query ) );
147 }
148 }
149
150 /**
151 * @param User $user
152 * @param string $pass
153 * @param string $newaddr
154 * @return Status
155 */
156 private function attemptChange( User $user, $pass, $newaddr ) {
157 global $wgAuth;
158
159 if ( $newaddr != '' && !Sanitizer::validateEmail( $newaddr ) ) {
160 return Status::newFatal( 'invalidemailaddress' );
161 }
162
163 $throttleCount = LoginForm::incLoginThrottle( $user->getName() );
164 if ( $throttleCount === true ) {
165 $lang = $this->getLanguage();
166 $throttleInfo = $this->getConfig()->get( 'PasswordAttemptThrottle' );
167 return Status::newFatal(
168 'changeemail-throttled',
169 $lang->formatDuration( $throttleInfo['seconds'] )
170 );
171 }
172
173 if ( $this->getConfig()->get( 'RequirePasswordforEmailChange' )
174 && !$user->checkTemporaryPassword( $pass )
175 && !$user->checkPassword( $pass )
176 ) {
177 return Status::newFatal( 'wrongpassword' );
178 }
179
180 if ( $throttleCount ) {
181 LoginForm::clearLoginThrottle( $user->getName() );
182 }
183
184 $oldaddr = $user->getEmail();
185 $status = $user->setEmailWithConfirmation( $newaddr );
186 if ( !$status->isGood() ) {
187 return $status;
188 }
189
190 Hooks::run( 'PrefsEmailAudit', array( $user, $oldaddr, $newaddr ) );
191
192 $user->saveSettings();
193
194 $wgAuth->updateExternalDB( $user );
195
196 return $status;
197 }
198
199 public function requiresUnblock() {
200 return false;
201 }
202
203 protected function getGroupName() {
204 return 'users';
205 }
206 }