Merge "Remove Revision::getRevisionText from migrateArchiveText"
[lhc/web/wiklou.git] / includes / FauxRequest.php
1 <?php
2 /**
3 * Deal with importing all those nasty globals and things
4 *
5 * Copyright © 2003 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 use MediaWiki\Session\SessionManager;
27
28 /**
29 * WebRequest clone which takes values from a provided array.
30 *
31 * @ingroup HTTP
32 */
33 class FauxRequest extends WebRequest {
34 private $wasPosted = false;
35 private $requestUrl;
36 protected $cookies = [];
37
38 /**
39 * @param array $data Array of *non*-urlencoded key => value pairs, the
40 * fake GET/POST values
41 * @param bool $wasPosted Whether to treat the data as POST
42 * @param MediaWiki\Session\Session|array|null $session Session, session
43 * data array, or null
44 * @param string $protocol 'http' or 'https'
45 * @throws MWException
46 */
47 public function __construct( $data = [], $wasPosted = false,
48 $session = null, $protocol = 'http'
49 ) {
50 $this->requestTime = microtime( true );
51
52 if ( is_array( $data ) ) {
53 $this->data = $data;
54 } else {
55 throw new MWException( "FauxRequest() got bogus data" );
56 }
57 $this->wasPosted = $wasPosted;
58 if ( $session instanceof MediaWiki\Session\Session ) {
59 $this->sessionId = $session->getSessionId();
60 } elseif ( is_array( $session ) ) {
61 $mwsession = SessionManager::singleton()->getEmptySession( $this );
62 $this->sessionId = $mwsession->getSessionId();
63 foreach ( $session as $key => $value ) {
64 $mwsession->set( $key, $value );
65 }
66 } elseif ( $session !== null ) {
67 throw new MWException( "FauxRequest() got bogus session" );
68 }
69 $this->protocol = $protocol;
70 }
71
72 /**
73 * Initialise the header list
74 */
75 protected function initHeaders() {
76 // Nothing to init
77 }
78
79 /**
80 * @param string $name
81 * @param string $default
82 * @return string
83 */
84 public function getText( $name, $default = '' ) {
85 # Override; don't recode since we're using internal data
86 return (string)$this->getVal( $name, $default );
87 }
88
89 /**
90 * @return array
91 */
92 public function getQueryValues() {
93 if ( $this->wasPosted ) {
94 return [];
95 } else {
96 return $this->data;
97 }
98 }
99
100 public function getMethod() {
101 return $this->wasPosted ? 'POST' : 'GET';
102 }
103
104 /**
105 * @return bool
106 */
107 public function wasPosted() {
108 return $this->wasPosted;
109 }
110
111 public function getCookie( $key, $prefix = null, $default = null ) {
112 if ( $prefix === null ) {
113 global $wgCookiePrefix;
114 $prefix = $wgCookiePrefix;
115 }
116 $name = $prefix . $key;
117 return $this->cookies[$name] ?? $default;
118 }
119
120 /**
121 * @since 1.26
122 * @param string $key Unprefixed name of the cookie to set
123 * @param string|null $value Value of the cookie to set
124 * @param string|null $prefix Cookie prefix. Defaults to $wgCookiePrefix
125 */
126 public function setCookie( $key, $value, $prefix = null ) {
127 $this->setCookies( [ $key => $value ], $prefix );
128 }
129
130 /**
131 * @since 1.26
132 * @param array $cookies
133 * @param string|null $prefix Cookie prefix. Defaults to $wgCookiePrefix
134 */
135 public function setCookies( $cookies, $prefix = null ) {
136 if ( $prefix === null ) {
137 global $wgCookiePrefix;
138 $prefix = $wgCookiePrefix;
139 }
140 foreach ( $cookies as $key => $value ) {
141 $name = $prefix . $key;
142 $this->cookies[$name] = $value;
143 }
144 }
145
146 /**
147 * @since 1.25
148 * @param string $url
149 */
150 public function setRequestURL( $url ) {
151 $this->requestUrl = $url;
152 }
153
154 /**
155 * @since 1.25 MWException( "getRequestURL not implemented" )
156 * no longer thrown.
157 * @return string
158 */
159 public function getRequestURL() {
160 if ( $this->requestUrl === null ) {
161 throw new MWException( 'Request URL not set' );
162 }
163 return $this->requestUrl;
164 }
165
166 public function getProtocol() {
167 return $this->protocol;
168 }
169
170 /**
171 * @param string $name
172 * @param string $val
173 */
174 public function setHeader( $name, $val ) {
175 $this->setHeaders( [ $name => $val ] );
176 }
177
178 /**
179 * @since 1.26
180 * @param array $headers
181 */
182 public function setHeaders( $headers ) {
183 foreach ( $headers as $name => $val ) {
184 $name = strtoupper( $name );
185 $this->headers[$name] = $val;
186 }
187 }
188
189 /**
190 * @return array|null
191 */
192 public function getSessionArray() {
193 if ( $this->sessionId !== null ) {
194 return iterator_to_array( $this->getSession() );
195 }
196 return null;
197 }
198
199 /**
200 * FauxRequests shouldn't depend on raw request data (but that could be implemented here)
201 * @return string
202 */
203 public function getRawQueryString() {
204 return '';
205 }
206
207 /**
208 * FauxRequests shouldn't depend on raw request data (but that could be implemented here)
209 * @return string
210 */
211 public function getRawPostString() {
212 return '';
213 }
214
215 /**
216 * FauxRequests shouldn't depend on raw request data (but that could be implemented here)
217 * @return string
218 */
219 public function getRawInput() {
220 return '';
221 }
222
223 /**
224 * @codeCoverageIgnore
225 * @param array $extWhitelist
226 * @return bool
227 */
228 public function checkUrlExtension( $extWhitelist = [] ) {
229 return true;
230 }
231
232 /**
233 * @codeCoverageIgnore
234 * @return string
235 */
236 protected function getRawIP() {
237 return '127.0.0.1';
238 }
239 }