blob: 11b2e94e009477aaad9aadaaeae0b2f896c3d661 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev64e98aa2012-01-07 20:29:10 +02008 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02009 * Copyright (c) 2014, British Columbia Institute of Technology
Andrey Andreev64e98aa2012-01-07 20:29:10 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020032 * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/)
33 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
41 * Input Class
42 *
43 * Pre-processes global input data for security
44 *
45 * @package CodeIgniter
46 * @subpackage Libraries
47 * @category Input
Derek Jonesf4a4bd82011-10-20 12:18:42 -050048 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000049 * @link http://codeigniter.com/user_guide/libraries/input.html
50 */
51class CI_Input {
Derek Allard2067d1a2008-11-13 22:59:24 +000052
David Behler9b5df592011-08-14 21:04:17 +020053 /**
54 * IP address of the current user
55 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030056 * @var string
David Behler9b5df592011-08-14 21:04:17 +020057 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030058 public $ip_address = FALSE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030059
David Behler9b5df592011-08-14 21:04:17 +020060 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +030061 * Allow GET array flag
David Behler9b5df592011-08-14 21:04:17 +020062 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030063 * If set to FALSE, then $_GET will be set to an empty array.
David Behler9b5df592011-08-14 21:04:17 +020064 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030065 * @var bool
David Behler9b5df592011-08-14 21:04:17 +020066 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030067 protected $_allow_get_array = TRUE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030068
David Behler9b5df592011-08-14 21:04:17 +020069 /**
Andrey Andreevbfb635b2014-01-08 18:32:05 +020070 * Standardize new lines flag
David Behler9b5df592011-08-14 21:04:17 +020071 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030072 * If set to TRUE, then newlines are standardized.
73 *
74 * @var bool
David Behler9b5df592011-08-14 21:04:17 +020075 */
Andrey Andreevefc08e92014-04-15 14:32:52 +030076 protected $_standardize_newlines;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030077
David Behler9b5df592011-08-14 21:04:17 +020078 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +030079 * Enable XSS flag
80 *
81 * Determines whether the XSS filter is always active when
82 * GET, POST or COOKIE data is encountered.
83 * Set automatically based on config setting.
84 *
85 * @var bool
86 */
87 protected $_enable_xss = FALSE;
88
89 /**
90 * Enable CSRF flag
91 *
David Behler9b5df592011-08-14 21:04:17 +020092 * Enables a CSRF cookie token to be set.
Andrey Andreev1887ec62012-10-27 16:22:07 +030093 * Set automatically based on config setting.
David Behler9b5df592011-08-14 21:04:17 +020094 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030095 * @var bool
David Behler9b5df592011-08-14 21:04:17 +020096 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030097 protected $_enable_csrf = FALSE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030098
David Behler9b5df592011-08-14 21:04:17 +020099 /**
100 * List of all HTTP request headers
101 *
102 * @var array
103 */
Andrey Andreev1887ec62012-10-27 16:22:07 +0300104 protected $headers = array();
David Behler9b5df592011-08-14 21:04:17 +0200105
Derek Allard2067d1a2008-11-13 22:59:24 +0000106 /**
Andrey Andreev303eef02012-11-06 14:55:48 +0200107 * Input stream data
108 *
109 * Parsed from php://input at runtime
110 *
111 * @see CI_Input::input_stream()
112 * @var array
113 */
114 protected $_input_stream = NULL;
115
116 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300117 * Class constructor
Greg Akera9263282010-11-10 15:26:43 -0600118 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300119 * Determines whether to globally enable the XSS processing
120 * and whether to allow the $_GET array.
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300121 *
122 * @return void
Greg Akera9263282010-11-10 15:26:43 -0600123 */
124 public function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +0000125 {
Andrey Andreev13774972012-01-08 04:30:33 +0200126 log_message('debug', 'Input Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000127
Andrey Andreevbfb635b2014-01-08 18:32:05 +0200128 $this->_allow_get_array = (config_item('allow_get_array') === TRUE);
129 $this->_enable_xss = (config_item('global_xss_filtering') === TRUE);
130 $this->_enable_csrf = (config_item('csrf_protection') === TRUE);
fabianozenatti523cda32014-03-21 12:13:03 +0100131 $this->_standardize_newlines = (bool) config_item('standardize_newlines');
Derek Jones69fc4fc2010-03-02 13:36:31 -0600132
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200133 $this->security =& load_class('Security', 'core');
Derek Jones69fc4fc2010-03-02 13:36:31 -0600134
Pascal Krieteaaec1e42011-01-20 00:01:21 -0500135 // Do we need the UTF-8 class?
Derek Jones69fc4fc2010-03-02 13:36:31 -0600136 if (UTF8_ENABLED === TRUE)
137 {
Andrey Andreevc26b9eb2014-02-24 11:31:36 +0200138 $this->uni =& load_class('Utf8', 'core');
Derek Jones69fc4fc2010-03-02 13:36:31 -0600139 }
140
141 // Sanitize global arrays
Derek Allard2067d1a2008-11-13 22:59:24 +0000142 $this->_sanitize_globals();
143 }
144
145 // --------------------------------------------------------------------
146
147 /**
Greg Akera9263282010-11-10 15:26:43 -0600148 * Fetch from array
149 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300150 * Internal method used to retrieve values from global arrays.
Greg Akera9263282010-11-10 15:26:43 -0600151 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300152 * @param array &$array $_GET, $_POST, $_COOKIE, $_SERVER, etc.
Ahmad Anbarff89a4e2014-12-02 17:26:30 +0200153 * @param mixed $index Index for item to be fetched from $array
Andrey Andreev1887ec62012-10-27 16:22:07 +0300154 * @param bool $xss_clean Whether to apply XSS filtering
155 * @return mixed
Greg Akera9263282010-11-10 15:26:43 -0600156 */
Andrey Andreev7c60b122014-02-08 18:47:19 +0200157 protected function _fetch_from_array(&$array, $index = NULL, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000158 {
Andrey Andreev7c60b122014-02-08 18:47:19 +0200159 // If $index is NULL, it means that the whole $array is requested
160 if ($index === NULL)
161 {
162 $output = array();
163 foreach (array_keys($array) as $key)
164 {
165 $output[$key] = $this->_fetch_from_array($array, $key, $xss_clean);
166 }
167
168 return $output;
169 }
170
Ahmad Anbar89432af2014-12-02 10:04:46 +0200171 // allow fetching multiple keys at once
172 if (is_array($index))
173 {
174 $output = array();
Ahmad Anbarff89a4e2014-12-02 17:26:30 +0200175 foreach ($index as $var)
Ahmad Anbar89432af2014-12-02 10:04:46 +0200176 {
177 $output[$var] = $this->_fetch_from_array($array, $var, $xss_clean);
178 }
179
180 return $output;
181 }
182
Andrey Andreev80a16b12014-01-08 17:19:03 +0200183 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
184
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530185 if (isset($array[$index]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 {
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530187 $value = $array[$index];
188 }
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530189 elseif (($count = preg_match_all('/(?:^[^\[]+)|\[[^]]*\]/', $index, $matches)) > 1) // Does the index contain array notation
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530190 {
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530191 $value = $array;
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530192 for ($i = 0; $i < $count; $i++)
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530193 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530194 $key = trim($matches[0][$i], '[]');
nisheeth-barthwal408cbb42013-03-26 19:06:40 +0530195 if ($key === '') // Empty notation will return the value as array
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530196 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530197 break;
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530198 }
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530199
200 if (isset($value[$key]))
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530201 {
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530202 $value = $value[$key];
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530203 }
204 else
205 {
206 return NULL;
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530207 }
208 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 }
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530210 else
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530212 return NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000213 }
214
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530215 return ($xss_clean === TRUE)
216 ? $this->security->xss_clean($value)
217 : $value;
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 }
219
220 // --------------------------------------------------------------------
221
222 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400223 * Fetch an item from the GET array
224 *
Ahmad Anbarff89a4e2014-12-02 17:26:30 +0200225 * @param mixed $index Index for item to be fetched from $_GET
Andrey Andreev1887ec62012-10-27 16:22:07 +0300226 * @param bool $xss_clean Whether to apply XSS filtering
227 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400228 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200229 public function get($index = NULL, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 {
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530231 return $this->_fetch_from_array($_GET, $index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000232 }
233
234 // --------------------------------------------------------------------
235
236 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400237 * Fetch an item from the POST array
238 *
Ahmad Anbarff89a4e2014-12-02 17:26:30 +0200239 * @param mixed $index Index for item to be fetched from $_POST
Andrey Andreev1887ec62012-10-27 16:22:07 +0300240 * @param bool $xss_clean Whether to apply XSS filtering
241 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400242 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200243 public function post($index = NULL, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 {
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530245 return $this->_fetch_from_array($_POST, $index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000246 }
247
248 // --------------------------------------------------------------------
249
250 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300251 * Fetch an item from POST data with fallback to GET
Timothy Warren40403d22012-04-19 16:38:50 -0400252 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300253 * @param string $index Index for item to be fetched from $_POST or $_GET
254 * @param bool $xss_clean Whether to apply XSS filtering
255 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400256 */
Andrey Andreev7c60b122014-02-08 18:47:19 +0200257 public function post_get($index, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000258 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200259 return isset($_POST[$index])
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530260 ? $this->post($index, $xss_clean)
261 : $this->get($index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000262 }
263
264 // --------------------------------------------------------------------
265
266 /**
vlakoff441fd262013-08-11 20:36:41 +0200267 * Fetch an item from GET data with fallback to POST
268 *
269 * @param string $index Index for item to be fetched from $_GET or $_POST
270 * @param bool $xss_clean Whether to apply XSS filtering
271 * @return mixed
272 */
Andrey Andreev7c60b122014-02-08 18:47:19 +0200273 public function get_post($index, $xss_clean = NULL)
vlakoff441fd262013-08-11 20:36:41 +0200274 {
275 return isset($_GET[$index])
276 ? $this->get($index, $xss_clean)
277 : $this->post($index, $xss_clean);
278 }
279
280 // --------------------------------------------------------------------
281
282 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400283 * Fetch an item from the COOKIE array
284 *
Ahmad Anbarff89a4e2014-12-02 17:26:30 +0200285 * @param mixed $index Index for item to be fetched from $_COOKIE
Andrey Andreev1887ec62012-10-27 16:22:07 +0300286 * @param bool $xss_clean Whether to apply XSS filtering
287 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400288 */
Andrey Andreev7c60b122014-02-08 18:47:19 +0200289 public function cookie($index = NULL, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000290 {
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530291 return $this->_fetch_from_array($_COOKIE, $index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000292 }
293
Andrey Andreev1887ec62012-10-27 16:22:07 +0300294 // --------------------------------------------------------------------
295
296 /**
297 * Fetch an item from the SERVER array
298 *
Ahmad Anbarff89a4e2014-12-02 17:26:30 +0200299 * @param mixed $index Index for item to be fetched from $_SERVER
Andrey Andreev1887ec62012-10-27 16:22:07 +0300300 * @param bool $xss_clean Whether to apply XSS filtering
301 * @return mixed
302 */
Andrey Andreev7c60b122014-02-08 18:47:19 +0200303 public function server($index, $xss_clean = NULL)
Andrey Andreev1887ec62012-10-27 16:22:07 +0300304 {
305 return $this->_fetch_from_array($_SERVER, $index, $xss_clean);
306 }
307
Derek Jones69fc4fc2010-03-02 13:36:31 -0600308 // ------------------------------------------------------------------------
309
310 /**
Andrey Andreev303eef02012-11-06 14:55:48 +0200311 * Fetch an item from the php://input stream
312 *
313 * Useful when you need to access PUT, DELETE or PATCH request data.
314 *
315 * @param string $index Index for item to be fetched
316 * @param bool $xss_clean Whether to apply XSS filtering
317 * @return mixed
318 */
Andrey Andreev7c60b122014-02-08 18:47:19 +0200319 public function input_stream($index = NULL, $xss_clean = NULL)
Andrey Andreev303eef02012-11-06 14:55:48 +0200320 {
Andrey Andreevdc134a82014-05-08 10:00:55 +0300321 // Prior to PHP 5.6, the input stream can only be read once,
322 // so we'll need to check if we have already done that first.
Andrey Andreev303eef02012-11-06 14:55:48 +0200323 if ( ! is_array($this->_input_stream))
324 {
Andrey Andreev7c60b122014-02-08 18:47:19 +0200325 parse_str(file_get_contents('php://input'), $this->_input_stream);
326 is_array($this->_input_stream) OR $this->_input_stream = array();
Andrey Andreev303eef02012-11-06 14:55:48 +0200327 }
328
329 return $this->_fetch_from_array($this->_input_stream, $index, $xss_clean);
330 }
331
332 // ------------------------------------------------------------------------
333
334 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400335 * Set cookie
336 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300337 * Accepts an arbitrary number of parameters (up to 7) or an associative
Timothy Warren40403d22012-04-19 16:38:50 -0400338 * array in the first parameter containing all the values.
339 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300340 * @param string|mixed[] $name Cookie name or an array containing parameters
341 * @param string $value Cookie value
342 * @param int $expire Cookie expiration time in seconds
343 * @param string $domain Cookie domain (e.g.: '.yourdomain.com')
344 * @param string $path Cookie path (default: '/')
345 * @param string $prefix Cookie name prefix
346 * @param bool $secure Whether to only transfer cookies via SSL
347 * @param bool $httponly Whether to only makes the cookie accessible via HTTP (no javascript)
Timothy Warren40403d22012-04-19 16:38:50 -0400348 * @return void
349 */
Andrey Andreev8f5420b2014-01-06 10:34:23 +0200350 public function set_cookie($name, $value = '', $expire = '', $domain = '', $path = '/', $prefix = '', $secure = FALSE, $httponly = FALSE)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600351 {
352 if (is_array($name))
353 {
tobiasbg9aa7dc92011-02-18 21:57:13 +0100354 // always leave 'name' in last place, as the loop will break otherwise, due to $$item
freewil4ad0fd82012-03-13 22:37:42 -0400355 foreach (array('value', 'expire', 'domain', 'path', 'prefix', 'secure', 'httponly', 'name') as $item)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600356 {
357 if (isset($name[$item]))
358 {
359 $$item = $name[$item];
360 }
361 }
362 }
363
Alex Bilbieed944a32012-06-02 11:07:47 +0100364 if ($prefix === '' && config_item('cookie_prefix') !== '')
Derek Jones69fc4fc2010-03-02 13:36:31 -0600365 {
366 $prefix = config_item('cookie_prefix');
367 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300368
369 if ($domain == '' && config_item('cookie_domain') != '')
Derek Jones69fc4fc2010-03-02 13:36:31 -0600370 {
371 $domain = config_item('cookie_domain');
372 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300373
Alex Bilbieed944a32012-06-02 11:07:47 +0100374 if ($path === '/' && config_item('cookie_path') !== '/')
Derek Jones69fc4fc2010-03-02 13:36:31 -0600375 {
376 $path = config_item('cookie_path');
377 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300378
Andrey Andreevd444d442014-10-06 00:00:08 +0300379 if ($secure === FALSE && config_item('cookie_secure') === TRUE)
tobiasbg9aa7dc92011-02-18 21:57:13 +0100380 {
381 $secure = config_item('cookie_secure');
382 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300383
Alex Bilbieed944a32012-06-02 11:07:47 +0100384 if ($httponly === FALSE && config_item('cookie_httponly') !== FALSE)
freewil4ad0fd82012-03-13 22:37:42 -0400385 {
386 $httponly = config_item('cookie_httponly');
387 }
Derek Jones69fc4fc2010-03-02 13:36:31 -0600388
389 if ( ! is_numeric($expire))
390 {
391 $expire = time() - 86500;
392 }
393 else
394 {
Phil Sturgeonc8089152010-12-27 19:06:28 +0000395 $expire = ($expire > 0) ? time() + $expire : 0;
Derek Jones69fc4fc2010-03-02 13:36:31 -0600396 }
397
freewil4ad0fd82012-03-13 22:37:42 -0400398 setcookie($prefix.$name, $value, $expire, $path, $domain, $secure, $httponly);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600399 }
400
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 // --------------------------------------------------------------------
402
403 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400404 * Fetch the IP Address
405 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300406 * Determines and validates the visitor's IP address.
407 *
408 * @return string IP address
Timothy Warren40403d22012-04-19 16:38:50 -0400409 */
Bo-Yi Wu4db872f2011-09-12 10:52:37 +0800410 public function ip_address()
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 {
412 if ($this->ip_address !== FALSE)
413 {
414 return $this->ip_address;
415 }
Barry Mienydd671972010-10-04 16:33:58 +0200416
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300417 $proxy_ips = config_item('proxy_ips');
Andrey Andreevea7a8662012-10-09 13:36:31 +0300418 if ( ! empty($proxy_ips) && ! is_array($proxy_ips))
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300419 {
420 $proxy_ips = explode(',', str_replace(' ', '', $proxy_ips));
421 }
Andrey Andreev5b92ae12012-10-04 13:05:03 +0300422
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300423 $this->ip_address = $this->server('REMOTE_ADDR');
424
425 if ($proxy_ips)
426 {
427 foreach (array('HTTP_X_FORWARDED_FOR', 'HTTP_CLIENT_IP', 'HTTP_X_CLIENT_IP', 'HTTP_X_CLUSTER_CLIENT_IP') as $header)
Jordan Pittman8960acf2012-07-23 09:05:49 -0300428 {
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300429 if (($spoof = $this->server($header)) !== NULL)
Jordan Pittman8960acf2012-07-23 09:05:49 -0300430 {
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300431 // Some proxies typically list the whole chain of IP
432 // addresses through which the client has reached us.
433 // e.g. client_ip, proxy_ip1, proxy_ip2, etc.
Andrey Andreeve24eed72012-11-02 23:33:45 +0200434 sscanf($spoof, '%[^,]', $spoof);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300435
436 if ( ! $this->valid_ip($spoof))
437 {
438 $spoof = NULL;
439 }
440 else
441 {
Jordan Pittmana5a71352012-07-20 19:36:43 -0300442 break;
443 }
444 }
Andrey Andreev5b92ae12012-10-04 13:05:03 +0300445 }
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300446
Andrey Andreeve45ad2b2012-10-09 13:11:15 +0300447 if ($spoof)
Andrey Andreev5b92ae12012-10-04 13:05:03 +0300448 {
Andrey Andreev9df35b42012-10-09 13:37:58 +0300449 for ($i = 0, $c = count($proxy_ips); $i < $c; $i++)
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300450 {
451 // Check if we have an IP address or a subnet
452 if (strpos($proxy_ips[$i], '/') === FALSE)
453 {
454 // An IP address (and not a subnet) is specified.
455 // We can compare right away.
456 if ($proxy_ips[$i] === $this->ip_address)
457 {
458 $this->ip_address = $spoof;
459 break;
460 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000461
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300462 continue;
463 }
464
465 // We have a subnet ... now the heavy lifting begins
466 isset($separator) OR $separator = $this->valid_ip($this->ip_address, 'ipv6') ? ':' : '.';
467
468 // If the proxy entry doesn't match the IP protocol - skip it
469 if (strpos($proxy_ips[$i], $separator) === FALSE)
470 {
471 continue;
472 }
473
474 // Convert the REMOTE_ADDR IP address to binary, if needed
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300475 if ( ! isset($ip, $sprintf))
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300476 {
477 if ($separator === ':')
478 {
479 // Make sure we're have the "full" IPv6 format
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300480 $ip = explode(':',
481 str_replace('::',
482 str_repeat(':', 9 - substr_count($this->ip_address, ':')),
483 $this->ip_address
484 )
485 );
486
487 for ($i = 0; $i < 8; $i++)
488 {
489 $ip[$i] = intval($ip[$i], 16);
490 }
491
492 $sprintf = '%016b%016b%016b%016b%016b%016b%016b%016b';
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300493 }
494 else
495 {
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300496 $ip = explode('.', $this->ip_address);
497 $sprintf = '%08b%08b%08b%08b';
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300498 }
499
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300500 $ip = vsprintf($sprintf, $ip);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300501 }
502
503 // Split the netmask length off the network address
Andrey Andreeve24eed72012-11-02 23:33:45 +0200504 sscanf($proxy_ips[$i], '%[^/]/%d', $netaddr, $masklen);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300505
506 // Again, an IPv6 address is most likely in a compressed form
507 if ($separator === ':')
508 {
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300509 $netaddr = explode(':', str_replace('::', str_repeat(':', 9 - substr_count($netaddr, ':')), $netaddr));
510 for ($i = 0; $i < 8; $i++)
511 {
512 $netaddr[$i] = intval($netaddr[$i], 16);
513 }
514 }
515 else
516 {
517 $netaddr = explode('.', $netaddr);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300518 }
519
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300520 // Convert to binary and finally compare
521 if (strncmp($ip, vsprintf($sprintf, $netaddr), $masklen) === 0)
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300522 {
523 $this->ip_address = $spoof;
524 break;
525 }
526 }
527 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000528 }
529
Derek Allard2067d1a2008-11-13 22:59:24 +0000530 if ( ! $this->valid_ip($this->ip_address))
531 {
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200532 return $this->ip_address = '0.0.0.0';
Derek Allard2067d1a2008-11-13 22:59:24 +0000533 }
534
535 return $this->ip_address;
536 }
537
538 // --------------------------------------------------------------------
539
540 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400541 * Validate IP Address
542 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300543 * @param string $ip IP address
544 * @param string $which IP protocol: 'ipv4' or 'ipv6'
Timothy Warren40403d22012-04-19 16:38:50 -0400545 * @return bool
546 */
Andrey Andreev5a257182012-06-10 06:18:14 +0300547 public function valid_ip($ip, $which = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000548 {
Andrey Andreev5a257182012-06-10 06:18:14 +0300549 switch (strtolower($which))
550 {
551 case 'ipv4':
552 $which = FILTER_FLAG_IPV4;
553 break;
554 case 'ipv6':
555 $which = FILTER_FLAG_IPV6;
556 break;
557 default:
558 $which = NULL;
559 break;
560 }
561
562 return (bool) filter_var($ip, FILTER_VALIDATE_IP, $which);
Derek Allard2067d1a2008-11-13 22:59:24 +0000563 }
564
565 // --------------------------------------------------------------------
566
567 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300568 * Fetch User Agent string
Timothy Warren40403d22012-04-19 16:38:50 -0400569 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300570 * @return string|null User Agent string or NULL if it doesn't exist
Timothy Warren40403d22012-04-19 16:38:50 -0400571 */
Andrey Andreev8850e372014-02-27 21:56:06 +0200572 public function user_agent($xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000573 {
Andrey Andreev8850e372014-02-27 21:56:06 +0200574 return $this->_fetch_from_array($_SERVER, 'HTTP_USER_AGENT', $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000575 }
576
577 // --------------------------------------------------------------------
578
579 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400580 * Sanitize Globals
581 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300582 * Internal method serving for the following purposes:
Timothy Warren40403d22012-04-19 16:38:50 -0400583 *
Andrey Andreevb78a8c72014-04-15 17:21:16 +0300584 * - Unsets $_GET data, if query strings are not enabled
Andrey Andreev1887ec62012-10-27 16:22:07 +0300585 * - Cleans POST, COOKIE and SERVER data
586 * - Standardizes newline characters to PHP_EOL
Timothy Warren40403d22012-04-19 16:38:50 -0400587 *
588 * @return void
589 */
Andrey Andreev90cfe142012-01-08 04:46:42 +0200590 protected function _sanitize_globals()
Derek Allard2067d1a2008-11-13 22:59:24 +0000591 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600592 // Is $_GET data allowed? If not we'll set the $_GET to an empty array
Alex Bilbieed944a32012-06-02 11:07:47 +0100593 if ($this->_allow_get_array === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000594 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600595 $_GET = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000596 }
Andrey Andreev9448afb2012-02-08 19:49:19 +0200597 elseif (is_array($_GET) && count($_GET) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000598 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200599 foreach ($_GET as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200601 $_GET[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000602 }
603 }
604
Derek Jones69fc4fc2010-03-02 13:36:31 -0600605 // Clean $_POST Data
Andrey Andreev9448afb2012-02-08 19:49:19 +0200606 if (is_array($_POST) && count($_POST) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000607 {
Pascal Kriete5d5895f2011-02-14 13:27:07 -0500608 foreach ($_POST as $key => $val)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600609 {
610 $_POST[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
611 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000612 }
613
Derek Jones69fc4fc2010-03-02 13:36:31 -0600614 // Clean $_COOKIE Data
Andrey Andreev9448afb2012-02-08 19:49:19 +0200615 if (is_array($_COOKIE) && count($_COOKIE) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000616 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600617 // Also get rid of specially treated cookies that might be set by a server
618 // or silly application, that are of no use to a CI application anyway
619 // but that when present will trip our 'Disallowed Key Characters' alarm
620 // http://www.ietf.org/rfc/rfc2109.txt
621 // note that the key names below are single quoted strings, and are not PHP variables
Andrey Andreev5ac428b2014-01-08 16:07:31 +0200622 unset(
623 $_COOKIE['$Version'],
624 $_COOKIE['$Path'],
625 $_COOKIE['$Domain']
626 );
Derek Jones69fc4fc2010-03-02 13:36:31 -0600627
Pascal Kriete5d5895f2011-02-14 13:27:07 -0500628 foreach ($_COOKIE as $key => $val)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600629 {
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300630 if (($cookie_key = $this->_clean_input_keys($key)) !== FALSE)
631 {
632 $_COOKIE[$cookie_key] = $this->_clean_input_data($val);
633 }
634 else
635 {
636 unset($_COOKIE[$key]);
637 }
Derek Jones69fc4fc2010-03-02 13:36:31 -0600638 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000639 }
640
Derek Jones69fc4fc2010-03-02 13:36:31 -0600641 // Sanitize PHP_SELF
642 $_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
643
Derek Jones69fc4fc2010-03-02 13:36:31 -0600644 // CSRF Protection check
Andrey Andreevf964b162013-11-12 17:04:55 +0200645 if ($this->_enable_csrf === TRUE && ! is_cli())
Derek Allard2067d1a2008-11-13 22:59:24 +0000646 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600647 $this->security->csrf_verify();
Derek Allard2067d1a2008-11-13 22:59:24 +0000648 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000649
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300650 log_message('debug', 'Global POST, GET and COOKIE data sanitized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000651 }
652
653 // --------------------------------------------------------------------
654
655 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400656 * Clean Input Data
657 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300658 * Internal method that aids in escaping data and
659 * standardizing newline characters to PHP_EOL.
Timothy Warren40403d22012-04-19 16:38:50 -0400660 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300661 * @param string|string[] $str Input string(s)
Timothy Warren40403d22012-04-19 16:38:50 -0400662 * @return string
663 */
Andrey Andreev90cfe142012-01-08 04:46:42 +0200664 protected function _clean_input_data($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000665 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600666 if (is_array($str))
Derek Allard2067d1a2008-11-13 22:59:24 +0000667 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600668 $new_array = array();
Andrey Andreev1887ec62012-10-27 16:22:07 +0300669 foreach (array_keys($str) as $key)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600670 {
Andrey Andreev1887ec62012-10-27 16:22:07 +0300671 $new_array[$this->_clean_input_keys($key)] = $this->_clean_input_data($str[$key]);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600672 }
673 return $new_array;
Derek Allard2067d1a2008-11-13 22:59:24 +0000674 }
675
Andrey Andreevaf728622011-10-20 10:11:59 +0300676 /* We strip slashes if magic quotes is on to keep things consistent
677
678 NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and
679 it will probably not exist in future versions at all.
680 */
681 if ( ! is_php('5.4') && get_magic_quotes_gpc())
Derek Allard2067d1a2008-11-13 22:59:24 +0000682 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600683 $str = stripslashes($str);
684 }
685
686 // Clean UTF-8 if supported
687 if (UTF8_ENABLED === TRUE)
688 {
689 $str = $this->uni->clean_string($str);
690 }
David Behler9b5df592011-08-14 21:04:17 +0200691
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400692 // Remove control characters
Andrey Andreev5ac428b2014-01-08 16:07:31 +0200693 $str = remove_invisible_characters($str, FALSE);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600694
Derek Jones69fc4fc2010-03-02 13:36:31 -0600695 // Standardize newlines if needed
Eric Robertsb75e13d2013-01-27 20:10:09 -0600696 if ($this->_standardize_newlines === TRUE)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600697 {
Eric Robertsb75e13d2013-01-27 20:10:09 -0600698 return preg_replace('/(?:\r\n|[\r\n])/', PHP_EOL, $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000699 }
700
701 return $str;
702 }
703
704 // --------------------------------------------------------------------
705
706 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400707 * Clean Keys
708 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300709 * Internal method that helps to prevent malicious users
Timothy Warren40403d22012-04-19 16:38:50 -0400710 * from trying to exploit keys we make sure that keys are
711 * only named with alpha-numeric text and a few other items.
712 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300713 * @param string $str Input string
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300714 * @param string $fatal Whether to terminate script exection
715 * or to return FALSE if an invalid
716 * key is encountered
717 * @return string|bool
Timothy Warren40403d22012-04-19 16:38:50 -0400718 */
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300719 protected function _clean_input_keys($str, $fatal = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000720 {
bigCat3c0846b2012-08-21 00:20:20 +0800721 if ( ! preg_match('/^[a-z0-9:_\/|-]+$/i', $str))
Derek Allard2067d1a2008-11-13 22:59:24 +0000722 {
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300723 if ($fatal === TRUE)
724 {
725 return FALSE;
726 }
727 else
728 {
729 set_status_header(503);
730 echo 'Disallowed Key Characters.';
Andrey Andreev7cf682a2014-03-13 14:55:45 +0200731 exit(7); // EXIT_USER_INPUT
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300732 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000733 }
734
Derek Jones69fc4fc2010-03-02 13:36:31 -0600735 // Clean UTF-8 if supported
736 if (UTF8_ENABLED === TRUE)
737 {
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200738 return $this->uni->clean_string($str);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600739 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000740
Derek Jones69fc4fc2010-03-02 13:36:31 -0600741 return $str;
742 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000743
Greg Akerec2f5712010-11-15 16:22:12 -0600744 // --------------------------------------------------------------------
745
746 /**
747 * Request Headers
748 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300749 * @param bool $xss_clean Whether to apply XSS filtering
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200750 * @return array
Greg Akerec2f5712010-11-15 16:22:12 -0600751 */
752 public function request_headers($xss_clean = FALSE)
753 {
CJ71cff1d2013-04-16 21:50:55 +0800754 // If header is already defined, return it immediately
755 if ( ! empty($this->headers))
756 {
757 return $this->headers;
758 }
759
Andrey Andreev1887ec62012-10-27 16:22:07 +0300760 // In Apache, you can simply call apache_request_headers()
Greg Akerec2f5712010-11-15 16:22:12 -0600761 if (function_exists('apache_request_headers'))
762 {
CJ71cff1d2013-04-16 21:50:55 +0800763 return $this->headers = apache_request_headers();
Greg Akerec2f5712010-11-15 16:22:12 -0600764 }
CJd195f222013-04-17 01:04:13 +0800765
CJ8347f912013-04-17 21:45:22 +0800766 $this->headers['Content-Type'] = isset($_SERVER['CONTENT_TYPE']) ? $_SERVER['CONTENT_TYPE'] : @getenv('CONTENT_TYPE');
CJd195f222013-04-17 01:04:13 +0800767
768 foreach ($_SERVER as $key => $val)
Greg Akerec2f5712010-11-15 16:22:12 -0600769 {
CJd195f222013-04-17 01:04:13 +0800770 if (sscanf($key, 'HTTP_%s', $header) === 1)
Greg Akerec2f5712010-11-15 16:22:12 -0600771 {
CJd195f222013-04-17 01:04:13 +0800772 // take SOME_HEADER and turn it into Some-Header
773 $header = str_replace('_', ' ', strtolower($header));
774 $header = str_replace(' ', '-', ucwords($header));
Greg Akerec2f5712010-11-15 16:22:12 -0600775
CJd195f222013-04-17 01:04:13 +0800776 $this->headers[$header] = $this->_fetch_from_array($_SERVER, $key, $xss_clean);
CJ826990f2013-04-16 14:17:53 +0800777 }
Greg Akerec2f5712010-11-15 16:22:12 -0600778 }
David Behler9b5df592011-08-14 21:04:17 +0200779
Greg Akerec2f5712010-11-15 16:22:12 -0600780 return $this->headers;
781 }
782
783 // --------------------------------------------------------------------
784
785 /**
786 * Get Request Header
787 *
788 * Returns the value of a single member of the headers class member
789 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300790 * @param string $index Header name
791 * @param bool $xss_clean Whether to apply XSS filtering
Adriano Rosaf112e4a2014-10-03 13:15:46 -0300792 * @return string|null The requested header on success or NULL on failure
Greg Akerec2f5712010-11-15 16:22:12 -0600793 */
794 public function get_request_header($index, $xss_clean = FALSE)
795 {
796 if (empty($this->headers))
797 {
798 $this->request_headers();
799 }
David Behler9b5df592011-08-14 21:04:17 +0200800
Greg Akerec2f5712010-11-15 16:22:12 -0600801 if ( ! isset($this->headers[$index]))
802 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100803 return NULL;
Greg Akerec2f5712010-11-15 16:22:12 -0600804 }
805
Andrey Andreev9448afb2012-02-08 19:49:19 +0200806 return ($xss_clean === TRUE)
807 ? $this->security->xss_clean($this->headers[$index])
808 : $this->headers[$index];
Greg Akerec2f5712010-11-15 16:22:12 -0600809 }
810
Greg Aker081ac9d2010-11-22 14:42:53 -0600811 // --------------------------------------------------------------------
Phil Sturgeonc3828712011-01-19 12:31:47 +0000812
Greg Aker081ac9d2010-11-22 14:42:53 -0600813 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300814 * Is AJAX request?
Greg Aker081ac9d2010-11-22 14:42:53 -0600815 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300816 * Test to see if a request contains the HTTP_X_REQUESTED_WITH header.
Greg Aker081ac9d2010-11-22 14:42:53 -0600817 *
Andrey Andreev9448afb2012-02-08 19:49:19 +0200818 * @return bool
Greg Aker081ac9d2010-11-22 14:42:53 -0600819 */
820 public function is_ajax_request()
821 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200822 return ( ! empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
Greg Aker081ac9d2010-11-22 14:42:53 -0600823 }
824
Phil Sturgeonc3828712011-01-19 12:31:47 +0000825 // --------------------------------------------------------------------
826
827 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300828 * Is CLI request?
Phil Sturgeonc3828712011-01-19 12:31:47 +0000829 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300830 * Test to see if a request was made from the command line.
Phil Sturgeonc3828712011-01-19 12:31:47 +0000831 *
Andrey Andreevf964b162013-11-12 17:04:55 +0200832 * @deprecated 3.0.0 Use is_cli() instead
833 * @return bool
Phil Sturgeonc3828712011-01-19 12:31:47 +0000834 */
835 public function is_cli_request()
836 {
Andrey Andreevf964b162013-11-12 17:04:55 +0200837 return is_cli();
Phil Sturgeonc3828712011-01-19 12:31:47 +0000838 }
839
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100840 // --------------------------------------------------------------------
841
842 /**
843 * Get Request Method
844 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300845 * Return the request method
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100846 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300847 * @param bool $upper Whether to return in upper or lower case
848 * (default: FALSE)
849 * @return string
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100850 */
Michiel Vugteveen704fb162012-03-07 20:42:33 +0100851 public function method($upper = FALSE)
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100852 {
Michiel Vugteveendc900df2012-03-07 20:41:37 +0100853 return ($upper)
854 ? strtoupper($this->server('REQUEST_METHOD'))
855 : strtolower($this->server('REQUEST_METHOD'));
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100856 }
857
Derek Allard2067d1a2008-11-13 22:59:24 +0000858}
Derek Allard2067d1a2008-11-13 22:59:24 +0000859
860/* End of file Input.php */
fabianozenatti28eca652014-03-21 14:54:25 +0100861/* Location: ./system/core/Input.php */