MediaWiki REL1_33
SpecialEmailInvalidate.php
Go to the documentation of this file.
1<?php
31 public function __construct() {
32 parent::__construct( 'Invalidateemail', 'editmyprivateinfo' );
33 }
34
35 public function doesWrites() {
36 return true;
37 }
38
39 function execute( $code ) {
40 // Ignore things like master queries/connections on GET requests.
41 // It's very convenient to just allow formless link usage.
42 $trxProfiler = Profiler::instance()->getTransactionProfiler();
43
44 $this->setHeaders();
45 $this->checkReadOnly();
46 $this->checkPermissions();
47
48 $old = $trxProfiler->setSilenced( true );
49 $this->attemptInvalidate( $code );
50 $trxProfiler->setSilenced( $old );
51 }
52
59 private function attemptInvalidate( $code ) {
60 $user = User::newFromConfirmationCode( $code, User::READ_LATEST );
61 if ( !is_object( $user ) ) {
62 $this->getOutput()->addWikiMsg( 'confirmemail_invalid' );
63
64 return;
65 }
66
67 $user->invalidateEmail();
68 $user->saveSettings();
69 $this->getOutput()->addWikiMsg( 'confirmemail_invalidated' );
70
71 if ( !$this->getUser()->isLoggedIn() ) {
72 $this->getOutput()->returnToMain();
73 }
74 }
75}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Special page allows users to cancel an email confirmation using the e-mail confirmation code.
doesWrites()
Indicates whether this special page may perform database writes.
execute( $code)
Default execute method Checks user permissions.
attemptInvalidate( $code)
Attempt to invalidate the user's email address and show success or failure as needed; if successful,...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
Shortcut to construct a special page which is unlisted by default.
static newFromConfirmationCode( $code, $flags=0)
Factory method to fetch whichever user has a given email confirmation code.
Definition User.php:726
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:856