Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / session / ImmutableSessionProviderWithCookie.php
bloba1c0ad34dade5493e23f2a1e0305d16ec07066a6
1 <?php
2 /**
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
20 * @file
21 * @ingroup Session
24 namespace MediaWiki\Session;
26 use InvalidArgumentException;
27 use MediaWiki\MainConfigNames;
28 use MediaWiki\Request\WebRequest;
30 /**
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.
39 * @stable to extend
40 * @ingroup Session
41 * @since 1.27
43 abstract class ImmutableSessionProviderWithCookie extends SessionProvider {
45 /** @var string|null */
46 protected $sessionCookieName = null;
47 /** @var mixed[] */
48 protected $sessionCookieOptions = [];
50 /**
51 * @stable to call
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'];
74 /**
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
83 * @return string|null
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;
98 /**
99 * @inheritDoc
100 * @stable to override
102 public function persistsSessionId() {
103 return $this->sessionCookieName !== null;
107 * @inheritDoc
108 * @stable to override
110 public function canChangeUser() {
111 return false;
115 * @inheritDoc
116 * @stable to override
118 public function persistSession( SessionBackend $session, WebRequest $request ) {
119 if ( $this->sessionCookieName === null ) {
120 return;
123 $response = $request->response();
124 if ( $response->headersSent() ) {
125 // Can't do anything now
126 $this->logger->debug( __METHOD__ . ': Headers already sent' );
127 return;
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 );
144 * @inheritDoc
145 * @stable to override
147 public function unpersistSession( WebRequest $request ) {
148 if ( $this->sessionCookieName === null ) {
149 return;
152 $response = $request->response();
153 if ( $response->headersSent() ) {
154 // Can't do anything now
155 $this->logger->debug( __METHOD__ . ': Headers already sent' );
156 return;
159 $response->clearCookie( $this->sessionCookieName, $this->sessionCookieOptions );
163 * @inheritDoc
164 * @stable to override
166 public function getVaryCookies() {
167 if ( $this->sessionCookieName === null ) {
168 return [];
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' );