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
21 * @ingroup SpecialPage
24 use MediaWiki\Auth\AuthManager
;
27 * Let users change their email address.
29 * @ingroup SpecialPage
31 class SpecialChangeEmail
extends FormSpecialPage
{
37 public function __construct() {
38 parent
::__construct( 'ChangeEmail', 'editmyprivateinfo' );
41 public function doesWrites() {
48 public function isListed() {
49 return AuthManager
::singleton()->allowsPropertyChange( 'emailaddress' );
53 * Main execution point
56 function execute( $par ) {
57 $this->checkLoginSecurityLevel();
59 $out = $this->getOutput();
60 $out->disallowUserJs();
62 parent
::execute( $par );
65 protected function checkExecutePermissions( User
$user ) {
67 if ( !AuthManager
::singleton()->allowsPropertyChange( 'emailaddress' ) ) {
68 throw new ErrorPageError( 'changeemail', 'cannotchangeemail' );
71 $this->requireLogin( 'changeemail-no-info' );
73 // This could also let someone check the current email address, so
74 // require both permissions.
75 if ( !$this->getUser()->isAllowed( 'viewmyprivateinfo' ) ) {
76 throw new PermissionsError( 'viewmyprivateinfo' );
79 parent
::checkExecutePermissions( $user );
82 protected function getFormFields() {
83 $user = $this->getUser();
88 'label-message' => 'username',
89 'default' => $user->getName(),
93 'label-message' => 'changeemail-oldemail',
94 'default' => $user->getEmail() ?
: $this->msg( 'changeemail-none' )->text(),
98 'label-message' => 'changeemail-newemail',
100 'help-message' => 'changeemail-newemail-help',
107 protected function getDisplayFormat() {
111 protected function alterForm( HTMLForm
$form ) {
112 $form->setId( 'mw-changeemail-form' );
113 $form->setTableId( 'mw-changeemail-table' );
114 $form->setSubmitTextMsg( 'changeemail-submit' );
115 $form->addHiddenFields( $this->getRequest()->getValues( 'returnto', 'returntoquery' ) );
117 $form->addHeaderText( $this->msg( 'changeemail-header' )->parseAsBlock() );
120 public function onSubmit( array $data ) {
121 $status = $this->attemptChange( $this->getUser(), $data['NewEmail'] );
123 $this->status
= $status;
128 public function onSuccess() {
129 $request = $this->getRequest();
131 $returnto = $request->getVal( 'returnto' );
132 $titleObj = $returnto !== null ? Title
::newFromText( $returnto ) : null;
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 // just show the link to go back
145 $this->getOutput()->addReturnTo( $titleObj, wfCgiToArray( $query ) );
151 * @param string $newaddr
154 private function attemptChange( User
$user, $newaddr ) {
155 $authManager = AuthManager
::singleton();
157 if ( $newaddr != '' && !Sanitizer
::validateEmail( $newaddr ) ) {
158 return Status
::newFatal( 'invalidemailaddress' );
161 if ( $newaddr === $user->getEmail() ) {
162 return Status
::newFatal( 'changeemail-nochange' );
165 $oldaddr = $user->getEmail();
166 $status = $user->setEmailWithConfirmation( $newaddr );
167 if ( !$status->isGood() ) {
171 Hooks
::run( 'PrefsEmailAudit', [ $user, $oldaddr, $newaddr ] );
173 $user->saveSettings();
174 MediaWiki\Auth\AuthManager
::callLegacyAuthPlugin( 'updateExternalDB', [ $user ] );
179 public function requiresUnblock() {
183 protected function getGroupName() {