2a03d2dc7d3158614dbbef8b0b437ab981b39da8
[lhc/web/wiklou.git] / includes / WebRequest.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\MediaWikiServices;
27 use MediaWiki\Session\Session;
28 use MediaWiki\Session\SessionId;
29 use MediaWiki\Session\SessionManager;
30
31 // The point of this class is to be a wrapper around super globals
32 // phpcs:disable MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals
33
34 /**
35 * The WebRequest class encapsulates getting at data passed in the
36 * URL or via a POSTed form stripping illegal input characters and
37 * normalizing Unicode sequences.
38 *
39 * @ingroup HTTP
40 */
41 class WebRequest {
42 protected $data, $headers = [];
43
44 /**
45 * Flag to make WebRequest::getHeader return an array of values.
46 * @since 1.26
47 */
48 const GETHEADER_LIST = 1;
49
50 /**
51 * The unique request ID.
52 * @var string
53 */
54 private static $reqId;
55
56 /**
57 * Lazy-init response object
58 * @var WebResponse
59 */
60 private $response;
61
62 /**
63 * Cached client IP address
64 * @var string
65 */
66 private $ip;
67
68 /**
69 * The timestamp of the start of the request, with microsecond precision.
70 * @var float
71 */
72 protected $requestTime;
73
74 /**
75 * Cached URL protocol
76 * @var string
77 */
78 protected $protocol;
79
80 /**
81 * @var SessionId|null Session ID to use for this
82 * request. We can't save the session directly due to reference cycles not
83 * working too well (slow GC in Zend and never collected in HHVM).
84 */
85 protected $sessionId = null;
86
87 /** @var bool Whether this HTTP request is "safe" (even if it is an HTTP post) */
88 protected $markedAsSafe = false;
89
90 /**
91 * @codeCoverageIgnore
92 */
93 public function __construct() {
94 $this->requestTime = $_SERVER['REQUEST_TIME_FLOAT'];
95
96 // POST overrides GET data
97 // We don't use $_REQUEST here to avoid interference from cookies...
98 $this->data = $_POST + $_GET;
99 }
100
101 /**
102 * Extract relevant query arguments from the http request uri's path
103 * to be merged with the normal php provided query arguments.
104 * Tries to use the REQUEST_URI data if available and parses it
105 * according to the wiki's configuration looking for any known pattern.
106 *
107 * If the REQUEST_URI is not provided we'll fall back on the PATH_INFO
108 * provided by the server if any and use that to set a 'title' parameter.
109 *
110 * @param string $want If this is not 'all', then the function
111 * will return an empty array if it determines that the URL is
112 * inside a rewrite path.
113 *
114 * @return array Any query arguments found in path matches.
115 */
116 public static function getPathInfo( $want = 'all' ) {
117 global $wgUsePathInfo;
118 // PATH_INFO is mangled due to https://bugs.php.net/bug.php?id=31892
119 // And also by Apache 2.x, double slashes are converted to single slashes.
120 // So we will use REQUEST_URI if possible.
121 $matches = [];
122 if ( !empty( $_SERVER['REQUEST_URI'] ) ) {
123 // Slurp out the path portion to examine...
124 $url = $_SERVER['REQUEST_URI'];
125 if ( !preg_match( '!^https?://!', $url ) ) {
126 $url = 'http://unused' . $url;
127 }
128 Wikimedia\suppressWarnings();
129 $a = parse_url( $url );
130 Wikimedia\restoreWarnings();
131 if ( $a ) {
132 $path = $a['path'] ?? '';
133
134 global $wgScript;
135 if ( $path == $wgScript && $want !== 'all' ) {
136 // Script inside a rewrite path?
137 // Abort to keep from breaking...
138 return $matches;
139 }
140
141 $router = new PathRouter;
142
143 // Raw PATH_INFO style
144 $router->add( "$wgScript/$1" );
145
146 if ( isset( $_SERVER['SCRIPT_NAME'] )
147 && preg_match( '/\.php/', $_SERVER['SCRIPT_NAME'] )
148 ) {
149 # Check for SCRIPT_NAME, we handle index.php explicitly
150 # But we do have some other .php files such as img_auth.php
151 # Don't let root article paths clober the parsing for them
152 $router->add( $_SERVER['SCRIPT_NAME'] . "/$1" );
153 }
154
155 global $wgArticlePath;
156 if ( $wgArticlePath ) {
157 $router->add( $wgArticlePath );
158 }
159
160 global $wgActionPaths;
161 if ( $wgActionPaths ) {
162 $router->add( $wgActionPaths, [ 'action' => '$key' ] );
163 }
164
165 global $wgVariantArticlePath;
166 if ( $wgVariantArticlePath ) {
167 $router->add( $wgVariantArticlePath,
168 [ 'variant' => '$2' ],
169 [ '$2' => MediaWikiServices::getInstance()->getContentLanguage()->
170 getVariants() ]
171 );
172 }
173
174 Hooks::run( 'WebRequestPathInfoRouter', [ $router ] );
175
176 $matches = $router->parse( $path );
177 }
178 } elseif ( $wgUsePathInfo ) {
179 if ( isset( $_SERVER['ORIG_PATH_INFO'] ) && $_SERVER['ORIG_PATH_INFO'] != '' ) {
180 // Mangled PATH_INFO
181 // https://bugs.php.net/bug.php?id=31892
182 // Also reported when ini_get('cgi.fix_pathinfo')==false
183 $matches['title'] = substr( $_SERVER['ORIG_PATH_INFO'], 1 );
184
185 } elseif ( isset( $_SERVER['PATH_INFO'] ) && $_SERVER['PATH_INFO'] != '' ) {
186 // Regular old PATH_INFO yay
187 $matches['title'] = substr( $_SERVER['PATH_INFO'], 1 );
188 }
189 }
190
191 return $matches;
192 }
193
194 /**
195 * Work out an appropriate URL prefix containing scheme and host, based on
196 * information detected from $_SERVER
197 *
198 * @return string
199 */
200 public static function detectServer() {
201 global $wgAssumeProxiesUseDefaultProtocolPorts;
202
203 $proto = self::detectProtocol();
204 $stdPort = $proto === 'https' ? 443 : 80;
205
206 $varNames = [ 'HTTP_HOST', 'SERVER_NAME', 'HOSTNAME', 'SERVER_ADDR' ];
207 $host = 'localhost';
208 $port = $stdPort;
209 foreach ( $varNames as $varName ) {
210 if ( !isset( $_SERVER[$varName] ) ) {
211 continue;
212 }
213
214 $parts = IP::splitHostAndPort( $_SERVER[$varName] );
215 if ( !$parts ) {
216 // Invalid, do not use
217 continue;
218 }
219
220 $host = $parts[0];
221 if ( $wgAssumeProxiesUseDefaultProtocolPorts && isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) ) {
222 // T72021: Assume that upstream proxy is running on the default
223 // port based on the protocol. We have no reliable way to determine
224 // the actual port in use upstream.
225 $port = $stdPort;
226 } elseif ( $parts[1] === false ) {
227 if ( isset( $_SERVER['SERVER_PORT'] ) ) {
228 $port = $_SERVER['SERVER_PORT'];
229 } // else leave it as $stdPort
230 } else {
231 $port = $parts[1];
232 }
233 break;
234 }
235
236 return $proto . '://' . IP::combineHostAndPort( $host, $port, $stdPort );
237 }
238
239 /**
240 * Detect the protocol from $_SERVER.
241 * This is for use prior to Setup.php, when no WebRequest object is available.
242 * At other times, use the non-static function getProtocol().
243 *
244 * @return string
245 */
246 public static function detectProtocol() {
247 if ( ( !empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] !== 'off' ) ||
248 ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) &&
249 $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) {
250 return 'https';
251 } else {
252 return 'http';
253 }
254 }
255
256 /**
257 * Get the number of seconds to have elapsed since request start,
258 * in fractional seconds, with microsecond resolution.
259 *
260 * @return float
261 * @since 1.25
262 */
263 public function getElapsedTime() {
264 return microtime( true ) - $this->requestTime;
265 }
266
267 /**
268 * Get the unique request ID.
269 * This is either the value of the UNIQUE_ID envvar (if present) or a
270 * randomly-generated 24-character string.
271 *
272 * @return string
273 * @since 1.27
274 */
275 public static function getRequestId() {
276 // This method is called from various error handlers and should be kept simple.
277
278 if ( !self::$reqId ) {
279 self::$reqId = $_SERVER['UNIQUE_ID'] ?? wfRandomString( 24 );
280 }
281
282 return self::$reqId;
283 }
284
285 /**
286 * Override the unique request ID. This is for sub-requests, such as jobs,
287 * that wish to use the same id but are not part of the same execution context.
288 *
289 * @param string $id
290 * @since 1.27
291 */
292 public static function overrideRequestId( $id ) {
293 self::$reqId = $id;
294 }
295
296 /**
297 * Get the current URL protocol (http or https)
298 * @return string
299 */
300 public function getProtocol() {
301 if ( $this->protocol === null ) {
302 $this->protocol = self::detectProtocol();
303 }
304 return $this->protocol;
305 }
306
307 /**
308 * Check for title, action, and/or variant data in the URL
309 * and interpolate it into the GET variables.
310 * This should only be run after the content language is available,
311 * as we may need the list of language variants to determine
312 * available variant URLs.
313 */
314 public function interpolateTitle() {
315 // T18019: title interpolation on API queries is useless and sometimes harmful
316 if ( defined( 'MW_API' ) ) {
317 return;
318 }
319
320 $matches = self::getPathInfo( 'title' );
321 foreach ( $matches as $key => $val ) {
322 $this->data[$key] = $_GET[$key] = $_REQUEST[$key] = $val;
323 }
324 }
325
326 /**
327 * URL rewriting function; tries to extract page title and,
328 * optionally, one other fixed parameter value from a URL path.
329 *
330 * @param string $path The URL path given from the client
331 * @param array $bases One or more URLs, optionally with $1 at the end
332 * @param string|bool $key If provided, the matching key in $bases will be
333 * passed on as the value of this URL parameter
334 * @return array Array of URL variables to interpolate; empty if no match
335 */
336 static function extractTitle( $path, $bases, $key = false ) {
337 foreach ( (array)$bases as $keyValue => $base ) {
338 // Find the part after $wgArticlePath
339 $base = str_replace( '$1', '', $base );
340 $baseLen = strlen( $base );
341 if ( substr( $path, 0, $baseLen ) == $base ) {
342 $raw = substr( $path, $baseLen );
343 if ( $raw !== '' ) {
344 $matches = [ 'title' => rawurldecode( $raw ) ];
345 if ( $key ) {
346 $matches[$key] = $keyValue;
347 }
348 return $matches;
349 }
350 }
351 }
352 return [];
353 }
354
355 /**
356 * Recursively normalizes UTF-8 strings in the given array.
357 *
358 * @param string|array $data
359 * @return array|string Cleaned-up version of the given
360 * @private
361 */
362 public function normalizeUnicode( $data ) {
363 if ( is_array( $data ) ) {
364 foreach ( $data as $key => $val ) {
365 $data[$key] = $this->normalizeUnicode( $val );
366 }
367 } else {
368 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
369 $data = $contLang ? $contLang->normalize( $data ) :
370 UtfNormal\Validator::cleanUp( $data );
371 }
372 return $data;
373 }
374
375 /**
376 * Fetch a value from the given array or return $default if it's not set.
377 *
378 * @param array $arr
379 * @param string $name
380 * @param mixed $default
381 * @return mixed
382 */
383 private function getGPCVal( $arr, $name, $default ) {
384 # PHP is so nice to not touch input data, except sometimes:
385 # https://www.php.net/variables.external#language.variables.external.dot-in-names
386 # Work around PHP *feature* to avoid *bugs* elsewhere.
387 $name = strtr( $name, '.', '_' );
388 if ( isset( $arr[$name] ) ) {
389 $data = $arr[$name];
390 if ( isset( $_GET[$name] ) && is_string( $data ) ) {
391 # Check for alternate/legacy character encoding.
392 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
393 $data = $contLang->checkTitleEncoding( $data );
394 }
395 $data = $this->normalizeUnicode( $data );
396 return $data;
397 } else {
398 return $default;
399 }
400 }
401
402 /**
403 * Fetch a scalar from the input without normalization, or return $default
404 * if it's not set.
405 *
406 * Unlike self::getVal(), this does not perform any normalization on the
407 * input value.
408 *
409 * @since 1.28
410 * @param string $name
411 * @param string|null $default
412 * @return string|null
413 */
414 public function getRawVal( $name, $default = null ) {
415 $name = strtr( $name, '.', '_' ); // See comment in self::getGPCVal()
416 if ( isset( $this->data[$name] ) && !is_array( $this->data[$name] ) ) {
417 $val = $this->data[$name];
418 } else {
419 $val = $default;
420 }
421 if ( is_null( $val ) ) {
422 return $val;
423 } else {
424 return (string)$val;
425 }
426 }
427
428 /**
429 * Fetch a scalar from the input or return $default if it's not set.
430 * Returns a string. Arrays are discarded. Useful for
431 * non-freeform text inputs (e.g. predefined internal text keys
432 * selected by a drop-down menu). For freeform input, see getText().
433 *
434 * @param string $name
435 * @param string|null $default Optional default (or null)
436 * @return string|null
437 */
438 public function getVal( $name, $default = null ) {
439 $val = $this->getGPCVal( $this->data, $name, $default );
440 if ( is_array( $val ) ) {
441 $val = $default;
442 }
443 if ( is_null( $val ) ) {
444 return $val;
445 } else {
446 return (string)$val;
447 }
448 }
449
450 /**
451 * Set an arbitrary value into our get/post data.
452 *
453 * @param string $key Key name to use
454 * @param mixed $value Value to set
455 * @return mixed Old value if one was present, null otherwise
456 */
457 public function setVal( $key, $value ) {
458 $ret = $this->data[$key] ?? null;
459 $this->data[$key] = $value;
460 return $ret;
461 }
462
463 /**
464 * Unset an arbitrary value from our get/post data.
465 *
466 * @param string $key Key name to use
467 * @return mixed Old value if one was present, null otherwise
468 */
469 public function unsetVal( $key ) {
470 if ( !isset( $this->data[$key] ) ) {
471 $ret = null;
472 } else {
473 $ret = $this->data[$key];
474 unset( $this->data[$key] );
475 }
476 return $ret;
477 }
478
479 /**
480 * Fetch an array from the input or return $default if it's not set.
481 * If source was scalar, will return an array with a single element.
482 * If no source and no default, returns null.
483 *
484 * @param string $name
485 * @param array|null $default Optional default (or null)
486 * @return array|null
487 */
488 public function getArray( $name, $default = null ) {
489 $val = $this->getGPCVal( $this->data, $name, $default );
490 if ( is_null( $val ) ) {
491 return null;
492 } else {
493 return (array)$val;
494 }
495 }
496
497 /**
498 * Fetch an array of integers, or return $default if it's not set.
499 * If source was scalar, will return an array with a single element.
500 * If no source and no default, returns null.
501 * If an array is returned, contents are guaranteed to be integers.
502 *
503 * @param string $name
504 * @param array|null $default Option default (or null)
505 * @return array Array of ints
506 */
507 public function getIntArray( $name, $default = null ) {
508 $val = $this->getArray( $name, $default );
509 if ( is_array( $val ) ) {
510 $val = array_map( 'intval', $val );
511 }
512 return $val;
513 }
514
515 /**
516 * Fetch an integer value from the input or return $default if not set.
517 * Guaranteed to return an integer; non-numeric input will typically
518 * return 0.
519 *
520 * @param string $name
521 * @param int $default
522 * @return int
523 */
524 public function getInt( $name, $default = 0 ) {
525 return intval( $this->getRawVal( $name, $default ) );
526 }
527
528 /**
529 * Fetch an integer value from the input or return null if empty.
530 * Guaranteed to return an integer or null; non-numeric input will
531 * typically return null.
532 *
533 * @param string $name
534 * @return int|null
535 */
536 public function getIntOrNull( $name ) {
537 $val = $this->getRawVal( $name );
538 return is_numeric( $val )
539 ? intval( $val )
540 : null;
541 }
542
543 /**
544 * Fetch a floating point value from the input or return $default if not set.
545 * Guaranteed to return a float; non-numeric input will typically
546 * return 0.
547 *
548 * @since 1.23
549 * @param string $name
550 * @param float $default
551 * @return float
552 */
553 public function getFloat( $name, $default = 0.0 ) {
554 return floatval( $this->getRawVal( $name, $default ) );
555 }
556
557 /**
558 * Fetch a boolean value from the input or return $default if not set.
559 * Guaranteed to return true or false, with normal PHP semantics for
560 * boolean interpretation of strings.
561 *
562 * @param string $name
563 * @param bool $default
564 * @return bool
565 */
566 public function getBool( $name, $default = false ) {
567 return (bool)$this->getRawVal( $name, $default );
568 }
569
570 /**
571 * Fetch a boolean value from the input or return $default if not set.
572 * Unlike getBool, the string "false" will result in boolean false, which is
573 * useful when interpreting information sent from JavaScript.
574 *
575 * @param string $name
576 * @param bool $default
577 * @return bool
578 */
579 public function getFuzzyBool( $name, $default = false ) {
580 return $this->getBool( $name, $default )
581 && strcasecmp( $this->getRawVal( $name ), 'false' ) !== 0;
582 }
583
584 /**
585 * Return true if the named value is set in the input, whatever that
586 * value is (even "0"). Return false if the named value is not set.
587 * Example use is checking for the presence of check boxes in forms.
588 *
589 * @param string $name
590 * @return bool
591 */
592 public function getCheck( $name ) {
593 # Checkboxes and buttons are only present when clicked
594 # Presence connotes truth, absence false
595 return $this->getRawVal( $name, null ) !== null;
596 }
597
598 /**
599 * Fetch a text string from the given array or return $default if it's not
600 * set. Carriage returns are stripped from the text. This should generally
601 * be used for form "<textarea>" and "<input>" fields, and for
602 * user-supplied freeform text input.
603 *
604 * @param string $name
605 * @param string $default Optional
606 * @return string
607 */
608 public function getText( $name, $default = '' ) {
609 $val = $this->getVal( $name, $default );
610 return str_replace( "\r\n", "\n", $val );
611 }
612
613 /**
614 * Extracts the given named values into an array.
615 * If no arguments are given, returns all input values.
616 * No transformation is performed on the values.
617 *
618 * @return array
619 */
620 public function getValues() {
621 $names = func_get_args();
622 if ( count( $names ) == 0 ) {
623 $names = array_keys( $this->data );
624 }
625
626 $retVal = [];
627 foreach ( $names as $name ) {
628 $value = $this->getGPCVal( $this->data, $name, null );
629 if ( !is_null( $value ) ) {
630 $retVal[$name] = $value;
631 }
632 }
633 return $retVal;
634 }
635
636 /**
637 * Returns the names of all input values excluding those in $exclude.
638 *
639 * @param array $exclude
640 * @return array
641 */
642 public function getValueNames( $exclude = [] ) {
643 return array_diff( array_keys( $this->getValues() ), $exclude );
644 }
645
646 /**
647 * Get the values passed in the query string.
648 * No transformation is performed on the values.
649 *
650 * @codeCoverageIgnore
651 * @return array
652 */
653 public function getQueryValues() {
654 return $_GET;
655 }
656
657 /**
658 * Get the values passed via POST.
659 * No transformation is performed on the values.
660 *
661 * @since 1.32
662 * @codeCoverageIgnore
663 * @return array
664 */
665 public function getPostValues() {
666 return $_POST;
667 }
668
669 /**
670 * Return the contents of the Query with no decoding. Use when you need to
671 * know exactly what was sent, e.g. for an OAuth signature over the elements.
672 *
673 * @codeCoverageIgnore
674 * @return string
675 */
676 public function getRawQueryString() {
677 return $_SERVER['QUERY_STRING'];
678 }
679
680 /**
681 * Return the contents of the POST with no decoding. Use when you need to
682 * know exactly what was sent, e.g. for an OAuth signature over the elements.
683 *
684 * @return string
685 */
686 public function getRawPostString() {
687 if ( !$this->wasPosted() ) {
688 return '';
689 }
690 return $this->getRawInput();
691 }
692
693 /**
694 * Return the raw request body, with no processing. Cached since some methods
695 * disallow reading the stream more than once. As stated in the php docs, this
696 * does not work with enctype="multipart/form-data".
697 *
698 * @return string
699 */
700 public function getRawInput() {
701 static $input = null;
702 if ( $input === null ) {
703 $input = file_get_contents( 'php://input' );
704 }
705 return $input;
706 }
707
708 /**
709 * Get the HTTP method used for this request.
710 *
711 * @return string
712 */
713 public function getMethod() {
714 return $_SERVER['REQUEST_METHOD'] ?? 'GET';
715 }
716
717 /**
718 * Returns true if the present request was reached by a POST operation,
719 * false otherwise (GET, HEAD, or command-line).
720 *
721 * Note that values retrieved by the object may come from the
722 * GET URL etc even on a POST request.
723 *
724 * @return bool
725 */
726 public function wasPosted() {
727 return $this->getMethod() == 'POST';
728 }
729
730 /**
731 * Return the session for this request
732 *
733 * This might unpersist an existing session if it was invalid.
734 *
735 * @since 1.27
736 * @note For performance, keep the session locally if you will be making
737 * much use of it instead of calling this method repeatedly.
738 * @return Session
739 */
740 public function getSession() {
741 if ( $this->sessionId !== null ) {
742 $session = SessionManager::singleton()->getSessionById( (string)$this->sessionId, true, $this );
743 if ( $session ) {
744 return $session;
745 }
746 }
747
748 $session = SessionManager::singleton()->getSessionForRequest( $this );
749 $this->sessionId = $session->getSessionId();
750 return $session;
751 }
752
753 /**
754 * Set the session for this request
755 * @since 1.27
756 * @private For use by MediaWiki\Session classes only
757 * @param SessionId $sessionId
758 */
759 public function setSessionId( SessionId $sessionId ) {
760 $this->sessionId = $sessionId;
761 }
762
763 /**
764 * Get the session id for this request, if any
765 * @since 1.27
766 * @private For use by MediaWiki\Session classes only
767 * @return SessionId|null
768 */
769 public function getSessionId() {
770 return $this->sessionId;
771 }
772
773 /**
774 * Get a cookie from the $_COOKIE jar
775 *
776 * @param string $key The name of the cookie
777 * @param string|null $prefix A prefix to use for the cookie name, if not $wgCookiePrefix
778 * @param mixed|null $default What to return if the value isn't found
779 * @return mixed Cookie value or $default if the cookie not set
780 */
781 public function getCookie( $key, $prefix = null, $default = null ) {
782 if ( $prefix === null ) {
783 global $wgCookiePrefix;
784 $prefix = $wgCookiePrefix;
785 }
786 return $this->getGPCVal( $_COOKIE, $prefix . $key, $default );
787 }
788
789 /**
790 * Return the path and query string portion of the main request URI.
791 * This will be suitable for use as a relative link in HTML output.
792 *
793 * @throws MWException
794 * @return string
795 */
796 public static function getGlobalRequestURL() {
797 // This method is called on fatal errors; it should not depend on anything complex.
798
799 if ( isset( $_SERVER['REQUEST_URI'] ) && strlen( $_SERVER['REQUEST_URI'] ) ) {
800 $base = $_SERVER['REQUEST_URI'];
801 } elseif ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] )
802 && strlen( $_SERVER['HTTP_X_ORIGINAL_URL'] )
803 ) {
804 // Probably IIS; doesn't set REQUEST_URI
805 $base = $_SERVER['HTTP_X_ORIGINAL_URL'];
806 } elseif ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
807 $base = $_SERVER['SCRIPT_NAME'];
808 if ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] != '' ) {
809 $base .= '?' . $_SERVER['QUERY_STRING'];
810 }
811 } else {
812 // This shouldn't happen!
813 throw new MWException( "Web server doesn't provide either " .
814 "REQUEST_URI, HTTP_X_ORIGINAL_URL or SCRIPT_NAME. Report details " .
815 "of your web server configuration to https://phabricator.wikimedia.org/" );
816 }
817 // User-agents should not send a fragment with the URI, but
818 // if they do, and the web server passes it on to us, we
819 // need to strip it or we get false-positive redirect loops
820 // or weird output URLs
821 $hash = strpos( $base, '#' );
822 if ( $hash !== false ) {
823 $base = substr( $base, 0, $hash );
824 }
825
826 if ( $base[0] == '/' ) {
827 // More than one slash will look like it is protocol relative
828 return preg_replace( '!^/+!', '/', $base );
829 } else {
830 // We may get paths with a host prepended; strip it.
831 return preg_replace( '!^[^:]+://[^/]+/+!', '/', $base );
832 }
833 }
834
835 /**
836 * Return the path and query string portion of the request URI.
837 * This will be suitable for use as a relative link in HTML output.
838 *
839 * @throws MWException
840 * @return string
841 */
842 public function getRequestURL() {
843 return self::getGlobalRequestURL();
844 }
845
846 /**
847 * Return the request URI with the canonical service and hostname, path,
848 * and query string. This will be suitable for use as an absolute link
849 * in HTML or other output.
850 *
851 * If $wgServer is protocol-relative, this will return a fully
852 * qualified URL with the protocol that was used for this request.
853 *
854 * @return string
855 */
856 public function getFullRequestURL() {
857 return wfGetServerUrl( PROTO_CURRENT ) . $this->getRequestURL();
858 }
859
860 /**
861 * @param string $key
862 * @param string $value
863 * @return string
864 */
865 public function appendQueryValue( $key, $value ) {
866 return $this->appendQueryArray( [ $key => $value ] );
867 }
868
869 /**
870 * Appends or replaces value of query variables.
871 *
872 * @param array $array Array of values to replace/add to query
873 * @return string
874 */
875 public function appendQueryArray( $array ) {
876 $newquery = $this->getQueryValues();
877 unset( $newquery['title'] );
878 $newquery = array_merge( $newquery, $array );
879
880 return wfArrayToCgi( $newquery );
881 }
882
883 /**
884 * Check for limit and offset parameters on the input, and return sensible
885 * defaults if not given. The limit must be positive and is capped at 5000.
886 * Offset must be positive but is not capped.
887 *
888 * @param int $deflimit Limit to use if no input and the user hasn't set the option.
889 * @param string $optionname To specify an option other than rclimit to pull from.
890 * @return int[] First element is limit, second is offset
891 */
892 public function getLimitOffset( $deflimit = 50, $optionname = 'rclimit' ) {
893 global $wgUser;
894
895 $limit = $this->getInt( 'limit', 0 );
896 if ( $limit < 0 ) {
897 $limit = 0;
898 }
899 if ( ( $limit == 0 ) && ( $optionname != '' ) ) {
900 $limit = $wgUser->getIntOption( $optionname );
901 }
902 if ( $limit <= 0 ) {
903 $limit = $deflimit;
904 }
905 if ( $limit > 5000 ) {
906 $limit = 5000; # We have *some* limits...
907 }
908
909 $offset = $this->getInt( 'offset', 0 );
910 if ( $offset < 0 ) {
911 $offset = 0;
912 }
913
914 return [ $limit, $offset ];
915 }
916
917 /**
918 * Return the path to the temporary file where PHP has stored the upload.
919 *
920 * @param string $key
921 * @return string|null String or null if no such file.
922 */
923 public function getFileTempname( $key ) {
924 $file = new WebRequestUpload( $this, $key );
925 return $file->getTempName();
926 }
927
928 /**
929 * Return the upload error or 0
930 *
931 * @param string $key
932 * @return int
933 */
934 public function getUploadError( $key ) {
935 $file = new WebRequestUpload( $this, $key );
936 return $file->getError();
937 }
938
939 /**
940 * Return the original filename of the uploaded file, as reported by
941 * the submitting user agent. HTML-style character entities are
942 * interpreted and normalized to Unicode normalization form C, in part
943 * to deal with weird input from Safari with non-ASCII filenames.
944 *
945 * Other than this the name is not verified for being a safe filename.
946 *
947 * @param string $key
948 * @return string|null String or null if no such file.
949 */
950 public function getFileName( $key ) {
951 $file = new WebRequestUpload( $this, $key );
952 return $file->getName();
953 }
954
955 /**
956 * Return a WebRequestUpload object corresponding to the key
957 *
958 * @param string $key
959 * @return WebRequestUpload
960 */
961 public function getUpload( $key ) {
962 return new WebRequestUpload( $this, $key );
963 }
964
965 /**
966 * Return a handle to WebResponse style object, for setting cookies,
967 * headers and other stuff, for Request being worked on.
968 *
969 * @return WebResponse
970 */
971 public function response() {
972 /* Lazy initialization of response object for this request */
973 if ( !is_object( $this->response ) ) {
974 $class = ( $this instanceof FauxRequest ) ? FauxResponse::class : WebResponse::class;
975 $this->response = new $class();
976 }
977 return $this->response;
978 }
979
980 /**
981 * Initialise the header list
982 */
983 protected function initHeaders() {
984 if ( count( $this->headers ) ) {
985 return;
986 }
987
988 $apacheHeaders = function_exists( 'apache_request_headers' ) ? apache_request_headers() : false;
989 if ( $apacheHeaders ) {
990 foreach ( $apacheHeaders as $tempName => $tempValue ) {
991 $this->headers[strtoupper( $tempName )] = $tempValue;
992 }
993 } else {
994 foreach ( $_SERVER as $name => $value ) {
995 if ( substr( $name, 0, 5 ) === 'HTTP_' ) {
996 $name = str_replace( '_', '-', substr( $name, 5 ) );
997 $this->headers[$name] = $value;
998 } elseif ( $name === 'CONTENT_LENGTH' ) {
999 $this->headers['CONTENT-LENGTH'] = $value;
1000 }
1001 }
1002 }
1003 }
1004
1005 /**
1006 * Get an array containing all request headers
1007 *
1008 * @return array Mapping header name to its value
1009 */
1010 public function getAllHeaders() {
1011 $this->initHeaders();
1012 return $this->headers;
1013 }
1014
1015 /**
1016 * Get a request header, or false if it isn't set.
1017 *
1018 * @param string $name Case-insensitive header name
1019 * @param int $flags Bitwise combination of:
1020 * WebRequest::GETHEADER_LIST Treat the header as a comma-separated list
1021 * of values, as described in RFC 2616 § 4.2.
1022 * (since 1.26).
1023 * @return string|array|bool False if header is unset; otherwise the
1024 * header value(s) as either a string (the default) or an array, if
1025 * WebRequest::GETHEADER_LIST flag was set.
1026 */
1027 public function getHeader( $name, $flags = 0 ) {
1028 $this->initHeaders();
1029 $name = strtoupper( $name );
1030 if ( !isset( $this->headers[$name] ) ) {
1031 return false;
1032 }
1033 $value = $this->headers[$name];
1034 if ( $flags & self::GETHEADER_LIST ) {
1035 $value = array_map( 'trim', explode( ',', $value ) );
1036 }
1037 return $value;
1038 }
1039
1040 /**
1041 * Get data from the session
1042 *
1043 * @note Prefer $this->getSession() instead if making multiple calls.
1044 * @param string $key Name of key in the session
1045 * @return mixed
1046 */
1047 public function getSessionData( $key ) {
1048 return $this->getSession()->get( $key );
1049 }
1050
1051 /**
1052 * Set session data
1053 *
1054 * @note Prefer $this->getSession() instead if making multiple calls.
1055 * @param string $key Name of key in the session
1056 * @param mixed $data
1057 */
1058 public function setSessionData( $key, $data ) {
1059 $this->getSession()->set( $key, $data );
1060 }
1061
1062 /**
1063 * Check if Internet Explorer will detect an incorrect cache extension in
1064 * PATH_INFO or QUERY_STRING. If the request can't be allowed, show an error
1065 * message or redirect to a safer URL. Returns true if the URL is OK, and
1066 * false if an error message has been shown and the request should be aborted.
1067 *
1068 * @param array $extWhitelist
1069 * @throws HttpError
1070 * @return bool
1071 */
1072 public function checkUrlExtension( $extWhitelist = [] ) {
1073 $extWhitelist[] = 'php';
1074 if ( IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist ) ) {
1075 if ( !$this->wasPosted() ) {
1076 $newUrl = IEUrlExtension::fixUrlForIE6(
1077 $this->getFullRequestURL(), $extWhitelist );
1078 if ( $newUrl !== false ) {
1079 $this->doSecurityRedirect( $newUrl );
1080 return false;
1081 }
1082 }
1083 throw new HttpError( 403,
1084 'Invalid file extension found in the path info or query string.' );
1085 }
1086 return true;
1087 }
1088
1089 /**
1090 * Attempt to redirect to a URL with a QUERY_STRING that's not dangerous in
1091 * IE 6. Returns true if it was successful, false otherwise.
1092 *
1093 * @param string $url
1094 * @return bool
1095 */
1096 protected function doSecurityRedirect( $url ) {
1097 header( 'Location: ' . $url );
1098 header( 'Content-Type: text/html' );
1099 $encUrl = htmlspecialchars( $url );
1100 echo <<<HTML
1101 <!DOCTYPE html>
1102 <html>
1103 <head>
1104 <title>Security redirect</title>
1105 </head>
1106 <body>
1107 <h1>Security redirect</h1>
1108 <p>
1109 We can't serve non-HTML content from the URL you have requested, because
1110 Internet Explorer would interpret it as an incorrect and potentially dangerous
1111 content type.</p>
1112 <p>Instead, please use <a href="$encUrl">this URL</a>, which is the same as the
1113 URL you have requested, except that "&amp;*" is appended. This prevents Internet
1114 Explorer from seeing a bogus file extension.
1115 </p>
1116 </body>
1117 </html>
1118 HTML;
1119 echo "\n";
1120 return true;
1121 }
1122
1123 /**
1124 * Parse the Accept-Language header sent by the client into an array
1125 *
1126 * @return array Array( languageCode => q-value ) sorted by q-value in
1127 * descending order then appearing time in the header in ascending order.
1128 * May contain the "language" '*', which applies to languages other than those explicitly listed.
1129 * This is aligned with rfc2616 section 14.4
1130 * Preference for earlier languages appears in rfc3282 as an extension to HTTP/1.1.
1131 */
1132 public function getAcceptLang() {
1133 // Modified version of code found at
1134 // http://www.thefutureoftheweb.com/blog/use-accept-language-header
1135 $acceptLang = $this->getHeader( 'Accept-Language' );
1136 if ( !$acceptLang ) {
1137 return [];
1138 }
1139
1140 // Return the language codes in lower case
1141 $acceptLang = strtolower( $acceptLang );
1142
1143 // Break up string into pieces (languages and q factors)
1144 $lang_parse = null;
1145 preg_match_all(
1146 '/([a-z]{1,8}(-[a-z]{1,8})*|\*)\s*(;\s*q\s*=\s*(1(\.0{0,3})?|0(\.[0-9]{0,3})?)?)?/',
1147 $acceptLang,
1148 $lang_parse
1149 );
1150
1151 if ( !count( $lang_parse[1] ) ) {
1152 return [];
1153 }
1154
1155 $langcodes = $lang_parse[1];
1156 $qvalues = $lang_parse[4];
1157 $indices = range( 0, count( $lang_parse[1] ) - 1 );
1158
1159 // Set default q factor to 1
1160 foreach ( $indices as $index ) {
1161 if ( $qvalues[$index] === '' ) {
1162 $qvalues[$index] = 1;
1163 } elseif ( $qvalues[$index] == 0 ) {
1164 unset( $langcodes[$index], $qvalues[$index], $indices[$index] );
1165 }
1166 }
1167
1168 // Sort list. First by $qvalues, then by order. Reorder $langcodes the same way
1169 array_multisort( $qvalues, SORT_DESC, SORT_NUMERIC, $indices, $langcodes );
1170
1171 // Create a list like "en" => 0.8
1172 $langs = array_combine( $langcodes, $qvalues );
1173
1174 return $langs;
1175 }
1176
1177 /**
1178 * Fetch the raw IP from the request
1179 *
1180 * @since 1.19
1181 *
1182 * @throws MWException
1183 * @return string
1184 */
1185 protected function getRawIP() {
1186 if ( !isset( $_SERVER['REMOTE_ADDR'] ) ) {
1187 return null;
1188 }
1189
1190 if ( is_array( $_SERVER['REMOTE_ADDR'] ) || strpos( $_SERVER['REMOTE_ADDR'], ',' ) !== false ) {
1191 throw new MWException( __METHOD__
1192 . " : Could not determine the remote IP address due to multiple values." );
1193 } else {
1194 $ipchain = $_SERVER['REMOTE_ADDR'];
1195 }
1196
1197 return IP::canonicalize( $ipchain );
1198 }
1199
1200 /**
1201 * Work out the IP address based on various globals
1202 * For trusted proxies, use the XFF client IP (first of the chain)
1203 *
1204 * @since 1.19
1205 *
1206 * @throws MWException
1207 * @return string
1208 */
1209 public function getIP() {
1210 global $wgUsePrivateIPs;
1211
1212 # Return cached result
1213 if ( $this->ip !== null ) {
1214 return $this->ip;
1215 }
1216
1217 # collect the originating ips
1218 $ip = $this->getRawIP();
1219 if ( !$ip ) {
1220 throw new MWException( 'Unable to determine IP.' );
1221 }
1222
1223 # Append XFF
1224 $forwardedFor = $this->getHeader( 'X-Forwarded-For' );
1225 if ( $forwardedFor !== false ) {
1226 $proxyLookup = MediaWikiServices::getInstance()->getProxyLookup();
1227 $isConfigured = $proxyLookup->isConfiguredProxy( $ip );
1228 $ipchain = array_map( 'trim', explode( ',', $forwardedFor ) );
1229 $ipchain = array_reverse( $ipchain );
1230 array_unshift( $ipchain, $ip );
1231
1232 # Step through XFF list and find the last address in the list which is a
1233 # trusted server. Set $ip to the IP address given by that trusted server,
1234 # unless the address is not sensible (e.g. private). However, prefer private
1235 # IP addresses over proxy servers controlled by this site (more sensible).
1236 # Note that some XFF values might be "unknown" with Squid/Varnish.
1237 foreach ( $ipchain as $i => $curIP ) {
1238 $curIP = IP::sanitizeIP( IP::canonicalize( $curIP ) );
1239 if ( !$curIP || !isset( $ipchain[$i + 1] ) || $ipchain[$i + 1] === 'unknown'
1240 || !$proxyLookup->isTrustedProxy( $curIP )
1241 ) {
1242 break; // IP is not valid/trusted or does not point to anything
1243 }
1244 if (
1245 IP::isPublic( $ipchain[$i + 1] ) ||
1246 $wgUsePrivateIPs ||
1247 $proxyLookup->isConfiguredProxy( $curIP ) // T50919; treat IP as sane
1248 ) {
1249 // Follow the next IP according to the proxy
1250 $nextIP = IP::canonicalize( $ipchain[$i + 1] );
1251 if ( !$nextIP && $isConfigured ) {
1252 // We have not yet made it past CDN/proxy servers of this site,
1253 // so either they are misconfigured or there is some IP spoofing.
1254 throw new MWException( "Invalid IP given in XFF '$forwardedFor'." );
1255 }
1256 $ip = $nextIP;
1257 // keep traversing the chain
1258 continue;
1259 }
1260 break;
1261 }
1262 }
1263
1264 # Allow extensions to improve our guess
1265 Hooks::run( 'GetIP', [ &$ip ] );
1266
1267 if ( !$ip ) {
1268 throw new MWException( "Unable to determine IP." );
1269 }
1270
1271 wfDebug( "IP: $ip\n" );
1272 $this->ip = $ip;
1273 return $ip;
1274 }
1275
1276 /**
1277 * @param string $ip
1278 * @return void
1279 * @since 1.21
1280 */
1281 public function setIP( $ip ) {
1282 $this->ip = $ip;
1283 }
1284
1285 /**
1286 * Check if this request uses a "safe" HTTP method
1287 *
1288 * Safe methods are verbs (e.g. GET/HEAD/OPTIONS) used for obtaining content. Such requests
1289 * are not expected to mutate content, especially in ways attributable to the client. Verbs
1290 * like POST and PUT are typical of non-safe requests which often change content.
1291 *
1292 * @return bool
1293 * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
1294 * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
1295 * @since 1.28
1296 */
1297 public function hasSafeMethod() {
1298 if ( !isset( $_SERVER['REQUEST_METHOD'] ) ) {
1299 return false; // CLI mode
1300 }
1301
1302 return in_array( $_SERVER['REQUEST_METHOD'], [ 'GET', 'HEAD', 'OPTIONS', 'TRACE' ] );
1303 }
1304
1305 /**
1306 * Whether this request should be identified as being "safe"
1307 *
1308 * This means that the client is not requesting any state changes and that database writes
1309 * are not inherently required. Ideally, no visible updates would happen at all. If they
1310 * must, then they should not be publicly attributed to the end user.
1311 *
1312 * In more detail:
1313 * - Cache populations and refreshes MAY occur.
1314 * - Private user session updates and private server logging MAY occur.
1315 * - Updates to private viewing activity data MAY occur via DeferredUpdates.
1316 * - Other updates SHOULD NOT occur (e.g. modifying content assets).
1317 *
1318 * @return bool
1319 * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
1320 * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
1321 * @since 1.28
1322 */
1323 public function isSafeRequest() {
1324 if ( $this->markedAsSafe && $this->wasPosted() ) {
1325 return true; // marked as a "safe" POST
1326 }
1327
1328 return $this->hasSafeMethod();
1329 }
1330
1331 /**
1332 * Mark this request as identified as being nullipotent even if it is a POST request
1333 *
1334 * POST requests are often used due to the need for a client payload, even if the request
1335 * is otherwise equivalent to a "safe method" request.
1336 *
1337 * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
1338 * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
1339 * @since 1.28
1340 */
1341 public function markAsSafeRequest() {
1342 $this->markedAsSafe = true;
1343 }
1344 }