Merge "Fix wrong return value in Preprocessor::getChildrenOfType"
[lhc/web/wiklou.git] / includes / WebRequest.php
1 <?php
2 /**
3 * Deal with importing all those nasssty globals and things
4 *
5 * Copyright © 2003 Brion Vibber <brion@pobox.com>
6 * http://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 /**
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.
30 *
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.
35 *
36 * @ingroup HTTP
37 */
38 class WebRequest {
39 protected $data, $headers = array();
40
41 /**
42 * Lazy-init response object
43 * @var WebResponse
44 */
45 private $response;
46
47 /**
48 * Cached client IP address
49 * @var String
50 */
51 private $ip;
52
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();
58
59 // POST overrides GET data
60 // We don't use $_REQUEST here to avoid interference from cookies...
61 $this->data = $_POST + $_GET;
62 }
63
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.
69 *
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.
72 *
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.
76 *
77 * @return Array: Any query arguments found in path matches.
78 */
79 static public function getPathInfo( $want = 'all' ) {
80 global $wgUsePathInfo;
81 // PATH_INFO is mangled due to http://bugs.php.net/bug.php?id=31892
82 // And also by Apache 2.x, double slashes are converted to single slashes.
83 // So we will use REQUEST_URI if possible.
84 $matches = array();
85 if ( !empty( $_SERVER['REQUEST_URI'] ) ) {
86 // Slurp out the path portion to examine...
87 $url = $_SERVER['REQUEST_URI'];
88 if ( !preg_match( '!^https?://!', $url ) ) {
89 $url = 'http://unused' . $url;
90 }
91 wfSuppressWarnings();
92 $a = parse_url( $url );
93 wfRestoreWarnings();
94 if( $a ) {
95 $path = isset( $a['path'] ) ? $a['path'] : '';
96
97 global $wgScript;
98 if( $path == $wgScript && $want !== 'all' ) {
99 // Script inside a rewrite path?
100 // Abort to keep from breaking...
101 return $matches;
102 }
103
104 $router = new PathRouter;
105
106 // Raw PATH_INFO style
107 $router->add( "$wgScript/$1" );
108
109 if( isset( $_SERVER['SCRIPT_NAME'] )
110 && preg_match( '/\.php5?/', $_SERVER['SCRIPT_NAME'] ) )
111 {
112 # Check for SCRIPT_NAME, we handle index.php explicitly
113 # But we do have some other .php files such as img_auth.php
114 # Don't let root article paths clober the parsing for them
115 $router->add( $_SERVER['SCRIPT_NAME'] . "/$1" );
116 }
117
118 global $wgArticlePath;
119 if( $wgArticlePath ) {
120 $router->add( $wgArticlePath );
121 }
122
123 global $wgActionPaths;
124 if( $wgActionPaths ) {
125 $router->add( $wgActionPaths, array( 'action' => '$key' ) );
126 }
127
128 global $wgVariantArticlePath, $wgContLang;
129 if( $wgVariantArticlePath ) {
130 $router->add( $wgVariantArticlePath,
131 array( 'variant' => '$2'),
132 array( '$2' => $wgContLang->getVariants() )
133 );
134 }
135
136 wfRunHooks( 'WebRequestPathInfoRouter', array( $router ) );
137
138 $matches = $router->parse( $path );
139 }
140 } elseif ( $wgUsePathInfo ) {
141 if ( isset( $_SERVER['ORIG_PATH_INFO'] ) && $_SERVER['ORIG_PATH_INFO'] != '' ) {
142 // Mangled PATH_INFO
143 // http://bugs.php.net/bug.php?id=31892
144 // Also reported when ini_get('cgi.fix_pathinfo')==false
145 $matches['title'] = substr( $_SERVER['ORIG_PATH_INFO'], 1 );
146
147 } elseif ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != '') ) {
148 // Regular old PATH_INFO yay
149 $matches['title'] = substr( $_SERVER['PATH_INFO'], 1 );
150 }
151 }
152
153 return $matches;
154 }
155
156 /**
157 * Work out an appropriate URL prefix containing scheme and host, based on
158 * information detected from $_SERVER
159 *
160 * @return string
161 */
162 public static function detectServer() {
163 list( $proto, $stdPort ) = self::detectProtocolAndStdPort();
164
165 $varNames = array( 'HTTP_HOST', 'SERVER_NAME', 'HOSTNAME', 'SERVER_ADDR' );
166 $host = 'localhost';
167 $port = $stdPort;
168 foreach ( $varNames as $varName ) {
169 if ( !isset( $_SERVER[$varName] ) ) {
170 continue;
171 }
172 $parts = IP::splitHostAndPort( $_SERVER[$varName] );
173 if ( !$parts ) {
174 // Invalid, do not use
175 continue;
176 }
177 $host = $parts[0];
178 if ( $parts[1] === false ) {
179 if ( isset( $_SERVER['SERVER_PORT'] ) ) {
180 $port = $_SERVER['SERVER_PORT'];
181 } // else leave it as $stdPort
182 } else {
183 $port = $parts[1];
184 }
185 break;
186 }
187
188 return $proto . '://' . IP::combineHostAndPort( $host, $port, $stdPort );
189 }
190
191 /**
192 * @return array
193 */
194 public static function detectProtocolAndStdPort() {
195 return ( isset( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] == 'on' ) ? array( 'https', 443 ) : array( 'http', 80 );
196 }
197
198 /**
199 * @return string
200 */
201 public static function detectProtocol() {
202 list( $proto, $stdPort ) = self::detectProtocolAndStdPort();
203 return $proto;
204 }
205
206 /**
207 * Check for title, action, and/or variant data in the URL
208 * and interpolate it into the GET variables.
209 * This should only be run after $wgContLang is available,
210 * as we may need the list of language variants to determine
211 * available variant URLs.
212 */
213 public function interpolateTitle() {
214 // bug 16019: title interpolation on API queries is useless and sometimes harmful
215 if ( defined( 'MW_API' ) ) {
216 return;
217 }
218
219 $matches = self::getPathInfo( 'title' );
220 foreach( $matches as $key => $val) {
221 $this->data[$key] = $_GET[$key] = $_REQUEST[$key] = $val;
222 }
223 }
224
225 /**
226 * URL rewriting function; tries to extract page title and,
227 * optionally, one other fixed parameter value from a URL path.
228 *
229 * @param $path string: the URL path given from the client
230 * @param $bases array: one or more URLs, optionally with $1 at the end
231 * @param $key string: if provided, the matching key in $bases will be
232 * passed on as the value of this URL parameter
233 * @return array of URL variables to interpolate; empty if no match
234 */
235 static function extractTitle( $path, $bases, $key = false ) {
236 foreach( (array)$bases as $keyValue => $base ) {
237 // Find the part after $wgArticlePath
238 $base = str_replace( '$1', '', $base );
239 $baseLen = strlen( $base );
240 if( substr( $path, 0, $baseLen ) == $base ) {
241 $raw = substr( $path, $baseLen );
242 if( $raw !== '' ) {
243 $matches = array( 'title' => rawurldecode( $raw ) );
244 if( $key ) {
245 $matches[$key] = $keyValue;
246 }
247 return $matches;
248 }
249 }
250 }
251 return array();
252 }
253
254 /**
255 * Recursively strips slashes from the given array;
256 * used for undoing the evil that is magic_quotes_gpc.
257 *
258 * @param $arr array: will be modified
259 * @param $topLevel bool Specifies if the array passed is from the top
260 * level of the source. In PHP5 magic_quotes only escapes the first level
261 * of keys that belong to an array.
262 * @return array the original array
263 * @see http://www.php.net/manual/en/function.get-magic-quotes-gpc.php#49612
264 */
265 private function &fix_magic_quotes( &$arr, $topLevel = true ) {
266 $clean = array();
267 foreach( $arr as $key => $val ) {
268 if( is_array( $val ) ) {
269 $cleanKey = $topLevel ? stripslashes( $key ) : $key;
270 $clean[$cleanKey] = $this->fix_magic_quotes( $arr[$key], false );
271 } else {
272 $cleanKey = stripslashes( $key );
273 $clean[$cleanKey] = stripslashes( $val );
274 }
275 }
276 $arr = $clean;
277 return $arr;
278 }
279
280 /**
281 * If magic_quotes_gpc option is on, run the global arrays
282 * through fix_magic_quotes to strip out the stupid slashes.
283 * WARNING: This should only be done once! Running a second
284 * time could damage the values.
285 */
286 private function checkMagicQuotes() {
287 $mustFixQuotes = function_exists( 'get_magic_quotes_gpc' )
288 && get_magic_quotes_gpc();
289 if( $mustFixQuotes ) {
290 $this->fix_magic_quotes( $_COOKIE );
291 $this->fix_magic_quotes( $_ENV );
292 $this->fix_magic_quotes( $_GET );
293 $this->fix_magic_quotes( $_POST );
294 $this->fix_magic_quotes( $_REQUEST );
295 $this->fix_magic_quotes( $_SERVER );
296 }
297 }
298
299 /**
300 * Recursively normalizes UTF-8 strings in the given array.
301 *
302 * @param $data string|array
303 * @return array|string cleaned-up version of the given
304 * @private
305 */
306 function normalizeUnicode( $data ) {
307 if( is_array( $data ) ) {
308 foreach( $data as $key => $val ) {
309 $data[$key] = $this->normalizeUnicode( $val );
310 }
311 } else {
312 global $wgContLang;
313 $data = isset( $wgContLang ) ? $wgContLang->normalize( $data ) : UtfNormal::cleanUp( $data );
314 }
315 return $data;
316 }
317
318 /**
319 * Fetch a value from the given array or return $default if it's not set.
320 *
321 * @param $arr Array
322 * @param $name String
323 * @param $default Mixed
324 * @return mixed
325 */
326 private function getGPCVal( $arr, $name, $default ) {
327 # PHP is so nice to not touch input data, except sometimes:
328 # http://us2.php.net/variables.external#language.variables.external.dot-in-names
329 # Work around PHP *feature* to avoid *bugs* elsewhere.
330 $name = strtr( $name, '.', '_' );
331 if( isset( $arr[$name] ) ) {
332 global $wgContLang;
333 $data = $arr[$name];
334 if( isset( $_GET[$name] ) && !is_array( $data ) ) {
335 # Check for alternate/legacy character encoding.
336 if( isset( $wgContLang ) ) {
337 $data = $wgContLang->checkTitleEncoding( $data );
338 }
339 }
340 $data = $this->normalizeUnicode( $data );
341 return $data;
342 } else {
343 taint( $default );
344 return $default;
345 }
346 }
347
348 /**
349 * Fetch a scalar from the input or return $default if it's not set.
350 * Returns a string. Arrays are discarded. Useful for
351 * non-freeform text inputs (e.g. predefined internal text keys
352 * selected by a drop-down menu). For freeform input, see getText().
353 *
354 * @param $name String
355 * @param $default String: optional default (or NULL)
356 * @return String
357 */
358 public function getVal( $name, $default = null ) {
359 $val = $this->getGPCVal( $this->data, $name, $default );
360 if( is_array( $val ) ) {
361 $val = $default;
362 }
363 if( is_null( $val ) ) {
364 return $val;
365 } else {
366 return (string)$val;
367 }
368 }
369
370 /**
371 * Set an arbitrary value into our get/post data.
372 *
373 * @param $key String: key name to use
374 * @param $value Mixed: value to set
375 * @return Mixed: old value if one was present, null otherwise
376 */
377 public function setVal( $key, $value ) {
378 $ret = isset( $this->data[$key] ) ? $this->data[$key] : null;
379 $this->data[$key] = $value;
380 return $ret;
381 }
382
383
384 /**
385 * Unset an arbitrary value from our get/post data.
386 *
387 * @param $key String: key name to use
388 * @return Mixed: old value if one was present, null otherwise
389 */
390 public function unsetVal( $key ) {
391 if ( !isset( $this->data[$key] ) ) {
392 $ret = null;
393 } else {
394 $ret = $this->data[$key];
395 unset( $this->data[$key] );
396 }
397 return $ret;
398 }
399
400 /**
401 * Fetch an array from the input 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 *
405 * @param $name String
406 * @param $default Array: optional default (or NULL)
407 * @return Array
408 */
409 public function getArray( $name, $default = null ) {
410 $val = $this->getGPCVal( $this->data, $name, $default );
411 if( is_null( $val ) ) {
412 return null;
413 } else {
414 return (array)$val;
415 }
416 }
417
418 /**
419 * Fetch an array of integers, or return $default if it's not set.
420 * If source was scalar, will return an array with a single element.
421 * If no source and no default, returns NULL.
422 * If an array is returned, contents are guaranteed to be integers.
423 *
424 * @param $name String
425 * @param $default Array: option default (or NULL)
426 * @return Array of ints
427 */
428 public function getIntArray( $name, $default = null ) {
429 $val = $this->getArray( $name, $default );
430 if( is_array( $val ) ) {
431 $val = array_map( 'intval', $val );
432 }
433 return $val;
434 }
435
436 /**
437 * Fetch an integer value from the input or return $default if not set.
438 * Guaranteed to return an integer; non-numeric input will typically
439 * return 0.
440 *
441 * @param $name String
442 * @param $default Integer
443 * @return Integer
444 */
445 public function getInt( $name, $default = 0 ) {
446 return intval( $this->getVal( $name, $default ) );
447 }
448
449 /**
450 * Fetch an integer value from the input or return null if empty.
451 * Guaranteed to return an integer or null; non-numeric input will
452 * typically return null.
453 *
454 * @param $name String
455 * @return Integer
456 */
457 public function getIntOrNull( $name ) {
458 $val = $this->getVal( $name );
459 return is_numeric( $val )
460 ? intval( $val )
461 : null;
462 }
463
464 /**
465 * Fetch a boolean value from the input or return $default if not set.
466 * Guaranteed to return true or false, with normal PHP semantics for
467 * boolean interpretation of strings.
468 *
469 * @param $name String
470 * @param $default Boolean
471 * @return Boolean
472 */
473 public function getBool( $name, $default = false ) {
474 return (bool)$this->getVal( $name, $default );
475 }
476
477 /**
478 * Fetch a boolean value from the input or return $default if not set.
479 * Unlike getBool, the string "false" will result in boolean false, which is
480 * useful when interpreting information sent from JavaScript.
481 *
482 * @param $name String
483 * @param $default Boolean
484 * @return Boolean
485 */
486 public function getFuzzyBool( $name, $default = false ) {
487 return $this->getBool( $name, $default ) && strcasecmp( $this->getVal( $name ), 'false' ) !== 0;
488 }
489
490 /**
491 * Return true if the named value is set in the input, whatever that
492 * value is (even "0"). Return false if the named value is not set.
493 * Example use is checking for the presence of check boxes in forms.
494 *
495 * @param $name String
496 * @return Boolean
497 */
498 public function getCheck( $name ) {
499 # Checkboxes and buttons are only present when clicked
500 # Presence connotes truth, abscense false
501 return $this->getVal( $name, null ) !== null;
502 }
503
504 /**
505 * Fetch a text string from the given array or return $default if it's not
506 * set. Carriage returns are stripped from the text, and with some language
507 * modules there is an input transliteration applied. This should generally
508 * be used for form "<textarea>" and "<input>" fields. Used for
509 * user-supplied freeform text input (for which input transformations may
510 * be required - e.g. Esperanto x-coding).
511 *
512 * @param $name String
513 * @param $default String: optional
514 * @return String
515 */
516 public function getText( $name, $default = '' ) {
517 global $wgContLang;
518 $val = $this->getVal( $name, $default );
519 return str_replace( "\r\n", "\n",
520 $wgContLang->recodeInput( $val ) );
521 }
522
523 /**
524 * Extracts the given named values into an array.
525 * If no arguments are given, returns all input values.
526 * No transformation is performed on the values.
527 *
528 * @return array
529 */
530 public function getValues() {
531 $names = func_get_args();
532 if ( count( $names ) == 0 ) {
533 $names = array_keys( $this->data );
534 }
535
536 $retVal = array();
537 foreach ( $names as $name ) {
538 $value = $this->getGPCVal( $this->data, $name, null );
539 if ( !is_null( $value ) ) {
540 $retVal[$name] = $value;
541 }
542 }
543 return $retVal;
544 }
545
546 /**
547 * Returns the names of all input values excluding those in $exclude.
548 *
549 * @param $exclude Array
550 * @return array
551 */
552 public function getValueNames( $exclude = array() ) {
553 return array_diff( array_keys( $this->getValues() ), $exclude );
554 }
555
556 /**
557 * Get the values passed in the query string.
558 * No transformation is performed on the values.
559 *
560 * @return Array
561 */
562 public function getQueryValues() {
563 return $_GET;
564 }
565
566 /**
567 * Returns true if the present request was reached by a POST operation,
568 * false otherwise (GET, HEAD, or command-line).
569 *
570 * Note that values retrieved by the object may come from the
571 * GET URL etc even on a POST request.
572 *
573 * @return Boolean
574 */
575 public function wasPosted() {
576 return isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] == 'POST';
577 }
578
579 /**
580 * Returns true if there is a session cookie set.
581 * This does not necessarily mean that the user is logged in!
582 *
583 * If you want to check for an open session, use session_id()
584 * instead; that will also tell you if the session was opened
585 * during the current request (in which case the cookie will
586 * be sent back to the client at the end of the script run).
587 *
588 * @return Boolean
589 */
590 public function checkSessionCookie() {
591 return isset( $_COOKIE[ session_name() ] );
592 }
593
594 /**
595 * Get a cookie from the $_COOKIE jar
596 *
597 * @param $key String: the name of the cookie
598 * @param $prefix String: a prefix to use for the cookie name, if not $wgCookiePrefix
599 * @param $default Mixed: what to return if the value isn't found
600 * @return Mixed: cookie value or $default if the cookie not set
601 */
602 public function getCookie( $key, $prefix = null, $default = null ) {
603 if( $prefix === null ) {
604 global $wgCookiePrefix;
605 $prefix = $wgCookiePrefix;
606 }
607 return $this->getGPCVal( $_COOKIE, $prefix . $key , $default );
608 }
609
610 /**
611 * Return the path and query string portion of the request URI.
612 * This will be suitable for use as a relative link in HTML output.
613 *
614 * @return String
615 */
616 public function getRequestURL() {
617 if( isset( $_SERVER['REQUEST_URI'] ) && strlen( $_SERVER['REQUEST_URI'] ) ) {
618 $base = $_SERVER['REQUEST_URI'];
619 } elseif ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) && strlen( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
620 // Probably IIS; doesn't set REQUEST_URI
621 $base = $_SERVER['HTTP_X_ORIGINAL_URL'];
622 } elseif( isset( $_SERVER['SCRIPT_NAME'] ) ) {
623 $base = $_SERVER['SCRIPT_NAME'];
624 if( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] != '' ) {
625 $base .= '?' . $_SERVER['QUERY_STRING'];
626 }
627 } else {
628 // This shouldn't happen!
629 throw new MWException( "Web server doesn't provide either " .
630 "REQUEST_URI, HTTP_X_ORIGINAL_URL or SCRIPT_NAME. Report details " .
631 "of your web server configuration to http://bugzilla.wikimedia.org/" );
632 }
633 // User-agents should not send a fragment with the URI, but
634 // if they do, and the web server passes it on to us, we
635 // need to strip it or we get false-positive redirect loops
636 // or weird output URLs
637 $hash = strpos( $base, '#' );
638 if( $hash !== false ) {
639 $base = substr( $base, 0, $hash );
640 }
641 if( $base[0] == '/' ) {
642 return $base;
643 } else {
644 // We may get paths with a host prepended; strip it.
645 return preg_replace( '!^[^:]+://[^/]+/!', '/', $base );
646 }
647 }
648
649 /**
650 * Return the request URI with the canonical service and hostname, path,
651 * and query string. This will be suitable for use as an absolute link
652 * in HTML or other output.
653 *
654 * If $wgServer is protocol-relative, this will return a fully
655 * qualified URL with the protocol that was used for this request.
656 *
657 * @return String
658 */
659 public function getFullRequestURL() {
660 return wfExpandUrl( $this->getRequestURL(), PROTO_CURRENT );
661 }
662
663 /**
664 * Take an arbitrary query and rewrite the present URL to include it
665 * @param $query String: query string fragment; do not include initial '?'
666 *
667 * @return String
668 */
669 public function appendQuery( $query ) {
670 return $this->appendQueryArray( wfCgiToArray( $query ) );
671 }
672
673 /**
674 * HTML-safe version of appendQuery().
675 * @deprecated: Deprecated in 1.20, warnings in 1.21, remove in 1.22.
676 *
677 * @param $query String: query string fragment; do not include initial '?'
678 * @return String
679 */
680 public function escapeAppendQuery( $query ) {
681 return htmlspecialchars( $this->appendQuery( $query ) );
682 }
683
684 /**
685 * @param $key
686 * @param $value
687 * @param $onlyquery bool
688 * @return String
689 */
690 public function appendQueryValue( $key, $value, $onlyquery = false ) {
691 return $this->appendQueryArray( array( $key => $value ), $onlyquery );
692 }
693
694 /**
695 * Appends or replaces value of query variables.
696 *
697 * @param $array Array of values to replace/add to query
698 * @param $onlyquery Bool: whether to only return the query string and not
699 * the complete URL
700 * @return String
701 */
702 public function appendQueryArray( $array, $onlyquery = false ) {
703 global $wgTitle;
704 $newquery = $this->getQueryValues();
705 unset( $newquery['title'] );
706 $newquery = array_merge( $newquery, $array );
707 $query = wfArrayToCGI( $newquery );
708 return $onlyquery ? $query : $wgTitle->getLocalURL( $query );
709 }
710
711 /**
712 * Check for limit and offset parameters on the input, and return sensible
713 * defaults if not given. The limit must be positive and is capped at 5000.
714 * Offset must be positive but is not capped.
715 *
716 * @param $deflimit Integer: limit to use if no input and the user hasn't set the option.
717 * @param $optionname String: to specify an option other than rclimit to pull from.
718 * @return array first element is limit, second is offset
719 */
720 public function getLimitOffset( $deflimit = 50, $optionname = 'rclimit' ) {
721 global $wgUser;
722
723 $limit = $this->getInt( 'limit', 0 );
724 if( $limit < 0 ) {
725 $limit = 0;
726 }
727 if( ( $limit == 0 ) && ( $optionname != '' ) ) {
728 $limit = (int)$wgUser->getOption( $optionname );
729 }
730 if( $limit <= 0 ) {
731 $limit = $deflimit;
732 }
733 if( $limit > 5000 ) {
734 $limit = 5000; # We have *some* limits...
735 }
736
737 $offset = $this->getInt( 'offset', 0 );
738 if( $offset < 0 ) {
739 $offset = 0;
740 }
741
742 return array( $limit, $offset );
743 }
744
745 /**
746 * Return the path to the temporary file where PHP has stored the upload.
747 *
748 * @param $key String:
749 * @return string or NULL if no such file.
750 */
751 public function getFileTempname( $key ) {
752 $file = new WebRequestUpload( $this, $key );
753 return $file->getTempName();
754 }
755
756 /**
757 * Return the size of the upload, or 0.
758 *
759 * @deprecated since 1.17
760 * @param $key String:
761 * @return integer
762 */
763 public function getFileSize( $key ) {
764 wfDeprecated( __METHOD__, '1.17' );
765 $file = new WebRequestUpload( $this, $key );
766 return $file->getSize();
767 }
768
769 /**
770 * Return the upload error or 0
771 *
772 * @param $key String:
773 * @return integer
774 */
775 public function getUploadError( $key ) {
776 $file = new WebRequestUpload( $this, $key );
777 return $file->getError();
778 }
779
780 /**
781 * Return the original filename of the uploaded file, as reported by
782 * the submitting user agent. HTML-style character entities are
783 * interpreted and normalized to Unicode normalization form C, in part
784 * to deal with weird input from Safari with non-ASCII filenames.
785 *
786 * Other than this the name is not verified for being a safe filename.
787 *
788 * @param $key String:
789 * @return string or NULL if no such file.
790 */
791 public function getFileName( $key ) {
792 $file = new WebRequestUpload( $this, $key );
793 return $file->getName();
794 }
795
796 /**
797 * Return a WebRequestUpload object corresponding to the key
798 *
799 * @param $key string
800 * @return WebRequestUpload
801 */
802 public function getUpload( $key ) {
803 return new WebRequestUpload( $this, $key );
804 }
805
806 /**
807 * Return a handle to WebResponse style object, for setting cookies,
808 * headers and other stuff, for Request being worked on.
809 *
810 * @return WebResponse
811 */
812 public function response() {
813 /* Lazy initialization of response object for this request */
814 if ( !is_object( $this->response ) ) {
815 $class = ( $this instanceof FauxRequest ) ? 'FauxResponse' : 'WebResponse';
816 $this->response = new $class();
817 }
818 return $this->response;
819 }
820
821 /**
822 * Initialise the header list
823 */
824 private function initHeaders() {
825 if ( count( $this->headers ) ) {
826 return;
827 }
828
829 if ( function_exists( 'apache_request_headers' ) ) {
830 foreach ( apache_request_headers() as $tempName => $tempValue ) {
831 $this->headers[ strtoupper( $tempName ) ] = $tempValue;
832 }
833 } else {
834 foreach ( $_SERVER as $name => $value ) {
835 if ( substr( $name, 0, 5 ) === 'HTTP_' ) {
836 $name = str_replace( '_', '-', substr( $name, 5 ) );
837 $this->headers[$name] = $value;
838 } elseif ( $name === 'CONTENT_LENGTH' ) {
839 $this->headers['CONTENT-LENGTH'] = $value;
840 }
841 }
842 }
843 }
844
845 /**
846 * Get an array containing all request headers
847 *
848 * @return Array mapping header name to its value
849 */
850 public function getAllHeaders() {
851 $this->initHeaders();
852 return $this->headers;
853 }
854
855 /**
856 * Get a request header, or false if it isn't set
857 * @param $name String: case-insensitive header name
858 *
859 * @return string|bool False on failure
860 */
861 public function getHeader( $name ) {
862 $this->initHeaders();
863 $name = strtoupper( $name );
864 if ( isset( $this->headers[$name] ) ) {
865 return $this->headers[$name];
866 } else {
867 return false;
868 }
869 }
870
871 /**
872 * Get data from $_SESSION
873 *
874 * @param $key String: name of key in $_SESSION
875 * @return Mixed
876 */
877 public function getSessionData( $key ) {
878 if( !isset( $_SESSION[$key] ) ) {
879 return null;
880 }
881 return $_SESSION[$key];
882 }
883
884 /**
885 * Set session data
886 *
887 * @param $key String: name of key in $_SESSION
888 * @param $data Mixed
889 */
890 public function setSessionData( $key, $data ) {
891 $_SESSION[$key] = $data;
892 }
893
894 /**
895 * Check if Internet Explorer will detect an incorrect cache extension in
896 * PATH_INFO or QUERY_STRING. If the request can't be allowed, show an error
897 * message or redirect to a safer URL. Returns true if the URL is OK, and
898 * false if an error message has been shown and the request should be aborted.
899 *
900 * @param $extWhitelist array
901 * @return bool
902 */
903 public function checkUrlExtension( $extWhitelist = array() ) {
904 global $wgScriptExtension;
905 $extWhitelist[] = ltrim( $wgScriptExtension, '.' );
906 if ( IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist ) ) {
907 if ( !$this->wasPosted() ) {
908 $newUrl = IEUrlExtension::fixUrlForIE6(
909 $this->getFullRequestURL(), $extWhitelist );
910 if ( $newUrl !== false ) {
911 $this->doSecurityRedirect( $newUrl );
912 return false;
913 }
914 }
915 throw new HttpError( 403,
916 'Invalid file extension found in the path info or query string.' );
917 }
918 return true;
919 }
920
921 /**
922 * Attempt to redirect to a URL with a QUERY_STRING that's not dangerous in
923 * IE 6. Returns true if it was successful, false otherwise.
924 *
925 * @param $url string
926 * @return bool
927 */
928 protected function doSecurityRedirect( $url ) {
929 header( 'Location: ' . $url );
930 header( 'Content-Type: text/html' );
931 $encUrl = htmlspecialchars( $url );
932 echo <<<HTML
933 <html>
934 <head>
935 <title>Security redirect</title>
936 </head>
937 <body>
938 <h1>Security redirect</h1>
939 <p>
940 We can't serve non-HTML content from the URL you have requested, because
941 Internet Explorer would interpret it as an incorrect and potentially dangerous
942 content type.</p>
943 <p>Instead, please use <a href="$encUrl">this URL</a>, which is the same as the URL you have requested, except that
944 "&amp;*" is appended. This prevents Internet Explorer from seeing a bogus file
945 extension.
946 </p>
947 </body>
948 </html>
949 HTML;
950 echo "\n";
951 return true;
952 }
953
954 /**
955 * Returns true if the PATH_INFO ends with an extension other than a script
956 * extension. This could confuse IE for scripts that send arbitrary data which
957 * is not HTML but may be detected as such.
958 *
959 * Various past attempts to use the URL to make this check have generally
960 * run up against the fact that CGI does not provide a standard method to
961 * determine the URL. PATH_INFO may be mangled (e.g. if cgi.fix_pathinfo=0),
962 * but only by prefixing it with the script name and maybe some other stuff,
963 * the extension is not mangled. So this should be a reasonably portable
964 * way to perform this security check.
965 *
966 * Also checks for anything that looks like a file extension at the end of
967 * QUERY_STRING, since IE 6 and earlier will use this to get the file type
968 * if there was no dot before the question mark (bug 28235).
969 *
970 * @deprecated Use checkUrlExtension().
971 *
972 * @param $extWhitelist array
973 *
974 * @return bool
975 */
976 public function isPathInfoBad( $extWhitelist = array() ) {
977 wfDeprecated( __METHOD__, '1.17' );
978 global $wgScriptExtension;
979 $extWhitelist[] = ltrim( $wgScriptExtension, '.' );
980 return IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist );
981 }
982
983 /**
984 * Parse the Accept-Language header sent by the client into an array
985 * @return array array( languageCode => q-value ) sorted by q-value in descending order then
986 * appearing time in the header in ascending order.
987 * May contain the "language" '*', which applies to languages other than those explicitly listed.
988 * This is aligned with rfc2616 section 14.4
989 * Preference for earlier languages appears in rfc3282 as an extension to HTTP/1.1.
990 */
991 public function getAcceptLang() {
992 // Modified version of code found at http://www.thefutureoftheweb.com/blog/use-accept-language-header
993 $acceptLang = $this->getHeader( 'Accept-Language' );
994 if ( !$acceptLang ) {
995 return array();
996 }
997
998 // Return the language codes in lower case
999 $acceptLang = strtolower( $acceptLang );
1000
1001 // Break up string into pieces (languages and q factors)
1002 $lang_parse = null;
1003 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})?)?)?/',
1004 $acceptLang, $lang_parse );
1005
1006 if ( !count( $lang_parse[1] ) ) {
1007 return array();
1008 }
1009
1010 $langcodes = $lang_parse[1];
1011 $qvalues = $lang_parse[4];
1012 $indices = range( 0, count( $lang_parse[1] ) - 1 );
1013
1014 // Set default q factor to 1
1015 foreach ( $indices as $index ) {
1016 if ( $qvalues[$index] === '' ) {
1017 $qvalues[$index] = 1;
1018 } elseif ( $qvalues[$index] == 0 ) {
1019 unset( $langcodes[$index], $qvalues[$index], $indices[$index] );
1020 }
1021 }
1022
1023 // Sort list. First by $qvalues, then by order. Reorder $langcodes the same way
1024 array_multisort( $qvalues, SORT_DESC, SORT_NUMERIC, $indices, $langcodes );
1025
1026 // Create a list like "en" => 0.8
1027 $langs = array_combine( $langcodes, $qvalues );
1028
1029 return $langs;
1030 }
1031
1032 /**
1033 * Fetch the raw IP from the request
1034 *
1035 * @since 1.19
1036 *
1037 * @return String
1038 */
1039 protected function getRawIP() {
1040 if ( isset( $_SERVER['REMOTE_ADDR'] ) ) {
1041 return IP::canonicalize( $_SERVER['REMOTE_ADDR'] );
1042 } else {
1043 return null;
1044 }
1045 }
1046
1047 /**
1048 * Work out the IP address based on various globals
1049 * For trusted proxies, use the XFF client IP (first of the chain)
1050 *
1051 * @since 1.19
1052 *
1053 * @return string
1054 */
1055 public function getIP() {
1056 global $wgUsePrivateIPs;
1057
1058 # Return cached result
1059 if ( $this->ip !== null ) {
1060 return $this->ip;
1061 }
1062
1063 # collect the originating ips
1064 $ip = $this->getRawIP();
1065
1066 # Append XFF
1067 $forwardedFor = $this->getHeader( 'X-Forwarded-For' );
1068 if ( $forwardedFor !== false ) {
1069 $ipchain = array_map( 'trim', explode( ',', $forwardedFor ) );
1070 $ipchain = array_reverse( $ipchain );
1071 if ( $ip ) {
1072 array_unshift( $ipchain, $ip );
1073 }
1074
1075 # Step through XFF list and find the last address in the list which is a trusted server
1076 # Set $ip to the IP address given by that trusted server, unless the address is not sensible (e.g. private)
1077 foreach ( $ipchain as $i => $curIP ) {
1078 $curIP = IP::canonicalize( $curIP );
1079 if ( wfIsTrustedProxy( $curIP ) ) {
1080 if ( isset( $ipchain[$i + 1] ) ) {
1081 if ( $wgUsePrivateIPs || IP::isPublic( $ipchain[$i + 1 ] ) ) {
1082 $ip = $ipchain[$i + 1];
1083 }
1084 }
1085 } else {
1086 break;
1087 }
1088 }
1089 }
1090
1091 # Allow extensions to improve our guess
1092 wfRunHooks( 'GetIP', array( &$ip ) );
1093
1094 if ( !$ip ) {
1095 throw new MWException( "Unable to determine IP" );
1096 }
1097
1098 wfDebug( "IP: $ip\n" );
1099 $this->ip = $ip;
1100 return $ip;
1101 }
1102 }
1103
1104 /**
1105 * Object to access the $_FILES array
1106 */
1107 class WebRequestUpload {
1108 protected $request;
1109 protected $doesExist;
1110 protected $fileInfo;
1111
1112 /**
1113 * Constructor. Should only be called by WebRequest
1114 *
1115 * @param $request WebRequest The associated request
1116 * @param $key string Key in $_FILES array (name of form field)
1117 */
1118 public function __construct( $request, $key ) {
1119 $this->request = $request;
1120 $this->doesExist = isset( $_FILES[$key] );
1121 if ( $this->doesExist ) {
1122 $this->fileInfo = $_FILES[$key];
1123 }
1124 }
1125
1126 /**
1127 * Return whether a file with this name was uploaded.
1128 *
1129 * @return bool
1130 */
1131 public function exists() {
1132 return $this->doesExist;
1133 }
1134
1135 /**
1136 * Return the original filename of the uploaded file
1137 *
1138 * @return mixed Filename or null if non-existent
1139 */
1140 public function getName() {
1141 if ( !$this->exists() ) {
1142 return null;
1143 }
1144
1145 global $wgContLang;
1146 $name = $this->fileInfo['name'];
1147
1148 # Safari sends filenames in HTML-encoded Unicode form D...
1149 # Horrid and evil! Let's try to make some kind of sense of it.
1150 $name = Sanitizer::decodeCharReferences( $name );
1151 $name = $wgContLang->normalize( $name );
1152 wfDebug( __METHOD__ . ": {$this->fileInfo['name']} normalized to '$name'\n" );
1153 return $name;
1154 }
1155
1156 /**
1157 * Return the file size of the uploaded file
1158 *
1159 * @return int File size or zero if non-existent
1160 */
1161 public function getSize() {
1162 if ( !$this->exists() ) {
1163 return 0;
1164 }
1165
1166 return $this->fileInfo['size'];
1167 }
1168
1169 /**
1170 * Return the path to the temporary file
1171 *
1172 * @return mixed Path or null if non-existent
1173 */
1174 public function getTempName() {
1175 if ( !$this->exists() ) {
1176 return null;
1177 }
1178
1179 return $this->fileInfo['tmp_name'];
1180 }
1181
1182 /**
1183 * Return the upload error. See link for explanation
1184 * http://www.php.net/manual/en/features.file-upload.errors.php
1185 *
1186 * @return int One of the UPLOAD_ constants, 0 if non-existent
1187 */
1188 public function getError() {
1189 if ( !$this->exists() ) {
1190 return 0; # UPLOAD_ERR_OK
1191 }
1192
1193 return $this->fileInfo['error'];
1194 }
1195
1196 /**
1197 * Returns whether this upload failed because of overflow of a maximum set
1198 * in php.ini
1199 *
1200 * @return bool
1201 */
1202 public function isIniSizeOverflow() {
1203 if ( $this->getError() == UPLOAD_ERR_INI_SIZE ) {
1204 # PHP indicated that upload_max_filesize is exceeded
1205 return true;
1206 }
1207
1208 $contentLength = $this->request->getHeader( 'CONTENT_LENGTH' );
1209 if ( $contentLength > wfShorthandToInteger( ini_get( 'post_max_size' ) ) ) {
1210 # post_max_size is exceeded
1211 return true;
1212 }
1213
1214 return false;
1215 }
1216 }
1217
1218 /**
1219 * WebRequest clone which takes values from a provided array.
1220 *
1221 * @ingroup HTTP
1222 */
1223 class FauxRequest extends WebRequest {
1224 private $wasPosted = false;
1225 private $session = array();
1226
1227 /**
1228 * @param $data Array of *non*-urlencoded key => value pairs, the
1229 * fake GET/POST values
1230 * @param $wasPosted Bool: whether to treat the data as POST
1231 * @param $session Mixed: session array or null
1232 */
1233 public function __construct( $data = array(), $wasPosted = false, $session = null ) {
1234 if( is_array( $data ) ) {
1235 $this->data = $data;
1236 } else {
1237 throw new MWException( "FauxRequest() got bogus data" );
1238 }
1239 $this->wasPosted = $wasPosted;
1240 if( $session )
1241 $this->session = $session;
1242 }
1243
1244 /**
1245 * @param $method string
1246 * @throws MWException
1247 */
1248 private function notImplemented( $method ) {
1249 throw new MWException( "{$method}() not implemented" );
1250 }
1251
1252 /**
1253 * @param $name string
1254 * @param $default string
1255 * @return string
1256 */
1257 public function getText( $name, $default = '' ) {
1258 # Override; don't recode since we're using internal data
1259 return (string)$this->getVal( $name, $default );
1260 }
1261
1262 /**
1263 * @return Array
1264 */
1265 public function getValues() {
1266 return $this->data;
1267 }
1268
1269 /**
1270 * @return array
1271 */
1272 public function getQueryValues() {
1273 if ( $this->wasPosted ) {
1274 return array();
1275 } else {
1276 return $this->data;
1277 }
1278 }
1279
1280 /**
1281 * @return bool
1282 */
1283 public function wasPosted() {
1284 return $this->wasPosted;
1285 }
1286
1287 public function checkSessionCookie() {
1288 return false;
1289 }
1290
1291 public function getRequestURL() {
1292 $this->notImplemented( __METHOD__ );
1293 }
1294
1295 /**
1296 * @param $name
1297 * @return bool|string
1298 */
1299 public function getHeader( $name ) {
1300 return isset( $this->headers[$name] ) ? $this->headers[$name] : false;
1301 }
1302
1303 /**
1304 * @param $name string
1305 * @param $val string
1306 */
1307 public function setHeader( $name, $val ) {
1308 $this->headers[$name] = $val;
1309 }
1310
1311 /**
1312 * @param $key
1313 * @return mixed
1314 */
1315 public function getSessionData( $key ) {
1316 if( isset( $this->session[$key] ) )
1317 return $this->session[$key];
1318 }
1319
1320 /**
1321 * @param $key
1322 * @param $data
1323 */
1324 public function setSessionData( $key, $data ) {
1325 $this->session[$key] = $data;
1326 }
1327
1328 /**
1329 * @return array|Mixed|null
1330 */
1331 public function getSessionArray() {
1332 return $this->session;
1333 }
1334
1335 /**
1336 * @param array $extWhitelist
1337 * @return bool
1338 */
1339 public function isPathInfoBad( $extWhitelist = array() ) {
1340 return false;
1341 }
1342
1343 /**
1344 * @param array $extWhitelist
1345 * @return bool
1346 */
1347 public function checkUrlExtension( $extWhitelist = array() ) {
1348 return true;
1349 }
1350
1351 /**
1352 * @return string
1353 */
1354 protected function getRawIP() {
1355 return '127.0.0.1';
1356 }
1357 }
1358
1359 /**
1360 * Similar to FauxRequest, but only fakes URL parameters and method
1361 * (POST or GET) and use the base request for the remaining stuff
1362 * (cookies, session and headers).
1363 *
1364 * @ingroup HTTP
1365 * @since 1.19
1366 */
1367 class DerivativeRequest extends FauxRequest {
1368 private $base;
1369
1370 public function __construct( WebRequest $base, $data, $wasPosted = false ) {
1371 $this->base = $base;
1372 parent::__construct( $data, $wasPosted );
1373 }
1374
1375 public function getCookie( $key, $prefix = null, $default = null ) {
1376 return $this->base->getCookie( $key, $prefix, $default );
1377 }
1378
1379 public function checkSessionCookie() {
1380 return $this->base->checkSessionCookie();
1381 }
1382
1383 public function getHeader( $name ) {
1384 return $this->base->getHeader( $name );
1385 }
1386
1387 public function getAllHeaders() {
1388 return $this->base->getAllHeaders();
1389 }
1390
1391 public function getSessionData( $key ) {
1392 return $this->base->getSessionData( $key );
1393 }
1394
1395 public function setSessionData( $key, $data ) {
1396 $this->base->setSessionData( $key, $data );
1397 }
1398
1399 public function getAcceptLang() {
1400 return $this->base->getAcceptLang();
1401 }
1402
1403 public function getIP() {
1404 return $this->base->getIP();
1405 }
1406 }