MediaWiki REL1_32
SessionInfo.php
Go to the documentation of this file.
1<?php
24namespace MediaWiki\Session;
25
36 const MIN_PRIORITY = 1;
37
39 const MAX_PRIORITY = 100;
40
42 private $provider;
43
45 private $id;
46
48 private $priority;
49
51 private $userInfo = null;
52
53 private $persisted = false;
54 private $remembered = false;
55 private $forceHTTPS = false;
56 private $idIsSafe = false;
57 private $forceUse = false;
58
60 private $providerMetadata = null;
61
87 public function __construct( $priority, array $data ) {
88 if ( $priority < self::MIN_PRIORITY || $priority > self::MAX_PRIORITY ) {
89 throw new \InvalidArgumentException( 'Invalid priority' );
90 }
91
92 if ( isset( $data['copyFrom'] ) ) {
93 $from = $data['copyFrom'];
94 if ( !$from instanceof SessionInfo ) {
95 throw new \InvalidArgumentException( 'Invalid copyFrom' );
96 }
97 $data += [
98 'provider' => $from->provider,
99 'id' => $from->id,
100 'userInfo' => $from->userInfo,
101 'persisted' => $from->persisted,
102 'remembered' => $from->remembered,
103 'forceHTTPS' => $from->forceHTTPS,
104 'metadata' => $from->providerMetadata,
105 'idIsSafe' => $from->idIsSafe,
106 'forceUse' => $from->forceUse,
107 // @codeCoverageIgnoreStart
108 ];
109 // @codeCoverageIgnoreEnd
110 } else {
111 $data += [
112 'provider' => null,
113 'id' => null,
114 'userInfo' => null,
115 'persisted' => false,
116 'remembered' => true,
117 'forceHTTPS' => false,
118 'metadata' => null,
119 'idIsSafe' => false,
120 'forceUse' => false,
121 // @codeCoverageIgnoreStart
122 ];
123 // @codeCoverageIgnoreEnd
124 }
125
126 if ( $data['id'] !== null && !SessionManager::validateSessionId( $data['id'] ) ) {
127 throw new \InvalidArgumentException( 'Invalid session ID' );
128 }
129
130 if ( $data['userInfo'] !== null && !$data['userInfo'] instanceof UserInfo ) {
131 throw new \InvalidArgumentException( 'Invalid userInfo' );
132 }
133
134 if ( !$data['provider'] && $data['id'] === null ) {
135 throw new \InvalidArgumentException(
136 'Must supply an ID when no provider is given'
137 );
138 }
139
140 if ( $data['metadata'] !== null && !is_array( $data['metadata'] ) ) {
141 throw new \InvalidArgumentException( 'Invalid metadata' );
142 }
143
144 $this->provider = $data['provider'];
145 if ( $data['id'] !== null ) {
146 $this->id = $data['id'];
147 $this->idIsSafe = $data['idIsSafe'];
148 $this->forceUse = $data['forceUse'] && $this->provider;
149 } else {
150 $this->id = $this->provider->getManager()->generateSessionId();
151 $this->idIsSafe = true;
152 $this->forceUse = false;
153 }
154 $this->priority = (int)$priority;
155 $this->userInfo = $data['userInfo'];
156 $this->persisted = (bool)$data['persisted'];
157 if ( $data['provider'] !== null ) {
158 if ( $this->userInfo !== null && !$this->userInfo->isAnon() && $this->userInfo->isVerified() ) {
159 $this->remembered = (bool)$data['remembered'];
160 }
161 $this->providerMetadata = $data['metadata'];
162 }
163 $this->forceHTTPS = (bool)$data['forceHTTPS'];
164 }
165
170 final public function getProvider() {
171 return $this->provider;
172 }
173
178 final public function getId() {
179 return $this->id;
180 }
181
194 final public function isIdSafe() {
195 return $this->idIsSafe;
196 }
197
209 final public function forceUse() {
210 return $this->forceUse;
211 }
212
217 final public function getPriority() {
218 return $this->priority;
219 }
220
225 final public function getUserInfo() {
226 return $this->userInfo;
227 }
228
233 final public function wasPersisted() {
234 return $this->persisted;
235 }
236
241 final public function getProviderMetadata() {
243 }
244
260 final public function wasRemembered() {
261 return $this->remembered;
262 }
263
268 final public function forceHTTPS() {
269 return $this->forceHTTPS;
270 }
271
272 public function __toString() {
273 return '[' . $this->getPriority() . ']' .
274 ( $this->getProvider() ?: 'null' ) .
275 ( $this->userInfo ?: '<null>' ) . $this->getId();
276 }
277
284 public static function compare( $a, $b ) {
285 return $a->getPriority() <=> $b->getPriority();
286 }
287
288}
Value object returned by SessionProvider.
forceUse()
Force use of this SessionInfo if validation fails.
getProviderMetadata()
Return provider metadata.
getId()
Return the session ID.
getProvider()
Return the provider.
isIdSafe()
Indicate whether the ID is "safe".
getUserInfo()
Return the user.
wasPersisted()
Return whether the session is persisted.
const MIN_PRIORITY
Minimum allowed priority.
const MAX_PRIORITY
Maximum allowed priority.
getPriority()
Return the priority.
__construct( $priority, array $data)
wasRemembered()
Return whether the user was remembered.
forceHTTPS()
Whether this session should only be used over HTTPS.
static compare( $a, $b)
Compare two SessionInfo objects by priority.
SessionProvider null $provider
static validateSessionId( $id)
Validate a session ID.
A SessionProvider provides SessionInfo and support for Session.
getManager()
Get the session manager.
Object holding data about a session's user.
Definition UserInfo.php:51
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))