3 * MediaWiki session provider base class
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 namespace MediaWiki\Session
;
26 use InvalidArgumentException
;
27 use MediaWiki\MainConfigNames
;
28 use MediaWiki\Request\WebRequest
;
31 * An ImmutableSessionProviderWithCookie doesn't persist the user, but
32 * optionally can use a cookie to support multiple IDs per session.
34 * As mentioned in the documentation for SessionProvider, many methods that are
35 * technically "cannot persist ID" could be turned into "can persist ID but
36 * not changing User" using a session cookie. This class implements such an
37 * optional session cookie.
43 abstract class ImmutableSessionProviderWithCookie
extends SessionProvider
{
45 /** @var string|null */
46 protected $sessionCookieName = null;
48 protected $sessionCookieOptions = [];
52 * @param array $params Keys include:
53 * - sessionCookieName: Session cookie name, if multiple sessions per
54 * client are to be supported.
55 * - sessionCookieOptions: Options to pass to WebResponse::setCookie().
57 public function __construct( $params = [] ) {
58 parent
::__construct();
60 if ( isset( $params['sessionCookieName'] ) ) {
61 if ( !is_string( $params['sessionCookieName'] ) ) {
62 throw new InvalidArgumentException( 'sessionCookieName must be a string' );
64 $this->sessionCookieName
= $params['sessionCookieName'];
66 if ( isset( $params['sessionCookieOptions'] ) ) {
67 if ( !is_array( $params['sessionCookieOptions'] ) ) {
68 throw new InvalidArgumentException( 'sessionCookieOptions must be an array' );
70 $this->sessionCookieOptions
= $params['sessionCookieOptions'];
75 * Get the session ID from the cookie, if any.
77 * Only call this if $this->sessionCookieName !== null. If
78 * sessionCookieName is null, do some logic (probably involving a call to
79 * $this->hashToSessionId()) to create the single session ID corresponding
80 * to this WebRequest instead of calling this method.
82 * @param WebRequest $request
85 protected function getSessionIdFromCookie( WebRequest
$request ) {
86 if ( $this->sessionCookieName
=== null ) {
87 throw new \
BadMethodCallException(
88 __METHOD__
. ' may not be called when $this->sessionCookieName === null'
92 $prefix = $this->sessionCookieOptions
['prefix']
93 ??
$this->getConfig()->get( MainConfigNames
::CookiePrefix
);
94 $id = $request->getCookie( $this->sessionCookieName
, $prefix );
95 return SessionManager
::validateSessionId( $id ) ?
$id : null;
100 * @stable to override
102 public function persistsSessionId() {
103 return $this->sessionCookieName
!== null;
108 * @stable to override
110 public function canChangeUser() {
116 * @stable to override
118 public function persistSession( SessionBackend
$session, WebRequest
$request ) {
119 if ( $this->sessionCookieName
=== null ) {
123 $response = $request->response();
124 if ( $response->headersSent() ) {
125 // Can't do anything now
126 $this->logger
->debug( __METHOD__
. ': Headers already sent' );
130 $options = $this->sessionCookieOptions
;
131 if ( $session->shouldForceHTTPS() ||
$session->getUser()->requiresHTTPS() ) {
132 // Send a cookie unless $wgForceHTTPS is set (T256095)
133 if ( !$this->getConfig()->get( MainConfigNames
::ForceHTTPS
) ) {
134 $response->setCookie( 'forceHTTPS', 'true', null,
135 [ 'prefix' => '', 'secure' => false ] +
$options );
137 $options['secure'] = true;
140 $response->setCookie( $this->sessionCookieName
, $session->getId(), null, $options );
145 * @stable to override
147 public function unpersistSession( WebRequest
$request ) {
148 if ( $this->sessionCookieName
=== null ) {
152 $response = $request->response();
153 if ( $response->headersSent() ) {
154 // Can't do anything now
155 $this->logger
->debug( __METHOD__
. ': Headers already sent' );
159 $response->clearCookie( $this->sessionCookieName
, $this->sessionCookieOptions
);
164 * @stable to override
166 public function getVaryCookies() {
167 if ( $this->sessionCookieName
=== null ) {
171 $prefix = $this->sessionCookieOptions
['prefix'] ??
172 $this->getConfig()->get( MainConfigNames
::CookiePrefix
);
173 return [ $prefix . $this->sessionCookieName
];
176 public function whyNoSession() {
177 return wfMessage( 'sessionprovider-nocookies' );