Revert "merged master"
[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 * Get the HTTP method used for this request.
568 *
569 * @return String
570 */
571 public function getMethod() {
572 return isset( $_SERVER['REQUEST_METHOD'] ) ? $_SERVER['REQUEST_METHOD'] : 'GET';
573 }
574
575 /**
576 * Returns true if the present request was reached by a POST operation,
577 * false otherwise (GET, HEAD, or command-line).
578 *
579 * Note that values retrieved by the object may come from the
580 * GET URL etc even on a POST request.
581 *
582 * @return Boolean
583 */
584 public function wasPosted() {
585 return $this->getMethod() == 'POST';
586 }
587
588 /**
589 * Returns true if there is a session cookie set.
590 * This does not necessarily mean that the user is logged in!
591 *
592 * If you want to check for an open session, use session_id()
593 * instead; that will also tell you if the session was opened
594 * during the current request (in which case the cookie will
595 * be sent back to the client at the end of the script run).
596 *
597 * @return Boolean
598 */
599 public function checkSessionCookie() {
600 return isset( $_COOKIE[ session_name() ] );
601 }
602
603 /**
604 * Get a cookie from the $_COOKIE jar
605 *
606 * @param $key String: the name of the cookie
607 * @param $prefix String: a prefix to use for the cookie name, if not $wgCookiePrefix
608 * @param $default Mixed: what to return if the value isn't found
609 * @return Mixed: cookie value or $default if the cookie not set
610 */
611 public function getCookie( $key, $prefix = null, $default = null ) {
612 if( $prefix === null ) {
613 global $wgCookiePrefix;
614 $prefix = $wgCookiePrefix;
615 }
616 return $this->getGPCVal( $_COOKIE, $prefix . $key , $default );
617 }
618
619 /**
620 * Return the path and query string portion of the request URI.
621 * This will be suitable for use as a relative link in HTML output.
622 *
623 * @return String
624 */
625 public function getRequestURL() {
626 if( isset( $_SERVER['REQUEST_URI'] ) && strlen( $_SERVER['REQUEST_URI'] ) ) {
627 $base = $_SERVER['REQUEST_URI'];
628 } elseif ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) && strlen( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
629 // Probably IIS; doesn't set REQUEST_URI
630 $base = $_SERVER['HTTP_X_ORIGINAL_URL'];
631 } elseif( isset( $_SERVER['SCRIPT_NAME'] ) ) {
632 $base = $_SERVER['SCRIPT_NAME'];
633 if( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] != '' ) {
634 $base .= '?' . $_SERVER['QUERY_STRING'];
635 }
636 } else {
637 // This shouldn't happen!
638 throw new MWException( "Web server doesn't provide either " .
639 "REQUEST_URI, HTTP_X_ORIGINAL_URL or SCRIPT_NAME. Report details " .
640 "of your web server configuration to http://bugzilla.wikimedia.org/" );
641 }
642 // User-agents should not send a fragment with the URI, but
643 // if they do, and the web server passes it on to us, we
644 // need to strip it or we get false-positive redirect loops
645 // or weird output URLs
646 $hash = strpos( $base, '#' );
647 if( $hash !== false ) {
648 $base = substr( $base, 0, $hash );
649 }
650 if( $base[0] == '/' ) {
651 return $base;
652 } else {
653 // We may get paths with a host prepended; strip it.
654 return preg_replace( '!^[^:]+://[^/]+/!', '/', $base );
655 }
656 }
657
658 /**
659 * Return the request URI with the canonical service and hostname, path,
660 * and query string. This will be suitable for use as an absolute link
661 * in HTML or other output.
662 *
663 * If $wgServer is protocol-relative, this will return a fully
664 * qualified URL with the protocol that was used for this request.
665 *
666 * @return String
667 */
668 public function getFullRequestURL() {
669 return wfExpandUrl( $this->getRequestURL(), PROTO_CURRENT );
670 }
671
672 /**
673 * Take an arbitrary query and rewrite the present URL to include it
674 * @param $query String: query string fragment; do not include initial '?'
675 *
676 * @return String
677 */
678 public function appendQuery( $query ) {
679 return $this->appendQueryArray( wfCgiToArray( $query ) );
680 }
681
682 /**
683 * HTML-safe version of appendQuery().
684 * @deprecated: Deprecated in 1.20, warnings in 1.21, remove in 1.22.
685 *
686 * @param $query String: query string fragment; do not include initial '?'
687 * @return String
688 */
689 public function escapeAppendQuery( $query ) {
690 return htmlspecialchars( $this->appendQuery( $query ) );
691 }
692
693 /**
694 * @param $key
695 * @param $value
696 * @param $onlyquery bool
697 * @return String
698 */
699 public function appendQueryValue( $key, $value, $onlyquery = false ) {
700 return $this->appendQueryArray( array( $key => $value ), $onlyquery );
701 }
702
703 /**
704 * Appends or replaces value of query variables.
705 *
706 * @param $array Array of values to replace/add to query
707 * @param $onlyquery Bool: whether to only return the query string and not
708 * the complete URL
709 * @return String
710 */
711 public function appendQueryArray( $array, $onlyquery = false ) {
712 global $wgTitle;
713 $newquery = $this->getQueryValues();
714 unset( $newquery['title'] );
715 $newquery = array_merge( $newquery, $array );
716 $query = wfArrayToCGI( $newquery );
717 return $onlyquery ? $query : $wgTitle->getLocalURL( $query );
718 }
719
720 /**
721 * Check for limit and offset parameters on the input, and return sensible
722 * defaults if not given. The limit must be positive and is capped at 5000.
723 * Offset must be positive but is not capped.
724 *
725 * @param $deflimit Integer: limit to use if no input and the user hasn't set the option.
726 * @param $optionname String: to specify an option other than rclimit to pull from.
727 * @return array first element is limit, second is offset
728 */
729 public function getLimitOffset( $deflimit = 50, $optionname = 'rclimit' ) {
730 global $wgUser;
731
732 $limit = $this->getInt( 'limit', 0 );
733 if( $limit < 0 ) {
734 $limit = 0;
735 }
736 if( ( $limit == 0 ) && ( $optionname != '' ) ) {
737 $limit = (int)$wgUser->getOption( $optionname );
738 }
739 if( $limit <= 0 ) {
740 $limit = $deflimit;
741 }
742 if( $limit > 5000 ) {
743 $limit = 5000; # We have *some* limits...
744 }
745
746 $offset = $this->getInt( 'offset', 0 );
747 if( $offset < 0 ) {
748 $offset = 0;
749 }
750
751 return array( $limit, $offset );
752 }
753
754 /**
755 * Return the path to the temporary file where PHP has stored the upload.
756 *
757 * @param $key String:
758 * @return string or NULL if no such file.
759 */
760 public function getFileTempname( $key ) {
761 $file = new WebRequestUpload( $this, $key );
762 return $file->getTempName();
763 }
764
765 /**
766 * Return the size of the upload, or 0.
767 *
768 * @deprecated since 1.17
769 * @param $key String:
770 * @return integer
771 */
772 public function getFileSize( $key ) {
773 wfDeprecated( __METHOD__, '1.17' );
774 $file = new WebRequestUpload( $this, $key );
775 return $file->getSize();
776 }
777
778 /**
779 * Return the upload error or 0
780 *
781 * @param $key String:
782 * @return integer
783 */
784 public function getUploadError( $key ) {
785 $file = new WebRequestUpload( $this, $key );
786 return $file->getError();
787 }
788
789 /**
790 * Return the original filename of the uploaded file, as reported by
791 * the submitting user agent. HTML-style character entities are
792 * interpreted and normalized to Unicode normalization form C, in part
793 * to deal with weird input from Safari with non-ASCII filenames.
794 *
795 * Other than this the name is not verified for being a safe filename.
796 *
797 * @param $key String:
798 * @return string or NULL if no such file.
799 */
800 public function getFileName( $key ) {
801 $file = new WebRequestUpload( $this, $key );
802 return $file->getName();
803 }
804
805 /**
806 * Return a WebRequestUpload object corresponding to the key
807 *
808 * @param $key string
809 * @return WebRequestUpload
810 */
811 public function getUpload( $key ) {
812 return new WebRequestUpload( $this, $key );
813 }
814
815 /**
816 * Return a handle to WebResponse style object, for setting cookies,
817 * headers and other stuff, for Request being worked on.
818 *
819 * @return WebResponse
820 */
821 public function response() {
822 /* Lazy initialization of response object for this request */
823 if ( !is_object( $this->response ) ) {
824 $class = ( $this instanceof FauxRequest ) ? 'FauxResponse' : 'WebResponse';
825 $this->response = new $class();
826 }
827 return $this->response;
828 }
829
830 /**
831 * Initialise the header list
832 */
833 private function initHeaders() {
834 if ( count( $this->headers ) ) {
835 return;
836 }
837
838 if ( function_exists( 'apache_request_headers' ) ) {
839 foreach ( apache_request_headers() as $tempName => $tempValue ) {
840 $this->headers[ strtoupper( $tempName ) ] = $tempValue;
841 }
842 } else {
843 foreach ( $_SERVER as $name => $value ) {
844 if ( substr( $name, 0, 5 ) === 'HTTP_' ) {
845 $name = str_replace( '_', '-', substr( $name, 5 ) );
846 $this->headers[$name] = $value;
847 } elseif ( $name === 'CONTENT_LENGTH' ) {
848 $this->headers['CONTENT-LENGTH'] = $value;
849 }
850 }
851 }
852 }
853
854 /**
855 * Get an array containing all request headers
856 *
857 * @return Array mapping header name to its value
858 */
859 public function getAllHeaders() {
860 $this->initHeaders();
861 return $this->headers;
862 }
863
864 /**
865 * Get a request header, or false if it isn't set
866 * @param $name String: case-insensitive header name
867 *
868 * @return string|bool False on failure
869 */
870 public function getHeader( $name ) {
871 $this->initHeaders();
872 $name = strtoupper( $name );
873 if ( isset( $this->headers[$name] ) ) {
874 return $this->headers[$name];
875 } else {
876 return false;
877 }
878 }
879
880 /**
881 * Get data from $_SESSION
882 *
883 * @param $key String: name of key in $_SESSION
884 * @return Mixed
885 */
886 public function getSessionData( $key ) {
887 if( !isset( $_SESSION[$key] ) ) {
888 return null;
889 }
890 return $_SESSION[$key];
891 }
892
893 /**
894 * Set session data
895 *
896 * @param $key String: name of key in $_SESSION
897 * @param $data Mixed
898 */
899 public function setSessionData( $key, $data ) {
900 $_SESSION[$key] = $data;
901 }
902
903 /**
904 * Check if Internet Explorer will detect an incorrect cache extension in
905 * PATH_INFO or QUERY_STRING. If the request can't be allowed, show an error
906 * message or redirect to a safer URL. Returns true if the URL is OK, and
907 * false if an error message has been shown and the request should be aborted.
908 *
909 * @param $extWhitelist array
910 * @return bool
911 */
912 public function checkUrlExtension( $extWhitelist = array() ) {
913 global $wgScriptExtension;
914 $extWhitelist[] = ltrim( $wgScriptExtension, '.' );
915 if ( IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist ) ) {
916 if ( !$this->wasPosted() ) {
917 $newUrl = IEUrlExtension::fixUrlForIE6(
918 $this->getFullRequestURL(), $extWhitelist );
919 if ( $newUrl !== false ) {
920 $this->doSecurityRedirect( $newUrl );
921 return false;
922 }
923 }
924 throw new HttpError( 403,
925 'Invalid file extension found in the path info or query string.' );
926 }
927 return true;
928 }
929
930 /**
931 * Attempt to redirect to a URL with a QUERY_STRING that's not dangerous in
932 * IE 6. Returns true if it was successful, false otherwise.
933 *
934 * @param $url string
935 * @return bool
936 */
937 protected function doSecurityRedirect( $url ) {
938 header( 'Location: ' . $url );
939 header( 'Content-Type: text/html' );
940 $encUrl = htmlspecialchars( $url );
941 echo <<<HTML
942 <html>
943 <head>
944 <title>Security redirect</title>
945 </head>
946 <body>
947 <h1>Security redirect</h1>
948 <p>
949 We can't serve non-HTML content from the URL you have requested, because
950 Internet Explorer would interpret it as an incorrect and potentially dangerous
951 content type.</p>
952 <p>Instead, please use <a href="$encUrl">this URL</a>, which is the same as the URL you have requested, except that
953 "&amp;*" is appended. This prevents Internet Explorer from seeing a bogus file
954 extension.
955 </p>
956 </body>
957 </html>
958 HTML;
959 echo "\n";
960 return true;
961 }
962
963 /**
964 * Returns true if the PATH_INFO ends with an extension other than a script
965 * extension. This could confuse IE for scripts that send arbitrary data which
966 * is not HTML but may be detected as such.
967 *
968 * Various past attempts to use the URL to make this check have generally
969 * run up against the fact that CGI does not provide a standard method to
970 * determine the URL. PATH_INFO may be mangled (e.g. if cgi.fix_pathinfo=0),
971 * but only by prefixing it with the script name and maybe some other stuff,
972 * the extension is not mangled. So this should be a reasonably portable
973 * way to perform this security check.
974 *
975 * Also checks for anything that looks like a file extension at the end of
976 * QUERY_STRING, since IE 6 and earlier will use this to get the file type
977 * if there was no dot before the question mark (bug 28235).
978 *
979 * @deprecated Use checkUrlExtension().
980 *
981 * @param $extWhitelist array
982 *
983 * @return bool
984 */
985 public function isPathInfoBad( $extWhitelist = array() ) {
986 wfDeprecated( __METHOD__, '1.17' );
987 global $wgScriptExtension;
988 $extWhitelist[] = ltrim( $wgScriptExtension, '.' );
989 return IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist );
990 }
991
992 /**
993 * Parse the Accept-Language header sent by the client into an array
994 * @return array array( languageCode => q-value ) sorted by q-value in descending order then
995 * appearing time in the header in ascending order.
996 * May contain the "language" '*', which applies to languages other than those explicitly listed.
997 * This is aligned with rfc2616 section 14.4
998 * Preference for earlier languages appears in rfc3282 as an extension to HTTP/1.1.
999 */
1000 public function getAcceptLang() {
1001 // Modified version of code found at http://www.thefutureoftheweb.com/blog/use-accept-language-header
1002 $acceptLang = $this->getHeader( 'Accept-Language' );
1003 if ( !$acceptLang ) {
1004 return array();
1005 }
1006
1007 // Return the language codes in lower case
1008 $acceptLang = strtolower( $acceptLang );
1009
1010 // Break up string into pieces (languages and q factors)
1011 $lang_parse = null;
1012 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})?)?)?/',
1013 $acceptLang, $lang_parse );
1014
1015 if ( !count( $lang_parse[1] ) ) {
1016 return array();
1017 }
1018
1019 $langcodes = $lang_parse[1];
1020 $qvalues = $lang_parse[4];
1021 $indices = range( 0, count( $lang_parse[1] ) - 1 );
1022
1023 // Set default q factor to 1
1024 foreach ( $indices as $index ) {
1025 if ( $qvalues[$index] === '' ) {
1026 $qvalues[$index] = 1;
1027 } elseif ( $qvalues[$index] == 0 ) {
1028 unset( $langcodes[$index], $qvalues[$index], $indices[$index] );
1029 }
1030 }
1031
1032 // Sort list. First by $qvalues, then by order. Reorder $langcodes the same way
1033 array_multisort( $qvalues, SORT_DESC, SORT_NUMERIC, $indices, $langcodes );
1034
1035 // Create a list like "en" => 0.8
1036 $langs = array_combine( $langcodes, $qvalues );
1037
1038 return $langs;
1039 }
1040
1041 /**
1042 * Fetch the raw IP from the request
1043 *
1044 * @since 1.19
1045 *
1046 * @return String
1047 */
1048 protected function getRawIP() {
1049 if ( isset( $_SERVER['REMOTE_ADDR'] ) ) {
1050 return IP::canonicalize( $_SERVER['REMOTE_ADDR'] );
1051 } else {
1052 return null;
1053 }
1054 }
1055
1056 /**
1057 * Work out the IP address based on various globals
1058 * For trusted proxies, use the XFF client IP (first of the chain)
1059 *
1060 * @since 1.19
1061 *
1062 * @return string
1063 */
1064 public function getIP() {
1065 global $wgUsePrivateIPs;
1066
1067 # Return cached result
1068 if ( $this->ip !== null ) {
1069 return $this->ip;
1070 }
1071
1072 # collect the originating ips
1073 $ip = $this->getRawIP();
1074
1075 # Append XFF
1076 $forwardedFor = $this->getHeader( 'X-Forwarded-For' );
1077 if ( $forwardedFor !== false ) {
1078 $ipchain = array_map( 'trim', explode( ',', $forwardedFor ) );
1079 $ipchain = array_reverse( $ipchain );
1080 if ( $ip ) {
1081 array_unshift( $ipchain, $ip );
1082 }
1083
1084 # Step through XFF list and find the last address in the list which is a trusted server
1085 # Set $ip to the IP address given by that trusted server, unless the address is not sensible (e.g. private)
1086 foreach ( $ipchain as $i => $curIP ) {
1087 $curIP = IP::canonicalize( $curIP );
1088 if ( wfIsTrustedProxy( $curIP ) ) {
1089 if ( isset( $ipchain[$i + 1] ) ) {
1090 if ( $wgUsePrivateIPs || IP::isPublic( $ipchain[$i + 1 ] ) ) {
1091 $ip = $ipchain[$i + 1];
1092 }
1093 }
1094 } else {
1095 break;
1096 }
1097 }
1098 }
1099
1100 # Allow extensions to improve our guess
1101 wfRunHooks( 'GetIP', array( &$ip ) );
1102
1103 if ( !$ip ) {
1104 throw new MWException( "Unable to determine IP" );
1105 }
1106
1107 wfDebug( "IP: $ip\n" );
1108 $this->ip = $ip;
1109 return $ip;
1110 }
1111 }
1112
1113 /**
1114 * Object to access the $_FILES array
1115 */
1116 class WebRequestUpload {
1117 protected $request;
1118 protected $doesExist;
1119 protected $fileInfo;
1120
1121 /**
1122 * Constructor. Should only be called by WebRequest
1123 *
1124 * @param $request WebRequest The associated request
1125 * @param $key string Key in $_FILES array (name of form field)
1126 */
1127 public function __construct( $request, $key ) {
1128 $this->request = $request;
1129 $this->doesExist = isset( $_FILES[$key] );
1130 if ( $this->doesExist ) {
1131 $this->fileInfo = $_FILES[$key];
1132 }
1133 }
1134
1135 /**
1136 * Return whether a file with this name was uploaded.
1137 *
1138 * @return bool
1139 */
1140 public function exists() {
1141 return $this->doesExist;
1142 }
1143
1144 /**
1145 * Return the original filename of the uploaded file
1146 *
1147 * @return mixed Filename or null if non-existent
1148 */
1149 public function getName() {
1150 if ( !$this->exists() ) {
1151 return null;
1152 }
1153
1154 global $wgContLang;
1155 $name = $this->fileInfo['name'];
1156
1157 # Safari sends filenames in HTML-encoded Unicode form D...
1158 # Horrid and evil! Let's try to make some kind of sense of it.
1159 $name = Sanitizer::decodeCharReferences( $name );
1160 $name = $wgContLang->normalize( $name );
1161 wfDebug( __METHOD__ . ": {$this->fileInfo['name']} normalized to '$name'\n" );
1162 return $name;
1163 }
1164
1165 /**
1166 * Return the file size of the uploaded file
1167 *
1168 * @return int File size or zero if non-existent
1169 */
1170 public function getSize() {
1171 if ( !$this->exists() ) {
1172 return 0;
1173 }
1174
1175 return $this->fileInfo['size'];
1176 }
1177
1178 /**
1179 * Return the path to the temporary file
1180 *
1181 * @return mixed Path or null if non-existent
1182 */
1183 public function getTempName() {
1184 if ( !$this->exists() ) {
1185 return null;
1186 }
1187
1188 return $this->fileInfo['tmp_name'];
1189 }
1190
1191 /**
1192 * Return the upload error. See link for explanation
1193 * http://www.php.net/manual/en/features.file-upload.errors.php
1194 *
1195 * @return int One of the UPLOAD_ constants, 0 if non-existent
1196 */
1197 public function getError() {
1198 if ( !$this->exists() ) {
1199 return 0; # UPLOAD_ERR_OK
1200 }
1201
1202 return $this->fileInfo['error'];
1203 }
1204
1205 /**
1206 * Returns whether this upload failed because of overflow of a maximum set
1207 * in php.ini
1208 *
1209 * @return bool
1210 */
1211 public function isIniSizeOverflow() {
1212 if ( $this->getError() == UPLOAD_ERR_INI_SIZE ) {
1213 # PHP indicated that upload_max_filesize is exceeded
1214 return true;
1215 }
1216
1217 $contentLength = $this->request->getHeader( 'CONTENT_LENGTH' );
1218 if ( $contentLength > wfShorthandToInteger( ini_get( 'post_max_size' ) ) ) {
1219 # post_max_size is exceeded
1220 return true;
1221 }
1222
1223 return false;
1224 }
1225 }
1226
1227 /**
1228 * WebRequest clone which takes values from a provided array.
1229 *
1230 * @ingroup HTTP
1231 */
1232 class FauxRequest extends WebRequest {
1233 private $wasPosted = false;
1234 private $session = array();
1235
1236 /**
1237 * @param $data Array of *non*-urlencoded key => value pairs, the
1238 * fake GET/POST values
1239 * @param $wasPosted Bool: whether to treat the data as POST
1240 * @param $session Mixed: session array or null
1241 */
1242 public function __construct( $data = array(), $wasPosted = false, $session = null ) {
1243 if( is_array( $data ) ) {
1244 $this->data = $data;
1245 } else {
1246 throw new MWException( "FauxRequest() got bogus data" );
1247 }
1248 $this->wasPosted = $wasPosted;
1249 if( $session )
1250 $this->session = $session;
1251 }
1252
1253 /**
1254 * @param $method string
1255 * @throws MWException
1256 */
1257 private function notImplemented( $method ) {
1258 throw new MWException( "{$method}() not implemented" );
1259 }
1260
1261 /**
1262 * @param $name string
1263 * @param $default string
1264 * @return string
1265 */
1266 public function getText( $name, $default = '' ) {
1267 # Override; don't recode since we're using internal data
1268 return (string)$this->getVal( $name, $default );
1269 }
1270
1271 /**
1272 * @return Array
1273 */
1274 public function getValues() {
1275 return $this->data;
1276 }
1277
1278 /**
1279 * @return array
1280 */
1281 public function getQueryValues() {
1282 if ( $this->wasPosted ) {
1283 return array();
1284 } else {
1285 return $this->data;
1286 }
1287 }
1288
1289 public function getMethod() {
1290 return $this->wasPosted ? 'POST' : 'GET';
1291 }
1292
1293 /**
1294 * @return bool
1295 */
1296 public function wasPosted() {
1297 return $this->wasPosted;
1298 }
1299
1300 public function checkSessionCookie() {
1301 return false;
1302 }
1303
1304 public function getRequestURL() {
1305 $this->notImplemented( __METHOD__ );
1306 }
1307
1308 /**
1309 * @param $name
1310 * @return bool|string
1311 */
1312 public function getHeader( $name ) {
1313 return isset( $this->headers[$name] ) ? $this->headers[$name] : false;
1314 }
1315
1316 /**
1317 * @param $name string
1318 * @param $val string
1319 */
1320 public function setHeader( $name, $val ) {
1321 $this->headers[$name] = $val;
1322 }
1323
1324 /**
1325 * @param $key
1326 * @return mixed
1327 */
1328 public function getSessionData( $key ) {
1329 if( isset( $this->session[$key] ) )
1330 return $this->session[$key];
1331 }
1332
1333 /**
1334 * @param $key
1335 * @param $data
1336 */
1337 public function setSessionData( $key, $data ) {
1338 $this->session[$key] = $data;
1339 }
1340
1341 /**
1342 * @return array|Mixed|null
1343 */
1344 public function getSessionArray() {
1345 return $this->session;
1346 }
1347
1348 /**
1349 * @param array $extWhitelist
1350 * @return bool
1351 */
1352 public function isPathInfoBad( $extWhitelist = array() ) {
1353 return false;
1354 }
1355
1356 /**
1357 * @param array $extWhitelist
1358 * @return bool
1359 */
1360 public function checkUrlExtension( $extWhitelist = array() ) {
1361 return true;
1362 }
1363
1364 /**
1365 * @return string
1366 */
1367 protected function getRawIP() {
1368 return '127.0.0.1';
1369 }
1370 }
1371
1372 /**
1373 * Similar to FauxRequest, but only fakes URL parameters and method
1374 * (POST or GET) and use the base request for the remaining stuff
1375 * (cookies, session and headers).
1376 *
1377 * @ingroup HTTP
1378 * @since 1.19
1379 */
1380 class DerivativeRequest extends FauxRequest {
1381 private $base;
1382
1383 public function __construct( WebRequest $base, $data, $wasPosted = false ) {
1384 $this->base = $base;
1385 parent::__construct( $data, $wasPosted );
1386 }
1387
1388 public function getCookie( $key, $prefix = null, $default = null ) {
1389 return $this->base->getCookie( $key, $prefix, $default );
1390 }
1391
1392 public function checkSessionCookie() {
1393 return $this->base->checkSessionCookie();
1394 }
1395
1396 public function getHeader( $name ) {
1397 return $this->base->getHeader( $name );
1398 }
1399
1400 public function getAllHeaders() {
1401 return $this->base->getAllHeaders();
1402 }
1403
1404 public function getSessionData( $key ) {
1405 return $this->base->getSessionData( $key );
1406 }
1407
1408 public function setSessionData( $key, $data ) {
1409 $this->base->setSessionData( $key, $data );
1410 }
1411
1412 public function getAcceptLang() {
1413 return $this->base->getAcceptLang();
1414 }
1415
1416 public function getIP() {
1417 return $this->base->getIP();
1418 }
1419 }