MediaWiki  1.29.2
EmailNotificationSecondaryAuthenticationProvider.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Auth;
4 
5 use Config;
6 
15 {
18 
24  public function __construct( $params = [] ) {
25  if ( isset( $params['sendConfirmationEmail'] ) ) {
26  $this->sendConfirmationEmail = (bool)$params['sendConfirmationEmail'];
27  }
28  }
29 
30  public function setConfig( Config $config ) {
31  parent::setConfig( $config );
32 
33  if ( $this->sendConfirmationEmail === null ) {
34  $this->sendConfirmationEmail = $this->config->get( 'EnableEmail' )
35  && $this->config->get( 'EmailAuthentication' );
36  }
37  }
38 
40  return [];
41  }
42 
43  public function beginSecondaryAuthentication( $user, array $reqs ) {
45  }
46 
47  public function beginSecondaryAccountCreation( $user, $creator, array $reqs ) {
48  if (
49  $this->sendConfirmationEmail
50  && $user->getEmail()
51  && !$this->manager->getAuthenticationSessionData( 'no-email' )
52  ) {
53  // TODO show 'confirmemail_oncreate'/'confirmemail_sendfailed' message
54  wfGetDB( DB_MASTER )->onTransactionIdle(
55  function () use ( $user ) {
56  $user = $user->getInstanceForUpdate();
57  $status = $user->sendConfirmationMail();
58  $user->saveSettings();
59  if ( !$status->isGood() ) {
60  $this->logger->warning( 'Could not send confirmation email: ' .
61  $status->getWikiText( false, false, 'en' ) );
62  }
63  },
64  __METHOD__
65  );
66  }
67 
69  }
70 }
MediaWiki\$action
String $action
Cache what action this request is.
Definition: MediaWiki.php:47
MediaWiki\Auth\AbstractSecondaryAuthenticationProvider
A base class that implements some of the boilerplate for a SecondaryAuthenticationProvider.
Definition: AbstractSecondaryAuthenticationProvider.php:30
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider\getAuthenticationRequests
getAuthenticationRequests( $action, array $options)
Return the applicable list of AuthenticationRequests.
Definition: EmailNotificationSecondaryAuthenticationProvider.php:39
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider\beginSecondaryAuthentication
beginSecondaryAuthentication( $user, array $reqs)
Start an authentication flow.
Definition: EmailNotificationSecondaryAuthenticationProvider.php:43
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$user
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 account $user
Definition: hooks.txt:246
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider\$sendConfirmationEmail
bool $sendConfirmationEmail
Definition: EmailNotificationSecondaryAuthenticationProvider.php:17
$params
$params
Definition: styleTest.css.php:40
php
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
MediaWiki\Auth\AuthenticationResponse\newAbstain
static newAbstain()
Definition: AuthenticationResponse.php:170
Config
Interface for configuration instances.
Definition: Config.php:28
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
DB_MASTER
const DB_MASTER
Definition: defines.php:26
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider\__construct
__construct( $params=[])
Definition: EmailNotificationSecondaryAuthenticationProvider.php:24
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider
Handles email notification / email address confirmation for account creation.
Definition: EmailNotificationSecondaryAuthenticationProvider.php:13
MediaWiki\Auth
Definition: AbstractAuthenticationProvider.php:22
MediaWiki\Auth\AuthenticationResponse\newPass
static newPass( $username=null)
Definition: AuthenticationResponse.php:134
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider\beginSecondaryAccountCreation
beginSecondaryAccountCreation( $user, $creator, array $reqs)
Start an account creation flow.
Definition: EmailNotificationSecondaryAuthenticationProvider.php:47
MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider\setConfig
setConfig(Config $config)
Set configuration.
Definition: EmailNotificationSecondaryAuthenticationProvider.php:30
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1049
MediaWiki\Auth\AbstractAuthenticationProvider\$config
Config $config
Definition: AbstractAuthenticationProvider.php:38
array
the array() calling protocol came about after MediaWiki 1.4rc1.