70 switch ( $PHPSessionHandling ) {
82 $this->enable =
false;
93 return (
bool)self::$instance;
101 return self::$instance && self::$instance->enable;
109 if ( self::$instance ) {
115 if ( defined(
'MW_NO_SESSION_HANDLER' ) ) {
116 throw new \BadMethodCallException(
'MW_NO_SESSION_HANDLER is defined' );
120 self::$instance =
new self(
$manager );
123 session_write_close();
126 ini_set(
'session.use_cookies', 0 );
127 ini_set(
'session.use_trans_sid', 0 );
133 session_cache_limiter(
'' );
136 \Wikimedia\PhpSessionSerializer::setSerializeHandler();
140 session_set_save_handler( self::$instance,
true );
153 if ( $this->manager !== $manager ) {
155 if ( $this->manager ) {
156 session_write_close();
161 \Wikimedia\PhpSessionSerializer::setLogger( $this->logger );
172 public function open( $save_path, $session_name ) {
173 if ( self::$instance !== $this ) {
174 throw new \UnexpectedValueException( __METHOD__ .
': Wrong instance called!' );
176 if ( !$this->enable ) {
177 throw new \BadMethodCallException(
'Attempt to use PHP session management' );
188 if ( self::$instance !== $this ) {
189 throw new \UnexpectedValueException( __METHOD__ .
': Wrong instance called!' );
191 $this->sessionFieldCache = [];
202 if ( self::$instance !== $this ) {
203 throw new \UnexpectedValueException( __METHOD__ .
': Wrong instance called!' );
205 if ( !$this->enable ) {
206 throw new \BadMethodCallException(
'Attempt to use PHP session management' );
209 $session = $this->manager->getSessionById( $id,
false );
215 $data = iterator_to_array( $session );
216 $this->sessionFieldCache[$id] = $data;
217 return (
string)\Wikimedia\PhpSessionSerializer::encode( $data );
229 public function write( $id, $dataStr ) {
230 if ( self::$instance !== $this ) {
231 throw new \UnexpectedValueException( __METHOD__ .
': Wrong instance called!' );
233 if ( !$this->enable ) {
234 throw new \BadMethodCallException(
'Attempt to use PHP session management' );
237 $session = $this->manager->getSessionById( $id,
true );
241 $this->logger->warning(
242 __METHOD__ .
': Session "{session}" cannot be loaded, skipping write.',
250 $data = \Wikimedia\PhpSessionSerializer::decode( $dataStr );
251 if ( $data === null ) {
259 $cache = isset( $this->sessionFieldCache[$id] ) ? $this->sessionFieldCache[$id] : [];
260 foreach ( $data
as $key =>
$value ) {
261 if ( !array_key_exists( $key,
$cache ) ) {
262 if ( $session->exists( $key ) ) {
264 $this->logger->warning(
265 __METHOD__ .
": Key \"$key\" added in both Session and \$_SESSION!"
269 $session->set( $key,
$value );
274 } elseif ( !$session->exists( $key ) ) {
276 $this->logger->warning(
277 __METHOD__ .
": Key \"$key\" deleted in Session and changed in \$_SESSION!"
279 $session->set( $key,
$value );
281 } elseif (
$cache[$key] === $session->get( $key ) ) {
283 $session->set( $key,
$value );
287 $this->logger->warning(
288 __METHOD__ .
": Key \"$key\" changed in both Session and \$_SESSION!"
294 \Wikimedia\PhpSessionSerializer::setLogger(
new \Psr\Log\NullLogger() );
296 if ( !array_key_exists( $key, $data ) && $session->exists( $key ) &&
297 \Wikimedia\PhpSessionSerializer::encode( [ $key =>
true ] )
299 if (
$cache[$key] === $session->get( $key ) ) {
301 $session->remove( $key );
305 $this->logger->warning(
306 __METHOD__ .
": Key \"$key\" changed in Session and deleted in \$_SESSION!"
311 \Wikimedia\PhpSessionSerializer::setLogger( $this->logger );
317 $this->logger->warning(
'Something wrote to $_SESSION!' );
321 $this->sessionFieldCache[$id] = iterator_to_array( $session );
336 if ( self::$instance !== $this ) {
337 throw new \UnexpectedValueException( __METHOD__ .
': Wrong instance called!' );
339 if ( !$this->enable ) {
340 throw new \BadMethodCallException(
'Attempt to use PHP session management' );
342 $session = $this->manager->getSessionById( $id,
false );
355 public function gc( $maxlifetime ) {
356 if ( self::$instance !== $this ) {
357 throw new \UnexpectedValueException( __METHOD__ .
': Wrong instance called!' );
359 $before = date(
'YmdHis', time() );
360 $this->
store->deleteObjectsExpiringBefore( $before );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
MediaWiki s SiteStore can be cached and stored in a flat in a json format If the SiteStore is frequently the file cache may provide a performance benefit over a database store
static getMain()
Static methods.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
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
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