MediaWiki  1.27.2
SpecialUserLogin.php
Go to the documentation of this file.
1 <?php
27 
34  protected static $allowedActions = [
35  AuthManager::ACTION_LOGIN,
36  AuthManager::ACTION_LOGIN_CONTINUE
37  ];
38 
39  protected static $messages = [
40  'authform-newtoken' => 'nocookiesforlogin',
41  'authform-notoken' => 'sessionfailure',
42  'authform-wrongtoken' => 'sessionfailure',
43  ];
44 
45  public function __construct() {
46  parent::__construct( 'Userlogin' );
47  }
48 
49  public function doesWrites() {
50  return true;
51  }
52 
53  protected function getLoginSecurityLevel() {
54  return false;
55  }
56 
57  protected function getDefaultAction( $subPage ) {
58  return AuthManager::ACTION_LOGIN;
59  }
60 
61  public function getDescription() {
62  return $this->msg( 'login' )->text();
63  }
64 
65  public function setHeaders() {
66  // override the page title if we are doing a forced reauthentication
67  parent::setHeaders();
68  if ( $this->securityLevel && $this->getUser()->isLoggedIn() ) {
69  $this->getOutput()->setPageTitle( $this->msg( 'login-security' ) );
70  }
71  }
72 
73  protected function isSignup() {
74  return false;
75  }
76 
77  protected function beforeExecute( $subPage ) {
78  if ( $subPage === 'signup' || $this->getRequest()->getText( 'type' ) === 'signup' ) {
79  // B/C for old account creation URLs
80  $title = SpecialPage::getTitleFor( 'CreateAccount' );
81  $query = array_diff_key( $this->getRequest()->getValues(),
82  array_fill_keys( [ 'type', 'title' ], true ) );
83  $url = $title->getFullURL( $query, false, PROTO_CURRENT );
84  $this->getOutput()->redirect( $url );
85  return false;
86  }
87  return parent::beforeExecute( $subPage );
88  }
89 
101  protected function successfulAction( $direct = false, $extraMessages = null ) {
102  global $wgSecureLogin;
103 
104  $user = $this->targetUser ?: $this->getUser();
105  $session = $this->getRequest()->getSession();
106 
107  if ( $direct ) {
108  $user->touch();
109 
110  $this->clearToken();
111 
112  if ( $user->requiresHTTPS() ) {
113  $this->mStickHTTPS = true;
114  }
115  $session->setForceHTTPS( $wgSecureLogin && $this->mStickHTTPS );
116 
117  // If the user does not have a session cookie at this point, they probably need to
118  // do something to their browser.
119  if ( !$this->hasSessionCookie() ) {
120  $this->mainLoginForm( [ /*?*/ ], $session->getProvider()->whyNoSession() );
121  // TODO something more specific? This used to use nocookieslogin
122  return;
123  }
124  }
125 
126  # Run any hooks; display injected HTML if any, else redirect
127  $injected_html = '';
128  Hooks::run( 'UserLoginComplete', [ &$user, &$injected_html ] );
129 
130  if ( $injected_html !== '' || $extraMessages ) {
131  $this->showSuccessPage( 'success', $this->msg( 'loginsuccesstitle' ),
132  'loginsuccess', $injected_html, $extraMessages );
133  } else {
134  $helper = new LoginHelper( $this->getContext() );
135  $helper->showReturnToPage( 'successredirect', $this->mReturnTo, $this->mReturnToQuery,
136  $this->mStickHTTPS );
137  }
138  }
139 
140  protected function getToken() {
141  return $this->getRequest()->getSession()->getToken( '', 'login' );
142  }
143 
144  protected function clearToken() {
145  return $this->getRequest()->getSession()->resetToken( 'login' );
146  }
147 
148  protected function getTokenName() {
149  return 'wpLoginToken';
150  }
151 
152  protected function getGroupName() {
153  return 'login';
154  }
155 
156  protected function logAuthResult( $success, $status = null ) {
157  LoggerFactory::getInstance( 'authmanager-stats' )->info( 'Login attempt', [
158  'event' => 'login',
159  'successful' => $success,
160  'status' => $status,
161  ] );
162  }
163 }
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1418
getContext()
Gets the context this SpecialPage is executed in.
$success
successfulAction($direct=false, $extraMessages=null)
Run any hooks registered for logins, then HTTP redirect to $this->mReturnTo (or Main Page if that's u...
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name.
Definition: SpecialPage.php:75
logAuthResult($success, $status=null)
hasSessionCookie()
Check if a session cookie is present.
const PROTO_CURRENT
Definition: Defines.php:264
mainLoginForm(array $requests, $msg= '', $msgtype= 'error')
msg()
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
Holds shared logic for login and account creation pages.
showSuccessPage($type, $title, $msgname, $injected_html, $extraMessages)
Show the success page.
getDefaultAction($subPage)
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
Helper functions for the login form that need to be shared with other special pages (such as CentralA...
Definition: LoginHelper.php:8
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
getUser()
Shortcut to get the User executing this instance.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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:1004
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
string $subPage
Subpage of the special page.
Implements Special:UserLogin.