* (bug 6976) Add namespace and direction classes to classic skins
[mediawiki.git] / includes / SpecialConfirmemail.php
blob725676099b0d3f37d569c095ce03a2101904aca7
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 * @package MediaWiki
8 * @subpackage Special pages
9 * @author Rob Church <robchur@gmail.com>
12 /**
13 * Main execution point
15 * @param $par Parameters passed to the page
17 function wfSpecialConfirmemail( $par ) {
18 $form = new EmailConfirmation();
19 $form->execute( $par );
22 class EmailConfirmation extends SpecialPage {
24 /**
25 * Main execution point
27 * @param $code Confirmation code passed to the page
29 function execute( $code ) {
30 global $wgUser, $wgOut;
31 if( empty( $code ) ) {
32 if( $wgUser->isLoggedIn() ) {
33 if( User::isValidEmailAddr( $wgUser->getEmail() ) ) {
34 $this->showRequestForm();
35 } else {
36 $wgOut->addWikiText( wfMsg( 'confirmemail_noemail' ) );
38 } else {
39 $title = Title::makeTitle( NS_SPECIAL, 'Userlogin' );
40 $self = Title::makeTitle( NS_SPECIAL, 'Confirmemail' );
41 $skin = $wgUser->getSkin();
42 $llink = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $self->getPrefixedUrl() );
43 $wgOut->addHtml( wfMsgWikiHtml( 'confirmemail_needlogin', $llink ) );
45 } else {
46 $this->attemptConfirm( $code );
50 /**
51 * Show a nice form for the user to request a confirmation mail
53 function showRequestForm() {
54 global $wgOut, $wgUser, $wgLang, $wgRequest;
55 if( $wgRequest->wasPosted() && $wgUser->matchEditToken( $wgRequest->getText( 'token' ) ) ) {
56 $ok = $wgUser->sendConfirmationMail();
57 $message = WikiError::isError( $ok ) ? 'confirmemail_sendfailed' : 'confirmemail_sent';
58 $wgOut->addWikiText( wfMsg( $message ) );
59 } else {
60 if( $wgUser->isEmailConfirmed() ) {
61 $time = $wgLang->timeAndDate( $wgUser->mEmailAuthenticated, true );
62 $wgOut->addWikiText( wfMsg( 'emailauthenticated', $time ) );
64 $wgOut->addWikiText( wfMsg( 'confirmemail_text' ) );
65 $self = Title::makeTitle( NS_SPECIAL, 'Confirmemail' );
66 $form = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) );
67 $form .= wfHidden( 'token', $wgUser->editToken() );
68 $form .= wfSubmitButton( wfMsgHtml( 'confirmemail_send' ) );
69 $form .= wfCloseElement( 'form' );
70 $wgOut->addHtml( $form );
74 /**
75 * Attempt to confirm the user's email address and show success or failure
76 * as needed; if successful, take the user to log in
78 * @param $code Confirmation code
80 function attemptConfirm( $code ) {
81 global $wgUser, $wgOut;
82 $user = User::newFromConfirmationCode( $code );
83 if( is_object( $user ) ) {
84 if( $user->confirmEmail() ) {
85 $message = $wgUser->isLoggedIn() ? 'confirmemail_loggedin' : 'confirmemail_success';
86 $wgOut->addWikiText( wfMsg( $message ) );
87 if( !$wgUser->isLoggedIn() ) {
88 $title = Title::makeTitle( NS_SPECIAL, 'Userlogin' );
89 $wgOut->returnToMain( true, $title->getPrefixedText() );
91 } else {
92 $wgOut->addWikiText( wfMsg( 'confirmemail_error' ) );
94 } else {
95 $wgOut->addWikiText( wfMsg( 'confirmemail_invalid' ) );