Merge "Restore changes to WikiRevision that were lost in cdeba4cfc7c"
[lhc/web/wiklou.git] / includes / specials / SpecialEmailInvalidate.php
1 <?php
2 /**
3 * Implements Special:EmailInvalidation
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 * Special page allows users to cancel an email confirmation using the e-mail
26 * confirmation code
27 *
28 * @ingroup SpecialPage
29 */
30 class EmailInvalidation extends UnlistedSpecialPage {
31 public function __construct() {
32 parent::__construct( 'Invalidateemail', 'editmyprivateinfo' );
33 }
34
35 function execute( $code ) {
36 // Ignore things like master queries/connections on GET requests.
37 // It's very convenient to just allow formless link usage.
38 Profiler::instance()->getTransactionProfiler()->resetExpectations();
39
40 $this->setHeaders();
41 $this->checkReadOnly();
42 $this->checkPermissions();
43 $this->attemptInvalidate( $code );
44 }
45
46 /**
47 * Attempt to invalidate the user's email address and show success or failure
48 * as needed; if successful, link to main page
49 *
50 * @param string $code Confirmation code
51 */
52 function attemptInvalidate( $code ) {
53 $user = User::newFromConfirmationCode( $code, User::READ_LATEST );
54 if ( !is_object( $user ) ) {
55 $this->getOutput()->addWikiMsg( 'confirmemail_invalid' );
56
57 return;
58 }
59
60 $user->invalidateEmail();
61 $user->saveSettings();
62 $this->getOutput()->addWikiMsg( 'confirmemail_invalidated' );
63
64 if ( !$this->getUser()->isLoggedIn() ) {
65 $this->getOutput()->returnToMain();
66 }
67 }
68 }