Another @group Broken
[mediawiki.git] / includes / WebRequest.php
blob65fe0c7b5e99d816cce39807ea49b4c868ea2946
1 <?php
2 /**
3 * Deal with importing all those nasssty globals and things
5 * Copyright © 2003 Brion Vibber <brion@pobox.com>
6 * http://www.mediawiki.org/
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.
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.
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
23 * @file
26 /**
27 * The WebRequest class encapsulates getting at data passed in the
28 * URL or via a POSTed form, handling remove of "magic quotes" slashes,
29 * stripping illegal input characters and normalizing Unicode sequences.
31 * Usually this is used via a global singleton, $wgRequest. You should
32 * not create a second WebRequest object; make a FauxRequest object if
33 * you want to pass arbitrary data to some function in place of the web
34 * input.
36 * @ingroup HTTP
38 class WebRequest {
39 protected $data, $headers = array();
41 /**
42 * Lazy-init response object
43 * @var WebResponse
45 private $response;
47 /**
48 * Cached client IP address
49 * @var String
51 private $ip;
53 public function __construct() {
54 /// @todo FIXME: This preemptive de-quoting can interfere with other web libraries
55 /// and increases our memory footprint. It would be cleaner to do on
56 /// demand; but currently we have no wrapper for $_SERVER etc.
57 $this->checkMagicQuotes();
59 // POST overrides GET data
60 // We don't use $_REQUEST here to avoid interference from cookies...
61 $this->data = $_POST + $_GET;
64 /**
65 * Extract relevant query arguments from the http request uri's path
66 * to be merged with the normal php provided query arguments.
67 * Tries to use the REQUEST_URI data if available and parses it
68 * according to the wiki's configuration looking for any known pattern.
70 * If the REQUEST_URI is not provided we'll fall back on the PATH_INFO
71 * provided by the server if any and use that to set a 'title' parameter.
73 * @param $want string: If this is not 'all', then the function
74 * will return an empty array if it determines that the URL is
75 * inside a rewrite path.
77 * @return Array: Any query arguments found in path matches.
79 static public function getPathInfo( $want = 'all' ) {
80 // PATH_INFO is mangled due to http://bugs.php.net/bug.php?id=31892
81 // And also by Apache 2.x, double slashes are converted to single slashes.
82 // So we will use REQUEST_URI if possible.
83 $matches = array();
84 if ( !empty( $_SERVER['REQUEST_URI'] ) ) {
85 // Slurp out the path portion to examine...
86 $url = $_SERVER['REQUEST_URI'];
87 if ( !preg_match( '!^https?://!', $url ) ) {
88 $url = 'http://unused' . $url;
90 $a = parse_url( $url );
91 if( $a ) {
92 $path = isset( $a['path'] ) ? $a['path'] : '';
94 global $wgScript;
95 if( $path == $wgScript && $want !== 'all' ) {
96 // Script inside a rewrite path?
97 // Abort to keep from breaking...
98 return $matches;
101 $router = new PathRouter;
103 // Raw PATH_INFO style
104 $router->add( "$wgScript/$1" );
106 if( isset( $_SERVER['SCRIPT_NAME'] )
107 && preg_match( '/\.php5?/', $_SERVER['SCRIPT_NAME'] ) )
109 # Check for SCRIPT_NAME, we handle index.php explicitly
110 # But we do have some other .php files such as img_auth.php
111 # Don't let root article paths clober the parsing for them
112 $router->add( $_SERVER['SCRIPT_NAME'] . "/$1" );
115 global $wgArticlePath;
116 if( $wgArticlePath ) {
117 $router->add( $wgArticlePath );
120 global $wgActionPaths;
121 if( $wgActionPaths ) {
122 $router->add( $wgActionPaths, array( 'action' => '$key' ) );
125 global $wgVariantArticlePath, $wgContLang;
126 if( $wgVariantArticlePath ) {
127 $router->add( $wgVariantArticlePath,
128 array( 'variant' => '$2'),
129 array( '$2' => $wgContLang->getVariants() )
133 wfRunHooks( 'WebRequestPathInfoRouter', array( $router ) );
135 $matches = $router->parse( $path );
137 } elseif ( isset( $_SERVER['ORIG_PATH_INFO'] ) && $_SERVER['ORIG_PATH_INFO'] != '' ) {
138 // Mangled PATH_INFO
139 // http://bugs.php.net/bug.php?id=31892
140 // Also reported when ini_get('cgi.fix_pathinfo')==false
141 $matches['title'] = substr( $_SERVER['ORIG_PATH_INFO'], 1 );
143 } elseif ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != '') ) {
144 // Regular old PATH_INFO yay
145 $matches['title'] = substr( $_SERVER['PATH_INFO'], 1 );
148 return $matches;
152 * Work out an appropriate URL prefix containing scheme and host, based on
153 * information detected from $_SERVER
155 * @return string
157 public static function detectServer() {
158 list( $proto, $stdPort ) = self::detectProtocolAndStdPort();
160 $varNames = array( 'HTTP_HOST', 'SERVER_NAME', 'HOSTNAME', 'SERVER_ADDR' );
161 $host = 'localhost';
162 $port = $stdPort;
163 foreach ( $varNames as $varName ) {
164 if ( !isset( $_SERVER[$varName] ) ) {
165 continue;
167 $parts = IP::splitHostAndPort( $_SERVER[$varName] );
168 if ( !$parts ) {
169 // Invalid, do not use
170 continue;
172 $host = $parts[0];
173 if ( $parts[1] === false ) {
174 if ( isset( $_SERVER['SERVER_PORT'] ) ) {
175 $port = $_SERVER['SERVER_PORT'];
176 } // else leave it as $stdPort
177 } else {
178 $port = $parts[1];
180 break;
183 return $proto . '://' . IP::combineHostAndPort( $host, $port, $stdPort );
187 * @return array
189 public static function detectProtocolAndStdPort() {
190 return ( isset( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] == 'on' ) ? array( 'https', 443 ) : array( 'http', 80 );
194 * @return string
196 public static function detectProtocol() {
197 list( $proto, $stdPort ) = self::detectProtocolAndStdPort();
198 return $proto;
202 * Check for title, action, and/or variant data in the URL
203 * and interpolate it into the GET variables.
204 * This should only be run after $wgContLang is available,
205 * as we may need the list of language variants to determine
206 * available variant URLs.
208 public function interpolateTitle() {
209 global $wgUsePathInfo;
211 // bug 16019: title interpolation on API queries is useless and sometimes harmful
212 if ( defined( 'MW_API' ) ) {
213 return;
216 if ( $wgUsePathInfo ) {
217 $matches = self::getPathInfo( 'title' );
218 foreach( $matches as $key => $val) {
219 $this->data[$key] = $_GET[$key] = $_REQUEST[$key] = $val;
225 * URL rewriting function; tries to extract page title and,
226 * optionally, one other fixed parameter value from a URL path.
228 * @param $path string: the URL path given from the client
229 * @param $bases array: one or more URLs, optionally with $1 at the end
230 * @param $key string: if provided, the matching key in $bases will be
231 * passed on as the value of this URL parameter
232 * @return array of URL variables to interpolate; empty if no match
234 static function extractTitle( $path, $bases, $key = false ) {
235 foreach( (array)$bases as $keyValue => $base ) {
236 // Find the part after $wgArticlePath
237 $base = str_replace( '$1', '', $base );
238 $baseLen = strlen( $base );
239 if( substr( $path, 0, $baseLen ) == $base ) {
240 $raw = substr( $path, $baseLen );
241 if( $raw !== '' ) {
242 $matches = array( 'title' => rawurldecode( $raw ) );
243 if( $key ) {
244 $matches[$key] = $keyValue;
246 return $matches;
250 return array();
254 * Recursively strips slashes from the given array;
255 * used for undoing the evil that is magic_quotes_gpc.
257 * @param $arr array: will be modified
258 * @param $topLevel bool Specifies if the array passed is from the top
259 * level of the source. In PHP5 magic_quotes only escapes the first level
260 * of keys that belong to an array.
261 * @return array the original array
262 * @see http://www.php.net/manual/en/function.get-magic-quotes-gpc.php#49612
264 private function &fix_magic_quotes( &$arr, $topLevel = true ) {
265 $clean = array();
266 foreach( $arr as $key => $val ) {
267 if( is_array( $val ) ) {
268 $cleanKey = $topLevel ? stripslashes( $key ) : $key;
269 $clean[$cleanKey] = $this->fix_magic_quotes( $arr[$key], false );
270 } else {
271 $cleanKey = stripslashes( $key );
272 $clean[$cleanKey] = stripslashes( $val );
275 $arr = $clean;
276 return $arr;
280 * If magic_quotes_gpc option is on, run the global arrays
281 * through fix_magic_quotes to strip out the stupid slashes.
282 * WARNING: This should only be done once! Running a second
283 * time could damage the values.
285 private function checkMagicQuotes() {
286 $mustFixQuotes = function_exists( 'get_magic_quotes_gpc' )
287 && get_magic_quotes_gpc();
288 if( $mustFixQuotes ) {
289 $this->fix_magic_quotes( $_COOKIE );
290 $this->fix_magic_quotes( $_ENV );
291 $this->fix_magic_quotes( $_GET );
292 $this->fix_magic_quotes( $_POST );
293 $this->fix_magic_quotes( $_REQUEST );
294 $this->fix_magic_quotes( $_SERVER );
299 * Recursively normalizes UTF-8 strings in the given array.
301 * @param $data string or array
302 * @return cleaned-up version of the given
303 * @private
305 function normalizeUnicode( $data ) {
306 if( is_array( $data ) ) {
307 foreach( $data as $key => $val ) {
308 $data[$key] = $this->normalizeUnicode( $val );
310 } else {
311 global $wgContLang;
312 $data = isset( $wgContLang ) ? $wgContLang->normalize( $data ) : UtfNormal::cleanUp( $data );
314 return $data;
318 * Fetch a value from the given array or return $default if it's not set.
320 * @param $arr Array
321 * @param $name String
322 * @param $default Mixed
323 * @return mixed
325 private function getGPCVal( $arr, $name, $default ) {
326 # PHP is so nice to not touch input data, except sometimes:
327 # http://us2.php.net/variables.external#language.variables.external.dot-in-names
328 # Work around PHP *feature* to avoid *bugs* elsewhere.
329 $name = strtr( $name, '.', '_' );
330 if( isset( $arr[$name] ) ) {
331 global $wgContLang;
332 $data = $arr[$name];
333 if( isset( $_GET[$name] ) && !is_array( $data ) ) {
334 # Check for alternate/legacy character encoding.
335 if( isset( $wgContLang ) ) {
336 $data = $wgContLang->checkTitleEncoding( $data );
339 $data = $this->normalizeUnicode( $data );
340 return $data;
341 } else {
342 taint( $default );
343 return $default;
348 * Fetch a scalar from the input or return $default if it's not set.
349 * Returns a string. Arrays are discarded. Useful for
350 * non-freeform text inputs (e.g. predefined internal text keys
351 * selected by a drop-down menu). For freeform input, see getText().
353 * @param $name String
354 * @param $default String: optional default (or NULL)
355 * @return String
357 public function getVal( $name, $default = null ) {
358 $val = $this->getGPCVal( $this->data, $name, $default );
359 if( is_array( $val ) ) {
360 $val = $default;
362 if( is_null( $val ) ) {
363 return $val;
364 } else {
365 return (string)$val;
370 * Set an arbitrary value into our get/post data.
372 * @param $key String: key name to use
373 * @param $value Mixed: value to set
374 * @return Mixed: old value if one was present, null otherwise
376 public function setVal( $key, $value ) {
377 $ret = isset( $this->data[$key] ) ? $this->data[$key] : null;
378 $this->data[$key] = $value;
379 return $ret;
383 * Fetch an array from the input or return $default if it's not set.
384 * If source was scalar, will return an array with a single element.
385 * If no source and no default, returns NULL.
387 * @param $name String
388 * @param $default Array: optional default (or NULL)
389 * @return Array
391 public function getArray( $name, $default = null ) {
392 $val = $this->getGPCVal( $this->data, $name, $default );
393 if( is_null( $val ) ) {
394 return null;
395 } else {
396 return (array)$val;
401 * Fetch an array of integers, or return $default if it's not set.
402 * If source was scalar, will return an array with a single element.
403 * If no source and no default, returns NULL.
404 * If an array is returned, contents are guaranteed to be integers.
406 * @param $name String
407 * @param $default Array: option default (or NULL)
408 * @return Array of ints
410 public function getIntArray( $name, $default = null ) {
411 $val = $this->getArray( $name, $default );
412 if( is_array( $val ) ) {
413 $val = array_map( 'intval', $val );
415 return $val;
419 * Fetch an integer value from the input or return $default if not set.
420 * Guaranteed to return an integer; non-numeric input will typically
421 * return 0.
423 * @param $name String
424 * @param $default Integer
425 * @return Integer
427 public function getInt( $name, $default = 0 ) {
428 return intval( $this->getVal( $name, $default ) );
432 * Fetch an integer value from the input or return null if empty.
433 * Guaranteed to return an integer or null; non-numeric input will
434 * typically return null.
436 * @param $name String
437 * @return Integer
439 public function getIntOrNull( $name ) {
440 $val = $this->getVal( $name );
441 return is_numeric( $val )
442 ? intval( $val )
443 : null;
447 * Fetch a boolean value from the input or return $default if not set.
448 * Guaranteed to return true or false, with normal PHP semantics for
449 * boolean interpretation of strings.
451 * @param $name String
452 * @param $default Boolean
453 * @return Boolean
455 public function getBool( $name, $default = false ) {
456 return (bool)$this->getVal( $name, $default );
460 * Fetch a boolean value from the input or return $default if not set.
461 * Unlike getBool, the string "false" will result in boolean false, which is
462 * useful when interpreting information sent from JavaScript.
464 * @param $name String
465 * @param $default Boolean
466 * @return Boolean
468 public function getFuzzyBool( $name, $default = false ) {
469 return $this->getBool( $name, $default ) && strcasecmp( $this->getVal( $name ), 'false' ) !== 0;
473 * Return true if the named value is set in the input, whatever that
474 * value is (even "0"). Return false if the named value is not set.
475 * Example use is checking for the presence of check boxes in forms.
477 * @param $name String
478 * @return Boolean
480 public function getCheck( $name ) {
481 # Checkboxes and buttons are only present when clicked
482 # Presence connotes truth, abscense false
483 $val = $this->getVal( $name, null );
484 return isset( $val );
488 * Fetch a text string from the given array or return $default if it's not
489 * set. Carriage returns are stripped from the text, and with some language
490 * modules there is an input transliteration applied. This should generally
491 * be used for form <textarea> and <input> fields. Used for user-supplied
492 * freeform text input (for which input transformations may be required - e.g.
493 * Esperanto x-coding).
495 * @param $name String
496 * @param $default String: optional
497 * @return String
499 public function getText( $name, $default = '' ) {
500 global $wgContLang;
501 $val = $this->getVal( $name, $default );
502 return str_replace( "\r\n", "\n",
503 $wgContLang->recodeInput( $val ) );
507 * Extracts the given named values into an array.
508 * If no arguments are given, returns all input values.
509 * No transformation is performed on the values.
511 * @return array
513 public function getValues() {
514 $names = func_get_args();
515 if ( count( $names ) == 0 ) {
516 $names = array_keys( $this->data );
519 $retVal = array();
520 foreach ( $names as $name ) {
521 $value = $this->getVal( $name );
522 if ( !is_null( $value ) ) {
523 $retVal[$name] = $value;
526 return $retVal;
530 * Returns the names of all input values excluding those in $exclude.
532 * @param $exclude Array
533 * @return array
535 public function getValueNames( $exclude = array() ) {
536 return array_diff( array_keys( $this->getValues() ), $exclude );
540 * Get the values passed in the query string.
541 * No transformation is performed on the values.
543 * @return Array
545 public function getQueryValues() {
546 return $_GET;
550 * Returns true if the present request was reached by a POST operation,
551 * false otherwise (GET, HEAD, or command-line).
553 * Note that values retrieved by the object may come from the
554 * GET URL etc even on a POST request.
556 * @return Boolean
558 public function wasPosted() {
559 return isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] == 'POST';
563 * Returns true if there is a session cookie set.
564 * This does not necessarily mean that the user is logged in!
566 * If you want to check for an open session, use session_id()
567 * instead; that will also tell you if the session was opened
568 * during the current request (in which case the cookie will
569 * be sent back to the client at the end of the script run).
571 * @return Boolean
573 public function checkSessionCookie() {
574 return isset( $_COOKIE[ session_name() ] );
578 * Get a cookie from the $_COOKIE jar
580 * @param $key String: the name of the cookie
581 * @param $prefix String: a prefix to use for the cookie name, if not $wgCookiePrefix
582 * @param $default Mixed: what to return if the value isn't found
583 * @return Mixed: cookie value or $default if the cookie not set
585 public function getCookie( $key, $prefix = null, $default = null ) {
586 if( $prefix === null ) {
587 global $wgCookiePrefix;
588 $prefix = $wgCookiePrefix;
590 return $this->getGPCVal( $_COOKIE, $prefix . $key , $default );
594 * Return the path and query string portion of the request URI.
595 * This will be suitable for use as a relative link in HTML output.
597 * @return String
599 public function getRequestURL() {
600 if( isset( $_SERVER['REQUEST_URI'] ) && strlen( $_SERVER['REQUEST_URI'] ) ) {
601 $base = $_SERVER['REQUEST_URI'];
602 } elseif ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) && strlen( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
603 // Probably IIS; doesn't set REQUEST_URI
604 $base = $_SERVER['HTTP_X_ORIGINAL_URL'];
605 } elseif( isset( $_SERVER['SCRIPT_NAME'] ) ) {
606 $base = $_SERVER['SCRIPT_NAME'];
607 if( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] != '' ) {
608 $base .= '?' . $_SERVER['QUERY_STRING'];
610 } else {
611 // This shouldn't happen!
612 throw new MWException( "Web server doesn't provide either " .
613 "REQUEST_URI, HTTP_X_ORIGINAL_URL or SCRIPT_NAME. Report details " .
614 "of your web server configuration to http://bugzilla.wikimedia.org/" );
616 // User-agents should not send a fragment with the URI, but
617 // if they do, and the web server passes it on to us, we
618 // need to strip it or we get false-positive redirect loops
619 // or weird output URLs
620 $hash = strpos( $base, '#' );
621 if( $hash !== false ) {
622 $base = substr( $base, 0, $hash );
624 if( $base[0] == '/' ) {
625 return $base;
626 } else {
627 // We may get paths with a host prepended; strip it.
628 return preg_replace( '!^[^:]+://[^/]+/!', '/', $base );
633 * Return the request URI with the canonical service and hostname, path,
634 * and query string. This will be suitable for use as an absolute link
635 * in HTML or other output.
637 * If $wgServer is protocol-relative, this will return a fully
638 * qualified URL with the protocol that was used for this request.
640 * @return String
642 public function getFullRequestURL() {
643 return wfExpandUrl( $this->getRequestURL(), PROTO_CURRENT );
647 * Take an arbitrary query and rewrite the present URL to include it
648 * @param $query String: query string fragment; do not include initial '?'
650 * @return String
652 public function appendQuery( $query ) {
653 return $this->appendQueryArray( wfCgiToArray( $query ) );
657 * HTML-safe version of appendQuery().
659 * @param $query String: query string fragment; do not include initial '?'
660 * @return String
662 public function escapeAppendQuery( $query ) {
663 return htmlspecialchars( $this->appendQuery( $query ) );
667 * @param $key
668 * @param $value
669 * @param $onlyquery bool
670 * @return String
672 public function appendQueryValue( $key, $value, $onlyquery = false ) {
673 return $this->appendQueryArray( array( $key => $value ), $onlyquery );
677 * Appends or replaces value of query variables.
679 * @param $array Array of values to replace/add to query
680 * @param $onlyquery Bool: whether to only return the query string and not
681 * the complete URL
682 * @return String
684 public function appendQueryArray( $array, $onlyquery = false ) {
685 global $wgTitle;
686 $newquery = $this->getQueryValues();
687 unset( $newquery['title'] );
688 $newquery = array_merge( $newquery, $array );
689 $query = wfArrayToCGI( $newquery );
690 return $onlyquery ? $query : $wgTitle->getLocalURL( $query );
694 * Check for limit and offset parameters on the input, and return sensible
695 * defaults if not given. The limit must be positive and is capped at 5000.
696 * Offset must be positive but is not capped.
698 * @param $deflimit Integer: limit to use if no input and the user hasn't set the option.
699 * @param $optionname String: to specify an option other than rclimit to pull from.
700 * @return array first element is limit, second is offset
702 public function getLimitOffset( $deflimit = 50, $optionname = 'rclimit' ) {
703 global $wgUser;
705 $limit = $this->getInt( 'limit', 0 );
706 if( $limit < 0 ) {
707 $limit = 0;
709 if( ( $limit == 0 ) && ( $optionname != '' ) ) {
710 $limit = (int)$wgUser->getOption( $optionname );
712 if( $limit <= 0 ) {
713 $limit = $deflimit;
715 if( $limit > 5000 ) {
716 $limit = 5000; # We have *some* limits...
719 $offset = $this->getInt( 'offset', 0 );
720 if( $offset < 0 ) {
721 $offset = 0;
724 return array( $limit, $offset );
728 * Return the path to the temporary file where PHP has stored the upload.
730 * @param $key String:
731 * @return string or NULL if no such file.
733 public function getFileTempname( $key ) {
734 $file = new WebRequestUpload( $this, $key );
735 return $file->getTempName();
739 * Return the size of the upload, or 0.
741 * @deprecated since 1.17
742 * @param $key String:
743 * @return integer
745 public function getFileSize( $key ) {
746 wfDeprecated( __METHOD__, '1.17' );
747 $file = new WebRequestUpload( $this, $key );
748 return $file->getSize();
752 * Return the upload error or 0
754 * @param $key String:
755 * @return integer
757 public function getUploadError( $key ) {
758 $file = new WebRequestUpload( $this, $key );
759 return $file->getError();
763 * Return the original filename of the uploaded file, as reported by
764 * the submitting user agent. HTML-style character entities are
765 * interpreted and normalized to Unicode normalization form C, in part
766 * to deal with weird input from Safari with non-ASCII filenames.
768 * Other than this the name is not verified for being a safe filename.
770 * @param $key String:
771 * @return string or NULL if no such file.
773 public function getFileName( $key ) {
774 $file = new WebRequestUpload( $this, $key );
775 return $file->getName();
779 * Return a WebRequestUpload object corresponding to the key
781 * @param $key string
782 * @return WebRequestUpload
784 public function getUpload( $key ) {
785 return new WebRequestUpload( $this, $key );
789 * Return a handle to WebResponse style object, for setting cookies,
790 * headers and other stuff, for Request being worked on.
792 * @return WebResponse
794 public function response() {
795 /* Lazy initialization of response object for this request */
796 if ( !is_object( $this->response ) ) {
797 $class = ( $this instanceof FauxRequest ) ? 'FauxResponse' : 'WebResponse';
798 $this->response = new $class();
800 return $this->response;
804 * Initialise the header list
806 private function initHeaders() {
807 if ( count( $this->headers ) ) {
808 return;
811 if ( function_exists( 'apache_request_headers' ) ) {
812 foreach ( apache_request_headers() as $tempName => $tempValue ) {
813 $this->headers[ strtoupper( $tempName ) ] = $tempValue;
815 } else {
816 foreach ( $_SERVER as $name => $value ) {
817 if ( substr( $name, 0, 5 ) === 'HTTP_' ) {
818 $name = str_replace( '_', '-', substr( $name, 5 ) );
819 $this->headers[$name] = $value;
820 } elseif ( $name === 'CONTENT_LENGTH' ) {
821 $this->headers['CONTENT-LENGTH'] = $value;
828 * Get an array containing all request headers
830 * @return Array mapping header name to its value
832 public function getAllHeaders() {
833 $this->initHeaders();
834 return $this->headers;
838 * Get a request header, or false if it isn't set
839 * @param $name String: case-insensitive header name
841 * @return string|false
843 public function getHeader( $name ) {
844 $this->initHeaders();
845 $name = strtoupper( $name );
846 if ( isset( $this->headers[$name] ) ) {
847 return $this->headers[$name];
848 } else {
849 return false;
854 * Get data from $_SESSION
856 * @param $key String: name of key in $_SESSION
857 * @return Mixed
859 public function getSessionData( $key ) {
860 if( !isset( $_SESSION[$key] ) ) {
861 return null;
863 return $_SESSION[$key];
867 * Set session data
869 * @param $key String: name of key in $_SESSION
870 * @param $data Mixed
872 public function setSessionData( $key, $data ) {
873 $_SESSION[$key] = $data;
877 * Check if Internet Explorer will detect an incorrect cache extension in
878 * PATH_INFO or QUERY_STRING. If the request can't be allowed, show an error
879 * message or redirect to a safer URL. Returns true if the URL is OK, and
880 * false if an error message has been shown and the request should be aborted.
882 * @param $extWhitelist array
883 * @return bool
885 public function checkUrlExtension( $extWhitelist = array() ) {
886 global $wgScriptExtension;
887 $extWhitelist[] = ltrim( $wgScriptExtension, '.' );
888 if ( IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist ) ) {
889 if ( !$this->wasPosted() ) {
890 $newUrl = IEUrlExtension::fixUrlForIE6(
891 $this->getFullRequestURL(), $extWhitelist );
892 if ( $newUrl !== false ) {
893 $this->doSecurityRedirect( $newUrl );
894 return false;
897 throw new HttpError( 403,
898 'Invalid file extension found in the path info or query string.' );
900 return true;
904 * Attempt to redirect to a URL with a QUERY_STRING that's not dangerous in
905 * IE 6. Returns true if it was successful, false otherwise.
907 * @param $url string
908 * @return bool
910 protected function doSecurityRedirect( $url ) {
911 header( 'Location: ' . $url );
912 header( 'Content-Type: text/html' );
913 $encUrl = htmlspecialchars( $url );
914 echo <<<HTML
915 <html>
916 <head>
917 <title>Security redirect</title>
918 </head>
919 <body>
920 <h1>Security redirect</h1>
922 We can't serve non-HTML content from the URL you have requested, because
923 Internet Explorer would interpret it as an incorrect and potentially dangerous
924 content type.</p>
925 <p>Instead, please use <a href="$encUrl">this URL</a>, which is the same as the URL you have requested, except that
926 "&amp;*" is appended. This prevents Internet Explorer from seeing a bogus file
927 extension.
928 </p>
929 </body>
930 </html>
931 HTML;
932 echo "\n";
933 return true;
937 * Returns true if the PATH_INFO ends with an extension other than a script
938 * extension. This could confuse IE for scripts that send arbitrary data which
939 * is not HTML but may be detected as such.
941 * Various past attempts to use the URL to make this check have generally
942 * run up against the fact that CGI does not provide a standard method to
943 * determine the URL. PATH_INFO may be mangled (e.g. if cgi.fix_pathinfo=0),
944 * but only by prefixing it with the script name and maybe some other stuff,
945 * the extension is not mangled. So this should be a reasonably portable
946 * way to perform this security check.
948 * Also checks for anything that looks like a file extension at the end of
949 * QUERY_STRING, since IE 6 and earlier will use this to get the file type
950 * if there was no dot before the question mark (bug 28235).
952 * @deprecated Use checkUrlExtension().
954 * @param $extWhitelist array
956 * @return bool
958 public function isPathInfoBad( $extWhitelist = array() ) {
959 wfDeprecated( __METHOD__, '1.17' );
960 global $wgScriptExtension;
961 $extWhitelist[] = ltrim( $wgScriptExtension, '.' );
962 return IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist );
966 * Parse the Accept-Language header sent by the client into an array
967 * @return array array( languageCode => q-value ) sorted by q-value in descending order
968 * May contain the "language" '*', which applies to languages other than those explicitly listed.
969 * This is aligned with rfc2616 section 14.4
971 public function getAcceptLang() {
972 // Modified version of code found at http://www.thefutureoftheweb.com/blog/use-accept-language-header
973 $acceptLang = $this->getHeader( 'Accept-Language' );
974 if ( !$acceptLang ) {
975 return array();
978 // Return the language codes in lower case
979 $acceptLang = strtolower( $acceptLang );
981 // Break up string into pieces (languages and q factors)
982 $lang_parse = null;
983 preg_match_all( '/([a-z]{1,8}(-[a-z]{1,8})*|\*)\s*(;\s*q\s*=\s*(1(\.0{0,3})?|0(\.[0-9]{0,3})?)?)?/',
984 $acceptLang, $lang_parse );
986 if ( !count( $lang_parse[1] ) ) {
987 return array();
990 // Create a list like "en" => 0.8
991 $langs = array_combine( $lang_parse[1], $lang_parse[4] );
992 // Set default q factor to 1
993 foreach ( $langs as $lang => $val ) {
994 if ( $val === '' ) {
995 $langs[$lang] = 1;
996 } elseif ( $val == 0 ) {
997 unset($langs[$lang]);
1001 // Sort list
1002 arsort( $langs, SORT_NUMERIC );
1003 return $langs;
1007 * Fetch the raw IP from the request
1009 * @return String
1011 protected function getRawIP() {
1012 if ( isset( $_SERVER['REMOTE_ADDR'] ) ) {
1013 return IP::canonicalize( $_SERVER['REMOTE_ADDR'] );
1014 } else {
1015 return null;
1020 * Work out the IP address based on various globals
1021 * For trusted proxies, use the XFF client IP (first of the chain)
1022 * @return string
1024 public function getIP() {
1025 global $wgUsePrivateIPs;
1027 # Return cached result
1028 if ( $this->ip !== null ) {
1029 return $this->ip;
1032 # collect the originating ips
1033 $ip = $this->getRawIP();
1035 # Append XFF
1036 $forwardedFor = $this->getHeader( 'X-Forwarded-For' );
1037 if ( $forwardedFor !== false ) {
1038 $ipchain = array_map( 'trim', explode( ',', $forwardedFor ) );
1039 $ipchain = array_reverse( $ipchain );
1040 if ( $ip ) {
1041 array_unshift( $ipchain, $ip );
1044 # Step through XFF list and find the last address in the list which is a trusted server
1045 # Set $ip to the IP address given by that trusted server, unless the address is not sensible (e.g. private)
1046 foreach ( $ipchain as $i => $curIP ) {
1047 $curIP = IP::canonicalize( $curIP );
1048 if ( wfIsTrustedProxy( $curIP ) ) {
1049 if ( isset( $ipchain[$i + 1] ) ) {
1050 if ( $wgUsePrivateIPs || IP::isPublic( $ipchain[$i + 1 ] ) ) {
1051 $ip = $ipchain[$i + 1];
1054 } else {
1055 break;
1060 # Allow extensions to improve our guess
1061 wfRunHooks( 'GetIP', array( &$ip ) );
1063 if ( !$ip ) {
1064 throw new MWException( "Unable to determine IP" );
1067 wfDebug( "IP: $ip\n" );
1068 $this->ip = $ip;
1069 return $ip;
1074 * Object to access the $_FILES array
1076 class WebRequestUpload {
1077 protected $request;
1078 protected $doesExist;
1079 protected $fileInfo;
1082 * Constructor. Should only be called by WebRequest
1084 * @param $request WebRequest The associated request
1085 * @param $key string Key in $_FILES array (name of form field)
1087 public function __construct( $request, $key ) {
1088 $this->request = $request;
1089 $this->doesExist = isset( $_FILES[$key] );
1090 if ( $this->doesExist ) {
1091 $this->fileInfo = $_FILES[$key];
1096 * Return whether a file with this name was uploaded.
1098 * @return bool
1100 public function exists() {
1101 return $this->doesExist;
1105 * Return the original filename of the uploaded file
1107 * @return mixed Filename or null if non-existent
1109 public function getName() {
1110 if ( !$this->exists() ) {
1111 return null;
1114 global $wgContLang;
1115 $name = $this->fileInfo['name'];
1117 # Safari sends filenames in HTML-encoded Unicode form D...
1118 # Horrid and evil! Let's try to make some kind of sense of it.
1119 $name = Sanitizer::decodeCharReferences( $name );
1120 $name = $wgContLang->normalize( $name );
1121 wfDebug( __METHOD__ . ": {$this->fileInfo['name']} normalized to '$name'\n" );
1122 return $name;
1126 * Return the file size of the uploaded file
1128 * @return int File size or zero if non-existent
1130 public function getSize() {
1131 if ( !$this->exists() ) {
1132 return 0;
1135 return $this->fileInfo['size'];
1139 * Return the path to the temporary file
1141 * @return mixed Path or null if non-existent
1143 public function getTempName() {
1144 if ( !$this->exists() ) {
1145 return null;
1148 return $this->fileInfo['tmp_name'];
1152 * Return the upload error. See link for explanation
1153 * http://www.php.net/manual/en/features.file-upload.errors.php
1155 * @return int One of the UPLOAD_ constants, 0 if non-existent
1157 public function getError() {
1158 if ( !$this->exists() ) {
1159 return 0; # UPLOAD_ERR_OK
1162 return $this->fileInfo['error'];
1166 * Returns whether this upload failed because of overflow of a maximum set
1167 * in php.ini
1169 * @return bool
1171 public function isIniSizeOverflow() {
1172 if ( $this->getError() == UPLOAD_ERR_INI_SIZE ) {
1173 # PHP indicated that upload_max_filesize is exceeded
1174 return true;
1177 $contentLength = $this->request->getHeader( 'CONTENT_LENGTH' );
1178 if ( $contentLength > wfShorthandToInteger( ini_get( 'post_max_size' ) ) ) {
1179 # post_max_size is exceeded
1180 return true;
1183 return false;
1188 * WebRequest clone which takes values from a provided array.
1190 * @ingroup HTTP
1192 class FauxRequest extends WebRequest {
1193 private $wasPosted = false;
1194 private $session = array();
1197 * @param $data Array of *non*-urlencoded key => value pairs, the
1198 * fake GET/POST values
1199 * @param $wasPosted Bool: whether to treat the data as POST
1200 * @param $session Mixed: session array or null
1202 public function __construct( $data, $wasPosted = false, $session = null ) {
1203 if( is_array( $data ) ) {
1204 $this->data = $data;
1205 } else {
1206 throw new MWException( "FauxRequest() got bogus data" );
1208 $this->wasPosted = $wasPosted;
1209 if( $session )
1210 $this->session = $session;
1214 * @param $method string
1215 * @throws MWException
1217 private function notImplemented( $method ) {
1218 throw new MWException( "{$method}() not implemented" );
1222 * @param $name string
1223 * @param $default string
1224 * @return string
1226 public function getText( $name, $default = '' ) {
1227 # Override; don't recode since we're using internal data
1228 return (string)$this->getVal( $name, $default );
1232 * @return Array
1234 public function getValues() {
1235 return $this->data;
1239 * @return array
1241 public function getQueryValues() {
1242 if ( $this->wasPosted ) {
1243 return array();
1244 } else {
1245 return $this->data;
1250 * @return bool
1252 public function wasPosted() {
1253 return $this->wasPosted;
1256 public function checkSessionCookie() {
1257 return false;
1260 public function getRequestURL() {
1261 $this->notImplemented( __METHOD__ );
1265 * @param $name
1266 * @return bool|string
1268 public function getHeader( $name ) {
1269 return isset( $this->headers[$name] ) ? $this->headers[$name] : false;
1273 * @param $name string
1274 * @param $val string
1276 public function setHeader( $name, $val ) {
1277 $this->headers[$name] = $val;
1281 * @param $key
1282 * @return mixed
1284 public function getSessionData( $key ) {
1285 if( isset( $this->session[$key] ) )
1286 return $this->session[$key];
1290 * @param $key
1291 * @param $data
1293 public function setSessionData( $key, $data ) {
1294 $this->session[$key] = $data;
1298 * @return array|Mixed|null
1300 public function getSessionArray() {
1301 return $this->session;
1305 * @param array $extWhitelist
1306 * @return bool
1308 public function isPathInfoBad( $extWhitelist = array() ) {
1309 return false;
1313 * @param array $extWhitelist
1314 * @return bool
1316 public function checkUrlExtension( $extWhitelist = array() ) {
1317 return true;
1321 * @return string
1323 protected function getRawIP() {
1324 return '127.0.0.1';
1329 * Similar to FauxRequest, but only fakes URL parameters and method
1330 * (POST or GET) and use the base request for the remaining stuff
1331 * (cookies, session and headers).
1333 * @ingroup HTTP
1335 class DerivativeRequest extends FauxRequest {
1336 private $base;
1338 public function __construct( WebRequest $base, $data, $wasPosted = false ) {
1339 $this->base = $base;
1340 parent::__construct( $data, $wasPosted );
1343 public function getCookie( $key, $prefix = null, $default = null ) {
1344 return $this->base->getCookie( $key, $prefix, $default );
1347 public function checkSessionCookie() {
1348 return $this->base->checkSessionCookie();
1351 public function getHeader( $name ) {
1352 return $this->base->getHeader( $name );
1355 public function getAllHeaders() {
1356 return $this->base->getAllHeaders();
1359 public function getSessionData( $key ) {
1360 return $this->base->getSessionData( $key );
1363 public function setSessionData( $key, $data ) {
1364 return $this->base->setSessionData( $key, $data );
1367 public function getAcceptLang() {
1368 return $this->base->getAcceptLang();
1371 public function getIP() {
1372 return $this->base->getIP();