Reconcept cl_raw_sortkey as cl_sortkey_prefix
[lhc/web/wiklou.git] / includes / WebRequest.php
index 8362f11..1bde4ae 100644 (file)
@@ -39,16 +39,15 @@ if ( !function_exists( '__autoload' ) ) {
  * not create a second WebRequest object; make a FauxRequest object if
  * you want to pass arbitrary data to some function in place of the web
  * input.
- * 
+ *
  * @ingroup HTTP
  */
 class WebRequest {
-       protected $data = array();
-       var $headers;
-       private $_response, $mFixMagicQuotes;
+       protected $data, $headers = array();
+       private $_response;
 
        public function __construct() {
-               /// @fixme This preemptive de-quoting can interfere with other web libraries
+               /// @todo Fixme: this preemptive de-quoting can interfere with other web libraries
                ///        and increases our memory footprint. It would be cleaner to do on
                ///        demand; but currently we have no wrapper for $_SERVER etc.
                $this->checkMagicQuotes();
@@ -67,11 +66,13 @@ class WebRequest {
         */
        public function interpolateTitle() {
                global $wgUsePathInfo;
+
                if ( $wgUsePathInfo ) {
                        // PATH_INFO is mangled due to http://bugs.php.net/bug.php?id=31892
                        // And also by Apache 2.x, double slashes are converted to single slashes.
                        // So we will use REQUEST_URI if possible.
                        $matches = array();
+
                        if ( !empty( $_SERVER['REQUEST_URI'] ) ) {
                                // Slurp out the path portion to examine...
                                $url = $_SERVER['REQUEST_URI'];
@@ -159,6 +160,7 @@ class WebRequest {
        /**
         * Recursively strips slashes from the given array;
         * used for undoing the evil that is magic_quotes_gpc.
+        *
         * @param $arr array: will be modified
         * @return array the original array
         */
@@ -180,8 +182,9 @@ class WebRequest {
         * time could damage the values.
         */
        private function checkMagicQuotes() {
-               $this->mFixMagicQuotes = function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc()            
-               if( $this->mFixMagicQuotes ) {
+               $mustFixQuotes = function_exists( 'get_magic_quotes_gpc' )
+                       && get_magic_quotes_gpc();
+               if( $mustFixQuotes ) {
                        $this->fix_magic_quotes( $_COOKIE );
                        $this->fix_magic_quotes( $_ENV );
                        $this->fix_magic_quotes( $_GET );
@@ -193,6 +196,7 @@ class WebRequest {
 
        /**
         * Recursively normalizes UTF-8 strings in the given array.
+        *
         * @param $data string or array
         * @return cleaned-up version of the given
         * @private
@@ -203,7 +207,8 @@ class WebRequest {
                                $data[$key] = $this->normalizeUnicode( $val );
                        }
                } else {
-                       $data = UtfNormal::cleanUp( $data );
+                       global $wgContLang;
+                       $data = $wgContLang->normalize( $data );
                }
                return $data;
        }
@@ -211,9 +216,9 @@ class WebRequest {
        /**
         * Fetch a value from the given array or return $default if it's not set.
         *
-        * @param $arr array
-        * @param $name string
-        * @param $default mixed
+        * @param $arr Array
+        * @param $name String
+        * @param $default Mixed
         * @return mixed
         */
        private function getGPCVal( $arr, $name, $default ) {
@@ -244,11 +249,11 @@ class WebRequest {
         * non-freeform text inputs (e.g. predefined internal text keys
         * selected by a drop-down menu). For freeform input, see getText().
         *
-        * @param $name string
-        * @param $default string: optional default (or NULL)
-        * @return string
+        * @param $name String
+        * @param $default String: optional default (or NULL)
+        * @return String
         */
-       public function getVal( $name, $default = NULL ) {
+       public function getVal( $name, $default = null ) {
                $val = $this->getGPCVal( $this->data, $name, $default );
                if( is_array( $val ) ) {
                        $val = $default;
@@ -259,12 +264,13 @@ class WebRequest {
                        return (string)$val;
                }
        }
-       
+
        /**
         * Set an aribtrary value into our get/post data.
-        * @param $key string Key name to use
-        * @param $value mixed Value to set
-        * @return mixed old value if one was present, null otherwise
+        *
+        * @param $key String: key name to use
+        * @param $value Mixed: value to set
+        * @return Mixed: old value if one was present, null otherwise
         */
        public function setVal( $key, $value ) {
                $ret = isset( $this->data[$key] ) ? $this->data[$key] : null;
@@ -277,11 +283,11 @@ class WebRequest {
         * If source was scalar, will return an array with a single element.
         * If no source and no default, returns NULL.
         *
-        * @param $name string
-        * @param $default array: optional default (or NULL)
-        * @return array
+        * @param $name String
+        * @param $default Array: optional default (or NULL)
+        * @return Array
         */
-       public function getArray( $name, $default = NULL ) {
+       public function getArray( $name, $default = null ) {
                $val = $this->getGPCVal( $this->data, $name, $default );
                if( is_null( $val ) ) {
                        return null;
@@ -296,11 +302,11 @@ class WebRequest {
         * If no source and no default, returns NULL.
         * If an array is returned, contents are guaranteed to be integers.
         *
-        * @param $name string
-        * @param $default array: option default (or NULL)
-        * @return array of ints
+        * @param $name String
+        * @param $default Array: option default (or NULL)
+        * @return Array of ints
         */
-       public function getIntArray( $name, $default = NULL ) {
+       public function getIntArray( $name, $default = null ) {
                $val = $this->getArray( $name, $default );
                if( is_array( $val ) ) {
                        $val = array_map( 'intval', $val );
@@ -312,9 +318,10 @@ class WebRequest {
         * Fetch an integer value from the input or return $default if not set.
         * Guaranteed to return an integer; non-numeric input will typically
         * return 0.
-        * @param $name string
-        * @param $default int
-        * @return int
+        *
+        * @param $name String
+        * @param $default Integer
+        * @return Integer
         */
        public function getInt( $name, $default = 0 ) {
                return intval( $this->getVal( $name, $default ) );
@@ -324,8 +331,9 @@ class WebRequest {
         * Fetch an integer value from the input or return null if empty.
         * Guaranteed to return an integer or null; non-numeric input will
         * typically return null.
-        * @param $name string
-        * @return int
+        *
+        * @param $name String
+        * @return Integer
         */
        public function getIntOrNull( $name ) {
                $val = $this->getVal( $name );
@@ -338,9 +346,10 @@ class WebRequest {
         * Fetch a boolean value from the input or return $default if not set.
         * Guaranteed to return true or false, with normal PHP semantics for
         * boolean interpretation of strings.
-        * @param $name string
-        * @param $default bool
-        * @return bool
+        *
+        * @param $name String
+        * @param $default Boolean
+        * @return Boolean
         */
        public function getBool( $name, $default = false ) {
                return $this->getVal( $name, $default ) ? true : false;
@@ -350,13 +359,14 @@ class WebRequest {
         * Return true if the named value is set in the input, whatever that
         * value is (even "0"). Return false if the named value is not set.
         * Example use is checking for the presence of check boxes in forms.
-        * @param $name string
-        * @return bool
+        *
+        * @param $name String
+        * @return Boolean
         */
        public function getCheck( $name ) {
                # Checkboxes and buttons are only present when clicked
                # Presence connotes truth, abscense false
-               $val = $this->getVal( $name, NULL );
+               $val = $this->getVal( $name, null );
                return isset( $val );
        }
 
@@ -368,9 +378,9 @@ class WebRequest {
         * input (for which input transformations may be required - e.g. Esperanto
         * x-coding).
         *
-        * @param $name string
-        * @param $default string: optional
-        * @return string
+        * @param $name String
+        * @param $default String: optional
+        * @return String
         */
        public function getText( $name, $default = '' ) {
                global $wgContLang;
@@ -407,7 +417,7 @@ class WebRequest {
         * Note that values retrieved by the object may come from the
         * GET URL etc even on a POST request.
         *
-        * @return bool
+        * @return Boolean
         */
        public function wasPosted() {
                return $_SERVER['REQUEST_METHOD'] == 'POST';
@@ -422,18 +432,35 @@ class WebRequest {
         * during the current request (in which case the cookie will
         * be sent back to the client at the end of the script run).
         *
-        * @return bool
+        * @return Boolean
         */
        public function checkSessionCookie() {
                return isset( $_COOKIE[session_name()] );
        }
 
+       /**
+        * Get a cookie from the $_COOKIE jar
+        *
+        * @param $key String: the name of the cookie
+        * @param $default Mixed: what to return if the value isn't found
+        * @param $prefix String: a prefix to use for the cookie name, if not $wgCookiePrefix
+        * @return Mixed: cookie value or $default if the cookie not set
+        */
+       public function getCookie( $key, $default = null, $prefix = '' ) {
+               if( !$prefix ) {
+                       global $wgCookiePrefix;
+                       $prefix = $wgCookiePrefix;
+               }
+               return $this->getGPCVal( $_COOKIE, $prefix . $key , $default );
+       }
+
        /**
         * Return the path portion of the request URI.
-        * @return string
+        *
+        * @return String
         */
        public function getRequestURL() {
-               if( isset( $_SERVER['REQUEST_URI'] ) ) {
+               if( isset( $_SERVER['REQUEST_URI']) && strlen($_SERVER['REQUEST_URI']) ) {
                        $base = $_SERVER['REQUEST_URI'];
                } elseif( isset( $_SERVER['SCRIPT_NAME'] ) ) {
                        // Probably IIS; doesn't set REQUEST_URI
@@ -465,7 +492,8 @@ class WebRequest {
 
        /**
         * Return the request URI with the canonical service and hostname.
-        * @return string
+        *
+        * @return String
         */
        public function getFullRequestURL() {
                global $wgServer;
@@ -475,7 +503,8 @@ class WebRequest {
        /**
         * Take an arbitrary query and rewrite the present URL to include it
         * @param $query String: query string fragment; do not include initial '?'
-        * @return string
+        *
+        * @return String
         */
        public function appendQuery( $query ) {
                global $wgTitle;
@@ -499,8 +528,9 @@ class WebRequest {
 
        /**
         * HTML-safe version of appendQuery().
+        *
         * @param $query String: query string fragment; do not include initial '?'
-        * @return string
+        * @return String
         */
        public function escapeAppendQuery( $query ) {
                return htmlspecialchars( $this->appendQuery( $query ) );
@@ -512,10 +542,11 @@ class WebRequest {
 
        /**
         * Appends or replaces value of query variables.
+        *
         * @param $array Array of values to replace/add to query
         * @param $onlyquery Bool: whether to only return the query string and not
         *                   the complete URL
-        * @return string
+        * @return String
         */
        public function appendQueryArray( $array, $onlyquery = false ) {
                global $wgTitle;
@@ -554,18 +585,20 @@ class WebRequest {
 
        /**
         * Return the path to the temporary file where PHP has stored the upload.
+        *
         * @param $key String:
         * @return string or NULL if no such file.
         */
        public function getFileTempname( $key ) {
                if( !isset( $_FILES[$key] ) ) {
-                       return NULL;
+                       return null;
                }
                return $_FILES[$key]['tmp_name'];
        }
 
        /**
         * Return the size of the upload, or 0.
+        *
         * @param $key String:
         * @return integer
         */
@@ -578,6 +611,7 @@ class WebRequest {
 
        /**
         * Return the upload error or 0
+        *
         * @param $key String:
         * @return integer
         */
@@ -600,15 +634,16 @@ class WebRequest {
         * @return string or NULL if no such file.
         */
        public function getFileName( $key ) {
+               global $wgContLang;
                if( !isset( $_FILES[$key] ) ) {
-                       return NULL;
+                       return null;
                }
                $name = $_FILES[$key]['name'];
 
                # Safari sends filenames in HTML-encoded Unicode form D...
                # Horrid and evil! Let's try to make some kind of sense of it.
                $name = Sanitizer::decodeCharReferences( $name );
-               $name = UtfNormal::cleanUp( $name );
+               $name = $wgContLang->normalize( $name );
                wfDebug( "WebRequest::getFileName() '" . $_FILES[$key]['name'] . "' normalized to '$name'\n" );
                return $name;
        }
@@ -620,7 +655,8 @@ class WebRequest {
        public function response() {
                /* Lazy initialization of response object for this request */
                if ( !is_object( $this->_response ) ) {
-                       $this->_response = new WebResponse;
+                       $class = ( $this instanceof FauxRequest ) ? 'FauxResponse' : 'WebResponse';
+                       $this->_response = new $class();
                }
                return $this->_response;
        }
@@ -632,8 +668,7 @@ class WebRequest {
        public function getHeader( $name ) {
                $name = strtoupper( $name );
                if ( function_exists( 'apache_request_headers' ) ) {
-                       if ( !isset( $this->headers ) ) {
-                               $this->headers = array();
+                       if ( !$this->headers ) {
                                foreach ( apache_request_headers() as $tempName => $tempValue ) {
                                        $this->headers[ strtoupper( $tempName ) ] = $tempValue;
                                }
@@ -652,26 +687,86 @@ class WebRequest {
                        }
                }
        }
-       
-       /*
+
+       /**
         * Get data from $_SESSION
-        * @param $key String Name of key in $_SESSION
-        * @return mixed
+        *
+        * @param $key String: name of key in $_SESSION
+        * @return Mixed
         */
        public function getSessionData( $key ) {
                if( !isset( $_SESSION[$key] ) )
                        return null;
                return $_SESSION[$key];
        }
-       
+
        /**
         * Set session data
-        * @param $key String Name of key in $_SESSION
-        * @param $data mixed
+        *
+        * @param $key String: name of key in $_SESSION
+        * @param $data Mixed
         */
        public function setSessionData( $key, $data ) {
                $_SESSION[$key] = $data;
        }
+
+       /**
+        * Returns true if the PATH_INFO ends with an extension other than a script
+        * extension. This could confuse IE for scripts that send arbitrary data which
+        * is not HTML but may be detected as such.
+        *
+        * Various past attempts to use the URL to make this check have generally
+        * run up against the fact that CGI does not provide a standard method to
+        * determine the URL. PATH_INFO may be mangled (e.g. if cgi.fix_pathinfo=0),
+        * but only by prefixing it with the script name and maybe some other stuff,
+        * the extension is not mangled. So this should be a reasonably portable
+        * way to perform this security check.
+        */
+       public function isPathInfoBad() {
+               global $wgScriptExtension;
+
+               if ( !isset( $_SERVER['PATH_INFO'] ) ) {
+                       return false;
+               }
+               $pi = $_SERVER['PATH_INFO'];
+               $dotPos = strrpos( $pi, '.' );
+               if ( $dotPos === false ) {
+                       return false;
+               }
+               $ext = substr( $pi, $dotPos );
+               return !in_array( $ext, array( $wgScriptExtension, '.php', '.php5' ) );
+       }
+       
+       /**
+        * Parse the Accept-Language header sent by the client into an array
+        * @return array( languageCode => q-value ) sorted by q-value in descending order
+        */
+       public function getAcceptLang() {
+               // Modified version of code found at http://www.thefutureoftheweb.com/blog/use-accept-language-header
+               if ( !isset( $_SERVER['HTTP_ACCEPT_LANGUAGE'] ) ) {
+                       return array();
+               }
+               
+               // Break up string into pieces (languages and q factors)
+               $lang_parse = null;
+               preg_match_all( '/([a-z]{1,8}(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0(\.[0-9]+))?)?/i',
+                       $_SERVER['HTTP_ACCEPT_LANGUAGE'], $lang_parse );
+               
+               if ( !count( $lang_parse[1] ) ) {
+                       return array();
+               }
+               // Create a list like "en" => 0.8
+               $langs = array_combine( $lang_parse[1], $lang_parse[4] );
+               // Set default q factor to 1
+               foreach ( $langs as $lang => $val ) {
+                       if ( $val === '' ) {
+                               $langs[$lang] = 1;
+                       }
+               }
+               // Sort list
+               arsort( $langs, SORT_NUMERIC );
+               return $langs;
+       }
 }
 
 /**
@@ -681,12 +776,13 @@ class WebRequest {
  */
 class FauxRequest extends WebRequest {
        private $wasPosted = false;
-       private $session, $headers = array();
+       private $session = array();
 
        /**
         * @param $data Array of *non*-urlencoded key => value pairs, the
         *   fake GET/POST values
         * @param $wasPosted Bool: whether to treat the data as POST
+        * @param $session Mixed: session array or null
         */
        public function __construct( $data, $wasPosted = false, $session = null ) {
                if( is_array( $data ) ) {
@@ -732,14 +828,20 @@ class FauxRequest extends WebRequest {
                return isset( $this->headers[$name] ) ? $this->headers[$name] : false;
        }
 
+       public function setHeader( $name, $val ) {
+               $this->headers[$name] = $val;
+       }
+
        public function getSessionData( $key ) {
-               if( !isset( $this->session[$key] ) )
-                       return null;
-               return $this->session[$key];
+               if( isset( $this->session[$key] ) )
+                       return $this->session[$key];
        }
 
        public function setSessionData( $key, $data ) {
-               $this->notImplemented( __METHOD__ );
+               $this->session[$key] = $data;
        }
 
+       public function isPathInfoBad() {
+               return false;
+       }
 }