From 396b28f3d881f5debd888ba9bb9b47c2d478a76f Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Mon, 15 Dec 2008 18:02:47 +0100 Subject: update to Mediawiki 1.13.3; some cleanups --- includes/SpecialConfirmemail.php | 104 --------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 includes/SpecialConfirmemail.php (limited to 'includes/SpecialConfirmemail.php') diff --git a/includes/SpecialConfirmemail.php b/includes/SpecialConfirmemail.php deleted file mode 100644 index c3aa53c2..00000000 --- a/includes/SpecialConfirmemail.php +++ /dev/null @@ -1,104 +0,0 @@ - - */ -class EmailConfirmation extends UnlistedSpecialPage { - - /** - * Constructor - */ - public function __construct() { - parent::__construct( 'Confirmemail' ); - } - - /** - * Main execution point - * - * @param $code Confirmation code passed to the page - */ - function execute( $code ) { - global $wgUser, $wgOut; - $this->setHeaders(); - if( empty( $code ) ) { - if( $wgUser->isLoggedIn() ) { - if( User::isValidEmailAddr( $wgUser->getEmail() ) ) { - $this->showRequestForm(); - } else { - $wgOut->addWikiMsg( 'confirmemail_noemail' ); - } - } else { - $title = SpecialPage::getTitleFor( 'Userlogin' ); - $self = SpecialPage::getTitleFor( 'Confirmemail' ); - $skin = $wgUser->getSkin(); - $llink = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $self->getPrefixedUrl() ); - $wgOut->addHtml( wfMsgWikiHtml( 'confirmemail_needlogin', $llink ) ); - } - } else { - $this->attemptConfirm( $code ); - } - } - - /** - * Show a nice form for the user to request a confirmation mail - */ - function showRequestForm() { - global $wgOut, $wgUser, $wgLang, $wgRequest; - if( $wgRequest->wasPosted() && $wgUser->matchEditToken( $wgRequest->getText( 'token' ) ) ) { - $ok = $wgUser->sendConfirmationMail(); - if ( WikiError::isError( $ok ) ) { - $wgOut->addWikiMsg( 'confirmemail_sendfailed', $ok->toString() ); - } else { - $wgOut->addWikiMsg( 'confirmemail_sent' ); - } - } else { - if( $wgUser->isEmailConfirmed() ) { - $time = $wgLang->timeAndDate( $wgUser->mEmailAuthenticated, true ); - $wgOut->addWikiMsg( 'emailauthenticated', $time ); - } - if( $wgUser->isEmailConfirmationPending() ) { - $wgOut->addWikiMsg( 'confirmemail_pending' ); - } - $wgOut->addWikiMsg( 'confirmemail_text' ); - $self = SpecialPage::getTitleFor( 'Confirmemail' ); - $form = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ); - $form .= wfHidden( 'token', $wgUser->editToken() ); - $form .= wfSubmitButton( wfMsgHtml( 'confirmemail_send' ) ); - $form .= wfCloseElement( 'form' ); - $wgOut->addHtml( $form ); - } - } - - /** - * Attempt to confirm the user's email address and show success or failure - * as needed; if successful, take the user to log in - * - * @param $code Confirmation code - */ - function attemptConfirm( $code ) { - global $wgUser, $wgOut; - $user = User::newFromConfirmationCode( $code ); - if( is_object( $user ) ) { - if( $user->confirmEmail() ) { - $message = $wgUser->isLoggedIn() ? 'confirmemail_loggedin' : 'confirmemail_success'; - $wgOut->addWikiMsg( $message ); - if( !$wgUser->isLoggedIn() ) { - $title = SpecialPage::getTitleFor( 'Userlogin' ); - $wgOut->returnToMain( true, $title->getPrefixedText() ); - } - } else { - $wgOut->addWikiMsg( 'confirmemail_error' ); - } - } else { - $wgOut->addWikiMsg( 'confirmemail_invalid' ); - } - } - -} - - -- cgit v1.2.3-54-g00ecf