Fixed Bug 40464 Placeholder attribute of searchInput element
[lhc/web/wiklou.git] / includes / specials / SpecialConfirmemail.php
1 <?php
2 /**
3 * Implements Special:Confirmemail and Special:Invalidateemail
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 request email confirmation message, and handles
26 * processing of the confirmation code when the link in the email is followed
27 *
28 * @ingroup SpecialPage
29 * @author Brion Vibber
30 * @author Rob Church <robchur@gmail.com>
31 */
32 class EmailConfirmation extends UnlistedSpecialPage {
33 public function __construct() {
34 parent::__construct( 'Confirmemail' );
35 }
36
37 /**
38 * Main execution point
39 *
40 * @param null|string $code Confirmation code passed to the page
41 */
42 function execute( $code ) {
43 $this->setHeaders();
44
45 $this->checkReadOnly();
46
47 if ( $code === null || $code === '' ) {
48 if ( $this->getUser()->isLoggedIn() ) {
49 if ( Sanitizer::validateEmail( $this->getUser()->getEmail() ) ) {
50 $this->showRequestForm();
51 } else {
52 $this->getOutput()->addWikiMsg( 'confirmemail_noemail' );
53 }
54 } else {
55 $llink = Linker::linkKnown(
56 SpecialPage::getTitleFor( 'Userlogin' ),
57 $this->msg( 'loginreqlink' )->escaped(),
58 array(),
59 array( 'returnto' => $this->getTitle()->getPrefixedText() )
60 );
61 $this->getOutput()->addHTML(
62 $this->msg( 'confirmemail_needlogin' )->rawParams( $llink )->parse()
63 );
64 }
65 } else {
66 $this->attemptConfirm( $code );
67 }
68 }
69
70 /**
71 * Show a nice form for the user to request a confirmation mail
72 */
73 function showRequestForm() {
74 $user = $this->getUser();
75 $out = $this->getOutput();
76
77 if ( $this->getRequest()->wasPosted() &&
78 $user->matchEditToken( $this->getRequest()->getText( 'token' ) )
79 ) {
80 $status = $user->sendConfirmationMail();
81 if ( $status->isGood() ) {
82 $out->addWikiMsg( 'confirmemail_sent' );
83 } else {
84 $out->addWikiText( $status->getWikiText( 'confirmemail_sendfailed' ) );
85 }
86 } else {
87 if ( $user->isEmailConfirmed() ) {
88 // date and time are separate parameters to facilitate localisation.
89 // $time is kept for backward compat reasons.
90 // 'emailauthenticated' is also used in SpecialPreferences.php
91 $lang = $this->getLanguage();
92 $emailAuthenticated = $user->getEmailAuthenticationTimestamp();
93 $time = $lang->userTimeAndDate( $emailAuthenticated, $user );
94 $d = $lang->userDate( $emailAuthenticated, $user );
95 $t = $lang->userTime( $emailAuthenticated, $user );
96 $out->addWikiMsg( 'emailauthenticated', $time, $d, $t );
97 }
98
99 if ( $user->isEmailConfirmationPending() ) {
100 $out->wrapWikiMsg(
101 "<div class=\"error mw-confirmemail-pending\">\n$1\n</div>",
102 'confirmemail_pending'
103 );
104 }
105
106 $out->addWikiMsg( 'confirmemail_text' );
107 $form = Html::openElement(
108 'form',
109 array( 'method' => 'post', 'action' => $this->getTitle()->getLocalURL() )
110 ) . "\n";
111 $form .= Html::hidden( 'token', $user->getEditToken() ) . "\n";
112 $form .= Xml::submitButton( $this->msg( 'confirmemail_send' )->text() ) . "\n";
113 $form .= Html::closeElement( 'form' ) . "\n";
114 $out->addHTML( $form );
115 }
116 }
117
118 /**
119 * Attempt to confirm the user's email address and show success or failure
120 * as needed; if successful, take the user to log in
121 *
122 * @param string $code Confirmation code
123 */
124 function attemptConfirm( $code ) {
125 $user = User::newFromConfirmationCode( $code );
126 if ( !is_object( $user ) ) {
127 $this->getOutput()->addWikiMsg( 'confirmemail_invalid' );
128 return;
129 }
130
131 $user->confirmEmail();
132 $user->saveSettings();
133 $message = $this->getUser()->isLoggedIn() ? 'confirmemail_loggedin' : 'confirmemail_success';
134 $this->getOutput()->addWikiMsg( $message );
135
136 if ( !$this->getUser()->isLoggedIn() ) {
137 $title = SpecialPage::getTitleFor( 'Userlogin' );
138 $this->getOutput()->returnToMain( true, $title );
139 }
140 }
141 }
142
143 /**
144 * Special page allows users to cancel an email confirmation using the e-mail
145 * confirmation code
146 *
147 * @ingroup SpecialPage
148 */
149 class EmailInvalidation extends UnlistedSpecialPage {
150 public function __construct() {
151 parent::__construct( 'Invalidateemail' );
152 }
153
154 function execute( $code ) {
155 $this->setHeaders();
156 $this->checkReadOnly();
157 $this->attemptInvalidate( $code );
158 }
159
160 /**
161 * Attempt to invalidate the user's email address and show success or failure
162 * as needed; if successful, link to main page
163 *
164 * @param string $code Confirmation code
165 */
166 function attemptInvalidate( $code ) {
167 $user = User::newFromConfirmationCode( $code );
168 if ( !is_object( $user ) ) {
169 $this->getOutput()->addWikiMsg( 'confirmemail_invalid' );
170 return;
171 }
172
173 $user->invalidateEmail();
174 $user->saveSettings();
175 $this->getOutput()->addWikiMsg( 'confirmemail_invalidated' );
176
177 if ( !$this->getUser()->isLoggedIn() ) {
178 $this->getOutput()->returnToMain();
179 }
180 }
181 }