Do not insert page titles into querycache.qc_value
[lhc/web/wiklou.git] / includes / specials / SpecialPasswordReset.php
1 <?php
2 /**
3 * Implements Special:PasswordReset
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 use MediaWiki\MediaWikiServices;
25
26 /**
27 * Special page for requesting a password reset email.
28 *
29 * Requires the TemporaryPasswordPrimaryAuthenticationProvider and the
30 * EmailNotificationSecondaryAuthenticationProvider (or something providing equivalent
31 * functionality) to be enabled.
32 *
33 * @ingroup SpecialPage
34 */
35 class SpecialPasswordReset extends FormSpecialPage {
36 /** @var PasswordReset */
37 private $passwordReset = null;
38
39 /**
40 * @var Status
41 */
42 private $result;
43
44 /**
45 * @var string $method Identifies which password reset field was specified by the user.
46 */
47 private $method;
48
49 public function __construct() {
50 parent::__construct( 'PasswordReset', 'editmyprivateinfo' );
51 }
52
53 private function getPasswordReset() {
54 if ( $this->passwordReset === null ) {
55 $this->passwordReset = MediaWikiServices::getInstance()->getPasswordReset();
56 }
57 return $this->passwordReset;
58 }
59
60 public function doesWrites() {
61 return true;
62 }
63
64 public function userCanExecute( User $user ) {
65 return $this->getPasswordReset()->isAllowed( $user )->isGood();
66 }
67
68 public function checkExecutePermissions( User $user ) {
69 $status = Status::wrap( $this->getPasswordReset()->isAllowed( $user ) );
70 if ( !$status->isGood() ) {
71 throw new ErrorPageError( 'internalerror', $status->getMessage() );
72 }
73
74 parent::checkExecutePermissions( $user );
75 }
76
77 protected function getFormFields() {
78 $resetRoutes = $this->getConfig()->get( 'PasswordResetRoutes' );
79 $a = [];
80 if ( isset( $resetRoutes['username'] ) && $resetRoutes['username'] ) {
81 $a['Username'] = [
82 'type' => 'text',
83 'default' => $this->getRequest()->getSession()->suggestLoginUsername(),
84 'label-message' => 'passwordreset-username',
85 ];
86
87 if ( $this->getUser()->isLoggedIn() ) {
88 $a['Username']['default'] = $this->getUser()->getName();
89 }
90 }
91
92 if ( isset( $resetRoutes['email'] ) && $resetRoutes['email'] ) {
93 $a['Email'] = [
94 'type' => 'email',
95 'label-message' => 'passwordreset-email',
96 ];
97 }
98
99 return $a;
100 }
101
102 protected function getDisplayFormat() {
103 return 'ooui';
104 }
105
106 public function alterForm( HTMLForm $form ) {
107 $resetRoutes = $this->getConfig()->get( 'PasswordResetRoutes' );
108
109 $form->setSubmitDestructive();
110
111 $form->addHiddenFields( $this->getRequest()->getValues( 'returnto', 'returntoquery' ) );
112
113 $i = 0;
114 if ( isset( $resetRoutes['username'] ) && $resetRoutes['username'] ) {
115 $i++;
116 }
117 if ( isset( $resetRoutes['email'] ) && $resetRoutes['email'] ) {
118 $i++;
119 }
120
121 $message = ( $i > 1 ) ? 'passwordreset-text-many' : 'passwordreset-text-one';
122
123 $form->setHeaderText( $this->msg( $message, $i )->parseAsBlock() );
124 $form->setSubmitTextMsg( 'mailmypassword' );
125 }
126
127 /**
128 * Process the form. At this point we know that the user passes all the criteria in
129 * userCanExecute(), and if the data array contains 'Username', etc, then Username
130 * resets are allowed.
131 * @param array $data
132 * @throws MWException
133 * @throws ThrottledError|PermissionsError
134 * @return Status
135 */
136 public function onSubmit( array $data ) {
137 $username = $data['Username'] ?? null;
138 $email = $data['Email'] ?? null;
139
140 $this->method = $username ? 'username' : 'email';
141 $this->result = Status::wrap(
142 $this->getPasswordReset()->execute( $this->getUser(), $username, $email ) );
143
144 if ( $this->result->hasMessage( 'actionthrottledtext' ) ) {
145 throw new ThrottledError;
146 }
147
148 return $this->result;
149 }
150
151 public function onSuccess() {
152 if ( $this->method === 'email' ) {
153 $this->getOutput()->addWikiMsg( 'passwordreset-emailsentemail' );
154 } else {
155 $this->getOutput()->addWikiMsg( 'passwordreset-emailsentusername' );
156 }
157
158 $this->getOutput()->returnToMain();
159 }
160
161 /**
162 * Hide the password reset page if resets are disabled.
163 * @return bool
164 */
165 public function isListed() {
166 if ( $this->getPasswordReset()->isAllowed( $this->getUser() )->isGood() ) {
167 return parent::isListed();
168 }
169
170 return false;
171 }
172
173 protected function getGroupName() {
174 return 'users';
175 }
176 }