* Fixed E_NOTICE..
[mediawiki.git] / includes / SpecialConfirmemail.php
blobba419f259bdba119bfb77af0178759bc79eca22b
1 <?php
3 /**
4 * Special page allows users to request email confirmation message, and handles
5 * processing of the confirmation code when the link in the email is followed
7 * @addtogroup SpecialPage
8 * @author Brion Vibber
9 * @author Rob Church <robchur@gmail.com>
11 class EmailConfirmation extends UnlistedSpecialPage {
13 /**
14 * Constructor
16 public function __construct() {
17 parent::__construct( 'Confirmemail' );
20 /**
21 * Main execution point
23 * @param $code Confirmation code passed to the page
25 function execute( $code ) {
26 global $wgUser, $wgOut;
27 $this->setHeaders();
28 if( empty( $code ) ) {
29 if( $wgUser->isLoggedIn() ) {
30 if( User::isValidEmailAddr( $wgUser->getEmail() ) ) {
31 $this->showRequestForm();
32 } else {
33 $wgOut->addWikiText( wfMsg( 'confirmemail_noemail' ) );
35 } else {
36 $title = SpecialPage::getTitleFor( 'Userlogin' );
37 $self = SpecialPage::getTitleFor( 'Confirmemail' );
38 $skin = $wgUser->getSkin();
39 $llink = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $self->getPrefixedUrl() );
40 $wgOut->addHtml( wfMsgWikiHtml( 'confirmemail_needlogin', $llink ) );
42 } else {
43 $this->attemptConfirm( $code );
47 /**
48 * Show a nice form for the user to request a confirmation mail
50 function showRequestForm() {
51 global $wgOut, $wgUser, $wgLang, $wgRequest;
52 if( $wgRequest->wasPosted() && $wgUser->matchEditToken( $wgRequest->getText( 'token' ) ) ) {
53 $ok = $wgUser->sendConfirmationMail();
54 if ( WikiError::isError( $ok ) ) {
55 $wgOut->addWikiText( wfMsg( 'confirmemail_sendfailed', $ok->toString() ) );
56 } else {
57 $wgOut->addWikiText( wfMsg( 'confirmemail_sent' ) );
59 } else {
60 if( $wgUser->isEmailConfirmed() ) {
61 $time = $wgLang->timeAndDate( $wgUser->mEmailAuthenticated, true );
62 $wgOut->addWikiText( wfMsg( 'emailauthenticated', $time ) );
64 if( $wgUser->isEmailConfirmationPending() ) {
65 $wgOut->addWikiText( wfMsg( 'confirmemail_pending' ) );
67 $wgOut->addWikiText( wfMsg( 'confirmemail_text' ) );
68 $self = SpecialPage::getTitleFor( 'Confirmemail' );
69 $form = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) );
70 $form .= wfHidden( 'token', $wgUser->editToken() );
71 $form .= wfSubmitButton( wfMsgHtml( 'confirmemail_send' ) );
72 $form .= wfCloseElement( 'form' );
73 $wgOut->addHtml( $form );
77 /**
78 * Attempt to confirm the user's email address and show success or failure
79 * as needed; if successful, take the user to log in
81 * @param $code Confirmation code
83 function attemptConfirm( $code ) {
84 global $wgUser, $wgOut;
85 $user = User::newFromConfirmationCode( $code );
86 if( is_object( $user ) ) {
87 if( $user->confirmEmail() ) {
88 $message = $wgUser->isLoggedIn() ? 'confirmemail_loggedin' : 'confirmemail_success';
89 $wgOut->addWikiText( wfMsg( $message ) );
90 if( !$wgUser->isLoggedIn() ) {
91 $title = SpecialPage::getTitleFor( 'Userlogin' );
92 $wgOut->returnToMain( true, $title->getPrefixedText() );
94 } else {
95 $wgOut->addWikiText( wfMsg( 'confirmemail_error' ) );
97 } else {
98 $wgOut->addWikiText( wfMsg( 'confirmemail_invalid' ) );