MediaWiki  1.29.1
SessionProvider.php
Go to the documentation of this file.
1 <?php
24 namespace MediaWiki\Session;
25 
26 use Psr\Log\LoggerAwareInterface;
27 use Psr\Log\LoggerInterface;
28 use Config;
30 use User;
32 
78 abstract class SessionProvider implements SessionProviderInterface, LoggerAwareInterface {
79 
81  protected $logger;
82 
84  protected $config;
85 
87  protected $manager;
88 
92  protected $priority;
93 
100  public function __construct() {
101  $this->priority = SessionInfo::MIN_PRIORITY + 10;
102  }
103 
104  public function setLogger( LoggerInterface $logger ) {
105  $this->logger = $logger;
106  }
107 
112  public function setConfig( Config $config ) {
113  $this->config = $config;
114  }
115 
120  public function setManager( SessionManager $manager ) {
121  $this->manager = $manager;
122  }
123 
128  public function getManager() {
129  return $this->manager;
130  }
131 
154  abstract public function provideSessionInfo( WebRequest $request );
155 
169  public function newSessionInfo( $id = null ) {
170  if ( $this->canChangeUser() && $this->persistsSessionId() ) {
171  return new SessionInfo( $this->priority, [
172  'id' => $id,
173  'provider' => $this,
174  'persisted' => false,
175  'idIsSafe' => true,
176  ] );
177  }
178  return null;
179  }
180 
202  public function mergeMetadata( array $savedMetadata, array $providedMetadata ) {
203  foreach ( $providedMetadata as $k => $v ) {
204  if ( array_key_exists( $k, $savedMetadata ) && $savedMetadata[$k] !== $v ) {
205  $e = new MetadataMergeException( "Key \"$k\" changed" );
206  $e->setContext( [
207  'old_value' => $savedMetadata[$k],
208  'new_value' => $v,
209  ] );
210  throw $e;
211  }
212  }
213  return $providedMetadata;
214  }
215 
229  public function refreshSessionInfo( SessionInfo $info, WebRequest $request, &$metadata ) {
230  return true;
231  }
232 
259  abstract public function persistsSessionId();
260 
286  abstract public function canChangeUser();
287 
294  public function getRememberUserDuration() {
295  return null;
296  }
297 
308  public function sessionIdWasReset( SessionBackend $session, $oldId ) {
309  }
310 
338  abstract public function persistSession( SessionBackend $session, WebRequest $request );
339 
351  abstract public function unpersistSession( WebRequest $request );
352 
374  public function preventSessionsForUser( $username ) {
375  if ( !$this->canChangeUser() ) {
376  throw new \BadMethodCallException(
377  __METHOD__ . ' must be implmented when canChangeUser() is false'
378  );
379  }
380  }
381 
392  public function invalidateSessionsForUser( User $user ) {
393  }
394 
408  public function getVaryHeaders() {
409  return [];
410  }
411 
417  public function getVaryCookies() {
418  return [];
419  }
420 
428  return null;
429  }
430 
441  public function getAllowedUserRights( SessionBackend $backend ) {
442  if ( $backend->getProvider() !== $this ) {
443  // Not that this should ever happen...
444  throw new \InvalidArgumentException( 'Backend\'s provider isn\'t $this' );
445  }
446 
447  return null;
448  }
449 
457  public function __toString() {
458  return static::class;
459  }
460 
476  protected function describeMessage() {
477  return wfMessage(
478  'sessionprovider-' . str_replace( '\\', '-', strtolower( static::class ) )
479  );
480  }
481 
482  public function describe( Language $lang ) {
483  $msg = $this->describeMessage();
484  $msg->inLanguage( $lang );
485  if ( $msg->isDisabled() ) {
486  $msg = wfMessage( 'sessionprovider-generic', (string)$this )->inLanguage( $lang );
487  }
488  return $msg->plain();
489  }
490 
491  public function whyNoSession() {
492  return null;
493  }
494 
508  final protected function hashToSessionId( $data, $key = null ) {
509  if ( !is_string( $data ) ) {
510  throw new \InvalidArgumentException(
511  '$data must be a string, ' . gettype( $data ) . ' was passed'
512  );
513  }
514  if ( $key !== null && !is_string( $key ) ) {
515  throw new \InvalidArgumentException(
516  '$key must be a string or null, ' . gettype( $key ) . ' was passed'
517  );
518  }
519 
520  $hash = \MWCryptHash::hmac( "$this\n$data", $key ?: $this->config->get( 'SecretKey' ), false );
521  if ( strlen( $hash ) < 32 ) {
522  // Should never happen, even md5 is 128 bits
523  // @codeCoverageIgnoreStart
524  throw new \UnexpectedValueException( 'Hash fuction returned less than 128 bits' );
525  // @codeCoverageIgnoreEnd
526  }
527  if ( strlen( $hash ) >= 40 ) {
528  $hash = \Wikimedia\base_convert( $hash, 16, 32, 32 );
529  }
530  return substr( $hash, -32 );
531  }
532 
533 }
MediaWiki\Session\SessionProvider\getAllowedUserRights
getAllowedUserRights(SessionBackend $backend)
Fetch the rights allowed the user when the specified session is active.
Definition: SessionProvider.php:441
MediaWiki\Session\SessionProvider\getManager
getManager()
Get the session manager.
Definition: SessionProvider.php:128
$request
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2612
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
MediaWiki\Session\SessionProvider\newSessionInfo
newSessionInfo( $id=null)
Provide session info for a new, empty session.
Definition: SessionProvider.php:169
MWCryptHash\hmac
static hmac( $data, $key, $raw=true)
Generate an acceptably unstable one-way-hmac of some text making use of the best hash algorithm that ...
Definition: MWCryptHash.php:106
MediaWiki\Session\SessionProvider\setLogger
setLogger(LoggerInterface $logger)
Definition: SessionProvider.php:104
MediaWiki\Session\SessionProvider\getRememberUserDuration
getRememberUserDuration()
Returns the duration (in seconds) for which users will be remembered when Session::setRememberUser() ...
Definition: SessionProvider.php:294
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
MediaWiki\Session\SessionBackend\getProvider
getProvider()
Fetch the SessionProvider for this session.
Definition: SessionBackend.php:260
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
MediaWiki\Session\MetadataMergeException
Subclass of UnexpectedValueException that can be annotated with additional data for debug logging.
Definition: MetadataMergeException.php:36
$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\Session\SessionProvider\persistsSessionId
persistsSessionId()
Indicate whether self::persistSession() can save arbitrary session IDs.
User
User
Definition: All_system_messages.txt:425
MediaWiki\Session\SessionProvider\describeMessage
describeMessage()
Return a Message identifying this session type.
Definition: SessionProvider.php:476
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\Session\SessionProvider\getVaryCookies
getVaryCookies()
Return the list of cookies that need varying on.
Definition: SessionProvider.php:417
Config
Interface for configuration instances.
Definition: Config.php:28
MediaWiki\Session\SessionProvider\provideSessionInfo
provideSessionInfo(WebRequest $request)
Provide session info for a request.
MediaWiki\Session\SessionProvider\__construct
__construct()
Definition: SessionProvider.php:100
MediaWiki\Session\SessionProvider
A SessionProvider provides SessionInfo and support for Session.
Definition: SessionProvider.php:78
MediaWiki\Session\SessionProvider\setManager
setManager(SessionManager $manager)
Set the session manager.
Definition: SessionProvider.php:120
MediaWiki\Session\SessionProvider\unpersistSession
unpersistSession(WebRequest $request)
Remove any persisted session from a request/response.
MediaWiki\Session\SessionProvider\suggestLoginUsername
suggestLoginUsername(WebRequest $request)
Get a suggested username for the login form.
Definition: SessionProvider.php:427
MediaWiki\Session
Definition: BotPasswordSessionProvider.php:24
MediaWiki\Session\SessionProvider\whyNoSession
whyNoSession()
Return a Message for why sessions might not be being persisted.
Definition: SessionProvider.php:491
MediaWiki\Session\SessionProvider\preventSessionsForUser
preventSessionsForUser( $username)
Prevent future sessions for the user.
Definition: SessionProvider.php:374
MediaWiki\Session\SessionProvider\$logger
LoggerInterface $logger
Definition: SessionProvider.php:81
MediaWiki\Session\SessionProviderInterface
This exists to make IDEs happy, so they don't see the internal-but-required-to-be-public methods on S...
Definition: SessionProviderInterface.php:35
MediaWiki\Session\SessionProvider\__toString
__toString()
Definition: SessionProvider.php:457
MediaWiki\Session\SessionProvider\refreshSessionInfo
refreshSessionInfo(SessionInfo $info, WebRequest $request, &$metadata)
Validate a loaded SessionInfo and refresh provider metadata.
Definition: SessionProvider.php:229
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2122
MediaWiki\Session\SessionProvider\invalidateSessionsForUser
invalidateSessionsForUser(User $user)
Invalidate existing sessions for a user.
Definition: SessionProvider.php:392
MediaWiki\Session\SessionManager
This serves as the entry point to the MediaWiki session handling system.
Definition: SessionManager.php:49
MediaWiki\Session\SessionProvider\mergeMetadata
mergeMetadata(array $savedMetadata, array $providedMetadata)
Merge saved session provider metadata.
Definition: SessionProvider.php:202
MediaWiki\Session\SessionProvider\setConfig
setConfig(Config $config)
Set configuration.
Definition: SessionProvider.php:112
MediaWiki\Session\SessionProvider\persistSession
persistSession(SessionBackend $session, WebRequest $request)
Persist a session into a request/response.
MediaWiki\Session\SessionProvider\$config
Config $config
Definition: SessionProvider.php:84
WebRequest
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Definition: WebRequest.php:38
MediaWiki\Session\SessionInfo
Value object returned by SessionProvider.
Definition: SessionInfo.php:34
MediaWiki\Session\SessionProvider\describe
describe(Language $lang)
Return an identifier for this session type.
Definition: SessionProvider.php:482
MediaWiki\Session\SessionProvider\canChangeUser
canChangeUser()
Indicate whether the user associated with the request can be changed.
MediaWiki\Session\SessionProvider\$priority
int $priority
Session priority.
Definition: SessionProvider.php:92
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
MediaWiki\Session\SessionProvider\sessionIdWasReset
sessionIdWasReset(SessionBackend $session, $oldId)
Notification that the session ID was reset.
Definition: SessionProvider.php:308
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
MediaWiki\Session\SessionProvider\$manager
SessionManager $manager
Definition: SessionProvider.php:87
MediaWiki\Session\SessionProvider\getVaryHeaders
getVaryHeaders()
Return the HTTP headers that need varying on.
Definition: SessionProvider.php:408
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:50
MediaWiki\Session\SessionInfo\MIN_PRIORITY
const MIN_PRIORITY
Minimum allowed priority.
Definition: SessionInfo.php:36
$username
this hook is for auditing only or null if authentication failed before getting that far $username
Definition: hooks.txt:783
Language
Internationalisation code.
Definition: Language.php:35
array
the array() calling protocol came about after MediaWiki 1.4rc1.
MediaWiki\Session\SessionBackend
This is the actual workhorse for Session.
Definition: SessionBackend.php:49
MediaWiki\Session\SessionProvider\hashToSessionId
hashToSessionId( $data, $key=null)
Hash data as a session ID.
Definition: SessionProvider.php:508