MediaWiki REL1_33
|
Adapter for PHP's session handling. More...
Public Member Functions | |
close () | |
Close the session (handler) | |
destroy ( $id) | |
Destroy a session. | |
gc ( $maxlifetime) | |
Execute garbage collection. | |
open ( $save_path, $session_name) | |
Initialize the session (handler) | |
read ( $id) | |
Read session data. | |
setManager (SessionManager $manager, BagOStuff $store, LoggerInterface $logger) | |
Set the manager, store, and logger. | |
write ( $id, $dataStr) | |
Write session data. | |
Static Public Member Functions | |
static | install (SessionManager $manager) |
Install a session handler for the current web request. | |
static | isEnabled () |
Test whether the handler is installed and enabled. | |
static | isInstalled () |
Test whether the handler is installed. | |
Protected Member Functions | |
__construct (SessionManager $manager) | |
Protected Attributes | |
bool | $enable = false |
Whether PHP session handling is enabled. | |
LoggerInterface | $logger |
SessionManager null | $manager |
array | $sessionFieldCache = [] |
Track original session fields for later modification check. | |
BagOStuff null | $store |
bool | $warn = true |
Static Protected Attributes | |
static PHPSessionHandler | $instance = null |
Private Member Functions | |
setEnableFlags ( $PHPSessionHandling) | |
Set $this->enable and $this->warn. | |
|
protected |
Definition at line 56 of file PHPSessionHandler.php.
References MediaWiki\Session\PHPSessionHandler\$manager, MediaWiki\Session\PHPSessionHandler\setEnableFlags(), and MediaWiki\Session\SessionManager\setupPHPSessionHandler().
MediaWiki\Session\PHPSessionHandler::close | ( | ) |
Close the session (handler)
Definition at line 195 of file PHPSessionHandler.php.
MediaWiki\Session\PHPSessionHandler::destroy | ( | $id | ) |
Destroy a session.
string | $id | Session id |
Definition at line 343 of file PHPSessionHandler.php.
MediaWiki\Session\PHPSessionHandler::gc | ( | $maxlifetime | ) |
Execute garbage collection.
int | $maxlifetime | Maximum session life time (ignored) |
Definition at line 364 of file PHPSessionHandler.php.
|
static |
Install a session handler for the current web request.
SessionManager | $manager |
Definition at line 110 of file PHPSessionHandler.php.
References MediaWiki\Session\PHPSessionHandler\$manager, and MediaWiki\Session\SessionManager\setupPHPSessionHandler().
Referenced by MediaWiki\Session\TestUtils\setSessionManagerSingleton(), MediaWiki\Session\SessionManagerTest\testGetGlobalSession(), MediaWiki\Session\PHPSessionHandlerTest\testInstall(), MediaWiki\Session\SessionBackendTest\testResetIdOfGlobalSession(), MediaWiki\Session\PHPSessionHandlerTest\testSessionHandling(), MediaWiki\Session\SessionBackendTest\testTakeOverGlobalSession(), and MediaWiki\Session\SessionBackendTest\testUnpersistOfGlobalSession().
|
static |
Test whether the handler is installed and enabled.
Definition at line 102 of file PHPSessionHandler.php.
Referenced by MediaWiki\Session\SessionBackend\checkPHPSession(), MediaWiki\Session\SessionManager\getGlobalSession(), MediaWiki\Session\SessionBackend\resetId(), MediaWiki\Session\PHPSessionHandlerTest\testEnableFlags(), MediaWiki\Session\SessionBackendTest\testResetIdOfGlobalSession(), MediaWiki\Session\SessionBackendTest\testTakeOverGlobalSession(), MediaWiki\Session\SessionBackendTest\testUnpersistOfGlobalSession(), and MediaWiki\Session\SessionBackend\unpersist().
|
static |
Test whether the handler is installed.
Definition at line 94 of file PHPSessionHandler.php.
References MediaWiki\Session\PHPSessionHandler\$instance.
Referenced by MediaWiki\Session\TestUtils\setSessionManagerSingleton(), MediaWiki\Session\SessionManagerTest\testGetGlobalSession(), MediaWiki\Session\PHPSessionHandlerTest\testInstall(), MediaWiki\Session\SessionBackendTest\testResetIdOfGlobalSession(), MediaWiki\Session\SessionBackendTest\testTakeOverGlobalSession(), and MediaWiki\Session\SessionBackendTest\testUnpersistOfGlobalSession().
MediaWiki\Session\PHPSessionHandler::open | ( | $save_path, | |
$session_name | |||
) |
Initialize the session (handler)
string | $save_path | Path used to store session files (ignored) |
string | $session_name | Session name (ignored) |
Definition at line 180 of file PHPSessionHandler.php.
MediaWiki\Session\PHPSessionHandler::read | ( | $id | ) |
Read session data.
string | $id | Session id |
Definition at line 209 of file PHPSessionHandler.php.
References $data.
|
private |
Set $this->enable and $this->warn.
Separate just because there doesn't seem to be a good way to test it otherwise.
string | $PHPSessionHandling | See $wgPHPSessionHandling |
Definition at line 71 of file PHPSessionHandler.php.
Referenced by MediaWiki\Session\PHPSessionHandler\__construct().
MediaWiki\Session\PHPSessionHandler::setManager | ( | SessionManager | $manager, |
BagOStuff | $store, | ||
LoggerInterface | $logger | ||
) |
Set the manager, store, and logger.
SessionManager | $manager | |
BagOStuff | $store | |
LoggerInterface | $logger |
Definition at line 158 of file PHPSessionHandler.php.
References MediaWiki\Session\PHPSessionHandler\$logger, MediaWiki\Session\PHPSessionHandler\$manager, and MediaWiki\Session\PHPSessionHandler\$store.
MediaWiki\Session\PHPSessionHandler::write | ( | $id, | |
$dataStr | |||
) |
Write session data.
string | $id | Session id |
string | $dataStr | Session data. Not that you should ever call this directly, but note that this has the same issues with code injection via user-controlled data as does PHP's unserialize function. |
Definition at line 237 of file PHPSessionHandler.php.
References $cache, $data, $value, as, and wfDeprecated().
|
protected |
Whether PHP session handling is enabled.
Definition at line 39 of file PHPSessionHandler.php.
|
staticprotected |
Definition at line 36 of file PHPSessionHandler.php.
Referenced by MediaWiki\Session\PHPSessionHandler\isInstalled().
|
protected |
Definition at line 51 of file PHPSessionHandler.php.
Referenced by MediaWiki\Session\PHPSessionHandler\setManager().
|
protected |
Definition at line 45 of file PHPSessionHandler.php.
Referenced by MediaWiki\Session\PHPSessionHandler\__construct(), MediaWiki\Session\PHPSessionHandler\install(), and MediaWiki\Session\PHPSessionHandler\setManager().
|
protected |
Track original session fields for later modification check.
Definition at line 54 of file PHPSessionHandler.php.
Definition at line 48 of file PHPSessionHandler.php.
Referenced by MediaWiki\Session\PHPSessionHandler\setManager().
|
protected |
Definition at line 42 of file PHPSessionHandler.php.