MediaWiki  1.27.2
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  Profiler::instance()->getTransactionProfiler()->resetExpectations();
43 
44  $this->setHeaders();
45  $this->checkReadOnly();
46  $this->checkPermissions();
47  $this->attemptInvalidate( $code );
48  }
49 
56  function attemptInvalidate( $code ) {
58  if ( !is_object( $user ) ) {
59  $this->getOutput()->addWikiMsg( 'confirmemail_invalid' );
60 
61  return;
62  }
63 
64  $user->invalidateEmail();
65  $user->saveSettings();
66  $this->getOutput()->addWikiMsg( 'confirmemail_invalidated' );
67 
68  if ( !$this->getUser()->isLoggedIn() ) {
69  $this->getOutput()->returnToMain();
70  }
71  }
72 }
Shortcut to construct a special page which is unlisted by default.
static instance()
Singleton.
Definition: Profiler.php:60
getOutput()
Get the OutputPage being used for this instance.
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! ...
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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:762
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
static newFromConfirmationCode($code, $flags=0)
Factory method to fetch whichever user has a given email confirmation code.
Definition: User.php:610
getUser()
Shortcut to get the User executing this instance.
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
Special page allows users to cancel an email confirmation using the e-mail confirmation code...
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.