blob: f5123fa5b30b618c97182c5ba5172769e68c0b48 [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 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev64e98aa2012-01-07 20:29:10 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev64e98aa2012-01-07 20:29:10 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * Input Class
31 *
32 * Pre-processes global input data for security
33 *
34 * @package CodeIgniter
35 * @subpackage Libraries
36 * @category Input
Derek Jonesf4a4bd82011-10-20 12:18:42 -050037 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000038 * @link http://codeigniter.com/user_guide/libraries/input.html
39 */
40class CI_Input {
Derek Allard2067d1a2008-11-13 22:59:24 +000041
David Behler9b5df592011-08-14 21:04:17 +020042 /**
43 * IP address of the current user
44 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030045 * @var string
David Behler9b5df592011-08-14 21:04:17 +020046 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030047 public $ip_address = FALSE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030048
David Behler9b5df592011-08-14 21:04:17 +020049 /**
vlakoffc941d852013-08-06 14:44:40 +020050 * User agent string
David Behler9b5df592011-08-14 21:04:17 +020051 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030052 * @var string
David Behler9b5df592011-08-14 21:04:17 +020053 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030054 public $user_agent = FALSE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030055
David Behler9b5df592011-08-14 21:04:17 +020056 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +030057 * Allow GET array flag
David Behler9b5df592011-08-14 21:04:17 +020058 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030059 * If set to FALSE, then $_GET will be set to an empty array.
David Behler9b5df592011-08-14 21:04:17 +020060 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030061 * @var bool
David Behler9b5df592011-08-14 21:04:17 +020062 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030063 protected $_allow_get_array = TRUE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030064
David Behler9b5df592011-08-14 21:04:17 +020065 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +030066 * Standartize new lines flag
David Behler9b5df592011-08-14 21:04:17 +020067 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030068 * If set to TRUE, then newlines are standardized.
69 *
70 * @var bool
David Behler9b5df592011-08-14 21:04:17 +020071 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030072 protected $_standardize_newlines = TRUE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030073
David Behler9b5df592011-08-14 21:04:17 +020074 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +030075 * Enable XSS flag
76 *
77 * Determines whether the XSS filter is always active when
78 * GET, POST or COOKIE data is encountered.
79 * Set automatically based on config setting.
80 *
81 * @var bool
82 */
83 protected $_enable_xss = FALSE;
84
85 /**
86 * Enable CSRF flag
87 *
David Behler9b5df592011-08-14 21:04:17 +020088 * Enables a CSRF cookie token to be set.
Andrey Andreev1887ec62012-10-27 16:22:07 +030089 * Set automatically based on config setting.
David Behler9b5df592011-08-14 21:04:17 +020090 *
Andrey Andreev1887ec62012-10-27 16:22:07 +030091 * @var bool
David Behler9b5df592011-08-14 21:04:17 +020092 */
Andrey Andreev1887ec62012-10-27 16:22:07 +030093 protected $_enable_csrf = FALSE;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030094
David Behler9b5df592011-08-14 21:04:17 +020095 /**
96 * List of all HTTP request headers
97 *
98 * @var array
99 */
Andrey Andreev1887ec62012-10-27 16:22:07 +0300100 protected $headers = array();
David Behler9b5df592011-08-14 21:04:17 +0200101
Derek Allard2067d1a2008-11-13 22:59:24 +0000102 /**
Andrey Andreev303eef02012-11-06 14:55:48 +0200103 * Input stream data
104 *
105 * Parsed from php://input at runtime
106 *
107 * @see CI_Input::input_stream()
108 * @var array
109 */
110 protected $_input_stream = NULL;
111
112 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300113 * Class constructor
Greg Akera9263282010-11-10 15:26:43 -0600114 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300115 * Determines whether to globally enable the XSS processing
116 * and whether to allow the $_GET array.
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300117 *
118 * @return void
Greg Akera9263282010-11-10 15:26:43 -0600119 */
120 public function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +0000121 {
Andrey Andreev13774972012-01-08 04:30:33 +0200122 log_message('debug', 'Input Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000123
Phil Sturgeonc8089152010-12-27 19:06:28 +0000124 $this->_allow_get_array = (config_item('allow_get_array') === TRUE);
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200125 $this->_enable_xss = (config_item('global_xss_filtering') === TRUE);
126 $this->_enable_csrf = (config_item('csrf_protection') === TRUE);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600127
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400128 global $SEC;
129 $this->security =& $SEC;
Derek Jones69fc4fc2010-03-02 13:36:31 -0600130
Pascal Krieteaaec1e42011-01-20 00:01:21 -0500131 // Do we need the UTF-8 class?
Derek Jones69fc4fc2010-03-02 13:36:31 -0600132 if (UTF8_ENABLED === TRUE)
133 {
134 global $UNI;
135 $this->uni =& $UNI;
136 }
137
138 // Sanitize global arrays
Derek Allard2067d1a2008-11-13 22:59:24 +0000139 $this->_sanitize_globals();
140 }
141
142 // --------------------------------------------------------------------
143
144 /**
Greg Akera9263282010-11-10 15:26:43 -0600145 * Fetch from array
146 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300147 * Internal method used to retrieve values from global arrays.
Greg Akera9263282010-11-10 15:26:43 -0600148 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300149 * @param array &$array $_GET, $_POST, $_COOKIE, $_SERVER, etc.
150 * @param string $index Index for item to be fetched from $array
151 * @param bool $xss_clean Whether to apply XSS filtering
152 * @return mixed
Greg Akera9263282010-11-10 15:26:43 -0600153 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200154 protected function _fetch_from_array(&$array, $index = '', $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000155 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200156 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
157
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530158 if (isset($array[$index]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000159 {
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530160 $value = $array[$index];
161 }
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530162 elseif (($count = preg_match_all('/(?:^[^\[]+)|\[[^]]*\]/', $index, $matches)) > 1) // Does the index contain array notation
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530163 {
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530164 $value = $array;
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530165 for ($i = 0; $i < $count; $i++)
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530166 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530167 $key = trim($matches[0][$i], '[]');
nisheeth-barthwal408cbb42013-03-26 19:06:40 +0530168 if ($key === '') // Empty notation will return the value as array
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530169 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530170 break;
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530171 }
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530172
173 if (isset($value[$key]))
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530174 {
nisheeth-barthwal47ea5a82013-03-26 18:57:28 +0530175 $value = $value[$key];
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530176 }
177 else
178 {
179 return NULL;
nisheeth-barthwala7447d22013-03-21 15:48:10 +0530180 }
181 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000182 }
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530183 else
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 {
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530185 return NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 }
187
nisheeth-barthwal77236e02013-03-25 23:42:36 +0530188 return ($xss_clean === TRUE)
189 ? $this->security->xss_clean($value)
190 : $value;
Derek Allard2067d1a2008-11-13 22:59:24 +0000191 }
192
193 // --------------------------------------------------------------------
194
195 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400196 * Fetch an item from the GET array
197 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300198 * @param string $index Index for item to be fetched from $_GET
199 * @param bool $xss_clean Whether to apply XSS filtering
200 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400201 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200202 public function get($index = NULL, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000203 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200204 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
205
Phil Sturgeon44f21052011-02-15 21:39:25 +0000206 // Check if a field has been provided
Andrey Andreev77bd21b2012-11-20 16:34:15 +0200207 if ($index === NULL)
vascopjff1cfa12011-02-13 21:30:19 +0000208 {
Andrey Andreev77bd21b2012-11-20 16:34:15 +0200209 if (empty($_GET))
210 {
211 return array();
212 }
213
Phil Sturgeon44f21052011-02-15 21:39:25 +0000214 $get = array();
vascopjff1cfa12011-02-13 21:30:19 +0000215
216 // loop through the full _GET array
Phil Sturgeon44f21052011-02-15 21:39:25 +0000217 foreach (array_keys($_GET) as $key)
vascopjff1cfa12011-02-13 21:30:19 +0000218 {
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530219 $get[$key] = $this->_fetch_from_array($_GET, $key, $xss_clean);
vascopjff1cfa12011-02-13 21:30:19 +0000220 }
Phil Sturgeon44f21052011-02-15 21:39:25 +0000221 return $get;
vascopjff1cfa12011-02-13 21:30:19 +0000222 }
223
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530224 return $this->_fetch_from_array($_GET, $index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000225 }
226
227 // --------------------------------------------------------------------
228
229 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400230 * Fetch an item from the POST array
231 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300232 * @param string $index Index for item to be fetched from $_POST
233 * @param bool $xss_clean Whether to apply XSS filtering
234 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400235 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200236 public function post($index = NULL, $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000237 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200238 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
239
Phil Sturgeon44f21052011-02-15 21:39:25 +0000240 // Check if a field has been provided
Andrey Andreev77bd21b2012-11-20 16:34:15 +0200241 if ($index === NULL)
vascopj0ba58b82011-02-06 14:20:21 +0000242 {
Andrey Andreev77bd21b2012-11-20 16:34:15 +0200243 if (empty($_POST))
244 {
245 return array();
246 }
247
Phil Sturgeon44f21052011-02-15 21:39:25 +0000248 $post = array();
vascopj0ba58b82011-02-06 14:20:21 +0000249
Phil Sturgeon44f21052011-02-15 21:39:25 +0000250 // Loop through the full _POST array and return it
251 foreach (array_keys($_POST) as $key)
vascopj0ba58b82011-02-06 14:20:21 +0000252 {
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530253 $post[$key] = $this->_fetch_from_array($_POST, $key, $xss_clean);
vascopj0ba58b82011-02-06 14:20:21 +0000254 }
Phil Sturgeon44f21052011-02-15 21:39:25 +0000255 return $post;
vascopj0ba58b82011-02-06 14:20:21 +0000256 }
David Behler9b5df592011-08-14 21:04:17 +0200257
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530258 return $this->_fetch_from_array($_POST, $index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000259 }
260
261 // --------------------------------------------------------------------
262
263 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300264 * Fetch an item from POST data with fallback to GET
Timothy Warren40403d22012-04-19 16:38:50 -0400265 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300266 * @param string $index Index for item to be fetched from $_POST or $_GET
267 * @param bool $xss_clean Whether to apply XSS filtering
268 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400269 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200270 public function post_get($index = '', $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000271 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200272 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
273
Andrey Andreev9448afb2012-02-08 19:49:19 +0200274 return isset($_POST[$index])
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530275 ? $this->post($index, $xss_clean)
276 : $this->get($index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000277 }
278
279 // --------------------------------------------------------------------
280
281 /**
vlakoff441fd262013-08-11 20:36:41 +0200282 * Fetch an item from GET data with fallback to POST
283 *
284 * @param string $index Index for item to be fetched from $_GET or $_POST
285 * @param bool $xss_clean Whether to apply XSS filtering
286 * @return mixed
287 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200288 public function get_post($index = '', $xss_clean = NULL)
vlakoff441fd262013-08-11 20:36:41 +0200289 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200290 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
291
vlakoff441fd262013-08-11 20:36:41 +0200292 return isset($_GET[$index])
293 ? $this->get($index, $xss_clean)
294 : $this->post($index, $xss_clean);
295 }
296
297 // --------------------------------------------------------------------
298
299 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400300 * Fetch an item from the COOKIE array
301 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300302 * @param string $index Index for item to be fetched from $_COOKIE
303 * @param bool $xss_clean Whether to apply XSS filtering
304 * @return mixed
Timothy Warren40403d22012-04-19 16:38:50 -0400305 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200306 public function cookie($index = '', $xss_clean = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000307 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200308 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
309
nisheeth-barthwala5bcfb12013-03-23 10:53:51 +0530310 return $this->_fetch_from_array($_COOKIE, $index, $xss_clean);
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 }
312
Andrey Andreev1887ec62012-10-27 16:22:07 +0300313 // --------------------------------------------------------------------
314
315 /**
316 * Fetch an item from the SERVER array
317 *
318 * @param string $index Index for item to be fetched from $_SERVER
319 * @param bool $xss_clean Whether to apply XSS filtering
320 * @return mixed
321 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200322 public function server($index = '', $xss_clean = NULL)
Andrey Andreev1887ec62012-10-27 16:22:07 +0300323 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200324 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
325
Andrey Andreev1887ec62012-10-27 16:22:07 +0300326 return $this->_fetch_from_array($_SERVER, $index, $xss_clean);
327 }
328
Derek Jones69fc4fc2010-03-02 13:36:31 -0600329 // ------------------------------------------------------------------------
330
331 /**
Andrey Andreev303eef02012-11-06 14:55:48 +0200332 * Fetch an item from the php://input stream
333 *
334 * Useful when you need to access PUT, DELETE or PATCH request data.
335 *
336 * @param string $index Index for item to be fetched
337 * @param bool $xss_clean Whether to apply XSS filtering
338 * @return mixed
339 */
Andrey Andreev80a16b12014-01-08 17:19:03 +0200340 public function input_stream($index = '', $xss_clean = NULL)
Andrey Andreev303eef02012-11-06 14:55:48 +0200341 {
Andrey Andreev80a16b12014-01-08 17:19:03 +0200342 is_bool($xss_clean) OR $xss_clean = $this->_enable_xss;
343
Andrey Andreev303eef02012-11-06 14:55:48 +0200344 // The input stream can only be read once, so we'll need to check
345 // if we have already done that first.
346 if (is_array($this->_input_stream))
347 {
348 return $this->_fetch_from_array($this->_input_stream, $index, $xss_clean);
349 }
350
351 // Parse the input stream in our cache var
352 parse_str(file_get_contents('php://input'), $this->_input_stream);
353 if ( ! is_array($this->_input_stream))
354 {
355 $this->_input_stream = array();
356 return NULL;
357 }
358
359 return $this->_fetch_from_array($this->_input_stream, $index, $xss_clean);
360 }
361
362 // ------------------------------------------------------------------------
363
364 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400365 * Set cookie
366 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300367 * Accepts an arbitrary number of parameters (up to 7) or an associative
Timothy Warren40403d22012-04-19 16:38:50 -0400368 * array in the first parameter containing all the values.
369 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300370 * @param string|mixed[] $name Cookie name or an array containing parameters
371 * @param string $value Cookie value
372 * @param int $expire Cookie expiration time in seconds
373 * @param string $domain Cookie domain (e.g.: '.yourdomain.com')
374 * @param string $path Cookie path (default: '/')
375 * @param string $prefix Cookie name prefix
376 * @param bool $secure Whether to only transfer cookies via SSL
377 * @param bool $httponly Whether to only makes the cookie accessible via HTTP (no javascript)
Timothy Warren40403d22012-04-19 16:38:50 -0400378 * @return void
379 */
Andrey Andreev8f5420b2014-01-06 10:34:23 +0200380 public function set_cookie($name, $value = '', $expire = '', $domain = '', $path = '/', $prefix = '', $secure = FALSE, $httponly = FALSE)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600381 {
382 if (is_array($name))
383 {
tobiasbg9aa7dc92011-02-18 21:57:13 +0100384 // always leave 'name' in last place, as the loop will break otherwise, due to $$item
freewil4ad0fd82012-03-13 22:37:42 -0400385 foreach (array('value', 'expire', 'domain', 'path', 'prefix', 'secure', 'httponly', 'name') as $item)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600386 {
387 if (isset($name[$item]))
388 {
389 $$item = $name[$item];
390 }
391 }
392 }
393
Alex Bilbieed944a32012-06-02 11:07:47 +0100394 if ($prefix === '' && config_item('cookie_prefix') !== '')
Derek Jones69fc4fc2010-03-02 13:36:31 -0600395 {
396 $prefix = config_item('cookie_prefix');
397 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300398
399 if ($domain == '' && config_item('cookie_domain') != '')
Derek Jones69fc4fc2010-03-02 13:36:31 -0600400 {
401 $domain = config_item('cookie_domain');
402 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300403
Alex Bilbieed944a32012-06-02 11:07:47 +0100404 if ($path === '/' && config_item('cookie_path') !== '/')
Derek Jones69fc4fc2010-03-02 13:36:31 -0600405 {
406 $path = config_item('cookie_path');
407 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300408
Alex Bilbieed944a32012-06-02 11:07:47 +0100409 if ($secure === FALSE && config_item('cookie_secure') !== FALSE)
tobiasbg9aa7dc92011-02-18 21:57:13 +0100410 {
411 $secure = config_item('cookie_secure');
412 }
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300413
Alex Bilbieed944a32012-06-02 11:07:47 +0100414 if ($httponly === FALSE && config_item('cookie_httponly') !== FALSE)
freewil4ad0fd82012-03-13 22:37:42 -0400415 {
416 $httponly = config_item('cookie_httponly');
417 }
Derek Jones69fc4fc2010-03-02 13:36:31 -0600418
419 if ( ! is_numeric($expire))
420 {
421 $expire = time() - 86500;
422 }
423 else
424 {
Phil Sturgeonc8089152010-12-27 19:06:28 +0000425 $expire = ($expire > 0) ? time() + $expire : 0;
Derek Jones69fc4fc2010-03-02 13:36:31 -0600426 }
427
freewil4ad0fd82012-03-13 22:37:42 -0400428 setcookie($prefix.$name, $value, $expire, $path, $domain, $secure, $httponly);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600429 }
430
Derek Allard2067d1a2008-11-13 22:59:24 +0000431 // --------------------------------------------------------------------
432
433 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400434 * Fetch the IP Address
435 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300436 * Determines and validates the visitor's IP address.
437 *
438 * @return string IP address
Timothy Warren40403d22012-04-19 16:38:50 -0400439 */
Bo-Yi Wu4db872f2011-09-12 10:52:37 +0800440 public function ip_address()
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 {
442 if ($this->ip_address !== FALSE)
443 {
444 return $this->ip_address;
445 }
Barry Mienydd671972010-10-04 16:33:58 +0200446
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300447 $proxy_ips = config_item('proxy_ips');
Andrey Andreevea7a8662012-10-09 13:36:31 +0300448 if ( ! empty($proxy_ips) && ! is_array($proxy_ips))
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300449 {
450 $proxy_ips = explode(',', str_replace(' ', '', $proxy_ips));
451 }
Andrey Andreev5b92ae12012-10-04 13:05:03 +0300452
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300453 $this->ip_address = $this->server('REMOTE_ADDR');
454
455 if ($proxy_ips)
456 {
457 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 -0300458 {
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300459 if (($spoof = $this->server($header)) !== NULL)
Jordan Pittman8960acf2012-07-23 09:05:49 -0300460 {
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300461 // Some proxies typically list the whole chain of IP
462 // addresses through which the client has reached us.
463 // e.g. client_ip, proxy_ip1, proxy_ip2, etc.
Andrey Andreeve24eed72012-11-02 23:33:45 +0200464 sscanf($spoof, '%[^,]', $spoof);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300465
466 if ( ! $this->valid_ip($spoof))
467 {
468 $spoof = NULL;
469 }
470 else
471 {
Jordan Pittmana5a71352012-07-20 19:36:43 -0300472 break;
473 }
474 }
Andrey Andreev5b92ae12012-10-04 13:05:03 +0300475 }
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300476
Andrey Andreeve45ad2b2012-10-09 13:11:15 +0300477 if ($spoof)
Andrey Andreev5b92ae12012-10-04 13:05:03 +0300478 {
Andrey Andreev9df35b42012-10-09 13:37:58 +0300479 for ($i = 0, $c = count($proxy_ips); $i < $c; $i++)
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300480 {
481 // Check if we have an IP address or a subnet
482 if (strpos($proxy_ips[$i], '/') === FALSE)
483 {
484 // An IP address (and not a subnet) is specified.
485 // We can compare right away.
486 if ($proxy_ips[$i] === $this->ip_address)
487 {
488 $this->ip_address = $spoof;
489 break;
490 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000491
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300492 continue;
493 }
494
495 // We have a subnet ... now the heavy lifting begins
496 isset($separator) OR $separator = $this->valid_ip($this->ip_address, 'ipv6') ? ':' : '.';
497
498 // If the proxy entry doesn't match the IP protocol - skip it
499 if (strpos($proxy_ips[$i], $separator) === FALSE)
500 {
501 continue;
502 }
503
504 // Convert the REMOTE_ADDR IP address to binary, if needed
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300505 if ( ! isset($ip, $sprintf))
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300506 {
507 if ($separator === ':')
508 {
509 // Make sure we're have the "full" IPv6 format
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300510 $ip = explode(':',
511 str_replace('::',
512 str_repeat(':', 9 - substr_count($this->ip_address, ':')),
513 $this->ip_address
514 )
515 );
516
517 for ($i = 0; $i < 8; $i++)
518 {
519 $ip[$i] = intval($ip[$i], 16);
520 }
521
522 $sprintf = '%016b%016b%016b%016b%016b%016b%016b%016b';
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300523 }
524 else
525 {
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300526 $ip = explode('.', $this->ip_address);
527 $sprintf = '%08b%08b%08b%08b';
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300528 }
529
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300530 $ip = vsprintf($sprintf, $ip);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300531 }
532
533 // Split the netmask length off the network address
Andrey Andreeve24eed72012-11-02 23:33:45 +0200534 sscanf($proxy_ips[$i], '%[^/]/%d', $netaddr, $masklen);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300535
536 // Again, an IPv6 address is most likely in a compressed form
537 if ($separator === ':')
538 {
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300539 $netaddr = explode(':', str_replace('::', str_repeat(':', 9 - substr_count($netaddr, ':')), $netaddr));
540 for ($i = 0; $i < 8; $i++)
541 {
542 $netaddr[$i] = intval($netaddr[$i], 16);
543 }
544 }
545 else
546 {
547 $netaddr = explode('.', $netaddr);
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300548 }
549
Andrey Andreev82d2cf12012-10-13 12:38:42 +0300550 // Convert to binary and finally compare
551 if (strncmp($ip, vsprintf($sprintf, $netaddr), $masklen) === 0)
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300552 {
553 $this->ip_address = $spoof;
554 break;
555 }
556 }
557 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000558 }
559
Derek Allard2067d1a2008-11-13 22:59:24 +0000560 if ( ! $this->valid_ip($this->ip_address))
561 {
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200562 return $this->ip_address = '0.0.0.0';
Derek Allard2067d1a2008-11-13 22:59:24 +0000563 }
564
565 return $this->ip_address;
566 }
567
568 // --------------------------------------------------------------------
569
570 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400571 * Validate IP Address
572 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300573 * @param string $ip IP address
574 * @param string $which IP protocol: 'ipv4' or 'ipv6'
Timothy Warren40403d22012-04-19 16:38:50 -0400575 * @return bool
576 */
Andrey Andreev5a257182012-06-10 06:18:14 +0300577 public function valid_ip($ip, $which = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000578 {
Andrey Andreev5a257182012-06-10 06:18:14 +0300579 switch (strtolower($which))
580 {
581 case 'ipv4':
582 $which = FILTER_FLAG_IPV4;
583 break;
584 case 'ipv6':
585 $which = FILTER_FLAG_IPV6;
586 break;
587 default:
588 $which = NULL;
589 break;
590 }
591
592 return (bool) filter_var($ip, FILTER_VALIDATE_IP, $which);
Derek Allard2067d1a2008-11-13 22:59:24 +0000593 }
594
595 // --------------------------------------------------------------------
596
597 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300598 * Fetch User Agent string
Timothy Warren40403d22012-04-19 16:38:50 -0400599 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300600 * @return string|null User Agent string or NULL if it doesn't exist
Timothy Warren40403d22012-04-19 16:38:50 -0400601 */
Bo-Yi Wu4db872f2011-09-12 10:52:37 +0800602 public function user_agent()
Derek Allard2067d1a2008-11-13 22:59:24 +0000603 {
604 if ($this->user_agent !== FALSE)
605 {
606 return $this->user_agent;
607 }
608
Andrey Andreev1887ec62012-10-27 16:22:07 +0300609 return $this->user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000610 }
611
612 // --------------------------------------------------------------------
613
614 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400615 * Sanitize Globals
616 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300617 * Internal method serving for the following purposes:
Timothy Warren40403d22012-04-19 16:38:50 -0400618 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300619 * - Unsets $_GET data (if query strings are not enabled)
620 * - Unsets all globals if register_globals is enabled
621 * - Cleans POST, COOKIE and SERVER data
622 * - Standardizes newline characters to PHP_EOL
Timothy Warren40403d22012-04-19 16:38:50 -0400623 *
624 * @return void
625 */
Andrey Andreev90cfe142012-01-08 04:46:42 +0200626 protected function _sanitize_globals()
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600628 // It would be "wrong" to unset any of these GLOBALS.
Timothy Warren40403d22012-04-19 16:38:50 -0400629 $protected = array(
630 '_SERVER',
631 '_GET',
632 '_POST',
633 '_FILES',
634 '_REQUEST',
635 '_SESSION',
636 '_ENV',
637 'GLOBALS',
638 'HTTP_RAW_POST_DATA',
639 'system_folder',
640 'application_folder',
641 'BM',
642 'EXT',
643 'CFG',
644 'URI',
645 'RTR',
Timothy Warren67cb3ee2012-04-19 16:41:52 -0400646 'OUT',
Timothy Warren40403d22012-04-19 16:38:50 -0400647 'IN'
648 );
Derek Allard2067d1a2008-11-13 22:59:24 +0000649
Andrey Andreev1887ec62012-10-27 16:22:07 +0300650 // Unset globals for security.
Derek Jones69fc4fc2010-03-02 13:36:31 -0600651 // This is effectively the same as register_globals = off
Andrey Andreev1887ec62012-10-27 16:22:07 +0300652 // PHP 5.4 no longer has the register_globals functionality.
653 if ( ! is_php('5.4'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 {
Andrey Andreev1887ec62012-10-27 16:22:07 +0300655 foreach (array($_GET, $_POST, $_COOKIE) as $global)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600656 {
Andrey Andreev1887ec62012-10-27 16:22:07 +0300657 if (is_array($global))
Derek Jones69fc4fc2010-03-02 13:36:31 -0600658 {
Andrey Andreev1887ec62012-10-27 16:22:07 +0300659 foreach ($global as $key => $val)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600660 {
Andrey Andreev1887ec62012-10-27 16:22:07 +0300661 if ( ! in_array($key, $protected))
662 {
663 global $$key;
664 $$key = NULL;
665 }
Derek Jones69fc4fc2010-03-02 13:36:31 -0600666 }
667 }
Andrey Andreev1887ec62012-10-27 16:22:07 +0300668 elseif ( ! in_array($global, $protected))
669 {
670 global $$global;
671 $$global = NULL;
672 }
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300673 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000674 }
675
Derek Jones69fc4fc2010-03-02 13:36:31 -0600676 // Is $_GET data allowed? If not we'll set the $_GET to an empty array
Alex Bilbieed944a32012-06-02 11:07:47 +0100677 if ($this->_allow_get_array === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600679 $_GET = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000680 }
Andrey Andreev9448afb2012-02-08 19:49:19 +0200681 elseif (is_array($_GET) && count($_GET) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000682 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200683 foreach ($_GET as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000684 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200685 $_GET[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
Derek Allard2067d1a2008-11-13 22:59:24 +0000686 }
687 }
688
Derek Jones69fc4fc2010-03-02 13:36:31 -0600689 // Clean $_POST Data
Andrey Andreev9448afb2012-02-08 19:49:19 +0200690 if (is_array($_POST) && count($_POST) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000691 {
Pascal Kriete5d5895f2011-02-14 13:27:07 -0500692 foreach ($_POST as $key => $val)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600693 {
694 $_POST[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
695 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000696 }
697
Derek Jones69fc4fc2010-03-02 13:36:31 -0600698 // Clean $_COOKIE Data
Andrey Andreev9448afb2012-02-08 19:49:19 +0200699 if (is_array($_COOKIE) && count($_COOKIE) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000700 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600701 // Also get rid of specially treated cookies that might be set by a server
702 // or silly application, that are of no use to a CI application anyway
703 // but that when present will trip our 'Disallowed Key Characters' alarm
704 // http://www.ietf.org/rfc/rfc2109.txt
705 // note that the key names below are single quoted strings, and are not PHP variables
Andrey Andreev5ac428b2014-01-08 16:07:31 +0200706 unset(
707 $_COOKIE['$Version'],
708 $_COOKIE['$Path'],
709 $_COOKIE['$Domain']
710 );
Derek Jones69fc4fc2010-03-02 13:36:31 -0600711
Pascal Kriete5d5895f2011-02-14 13:27:07 -0500712 foreach ($_COOKIE as $key => $val)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600713 {
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300714 if (($cookie_key = $this->_clean_input_keys($key)) !== FALSE)
715 {
716 $_COOKIE[$cookie_key] = $this->_clean_input_data($val);
717 }
718 else
719 {
720 unset($_COOKIE[$key]);
721 }
Derek Jones69fc4fc2010-03-02 13:36:31 -0600722 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000723 }
724
Derek Jones69fc4fc2010-03-02 13:36:31 -0600725 // Sanitize PHP_SELF
726 $_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
727
Derek Jones69fc4fc2010-03-02 13:36:31 -0600728 // CSRF Protection check
Andrey Andreevf964b162013-11-12 17:04:55 +0200729 if ($this->_enable_csrf === TRUE && ! is_cli())
Derek Allard2067d1a2008-11-13 22:59:24 +0000730 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600731 $this->security->csrf_verify();
Derek Allard2067d1a2008-11-13 22:59:24 +0000732 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000733
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300734 log_message('debug', 'Global POST, GET and COOKIE data sanitized');
Derek Allard2067d1a2008-11-13 22:59:24 +0000735 }
736
737 // --------------------------------------------------------------------
738
739 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400740 * Clean Input Data
741 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300742 * Internal method that aids in escaping data and
743 * standardizing newline characters to PHP_EOL.
Timothy Warren40403d22012-04-19 16:38:50 -0400744 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300745 * @param string|string[] $str Input string(s)
Timothy Warren40403d22012-04-19 16:38:50 -0400746 * @return string
747 */
Andrey Andreev90cfe142012-01-08 04:46:42 +0200748 protected function _clean_input_data($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000749 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600750 if (is_array($str))
Derek Allard2067d1a2008-11-13 22:59:24 +0000751 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600752 $new_array = array();
Andrey Andreev1887ec62012-10-27 16:22:07 +0300753 foreach (array_keys($str) as $key)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600754 {
Andrey Andreev1887ec62012-10-27 16:22:07 +0300755 $new_array[$this->_clean_input_keys($key)] = $this->_clean_input_data($str[$key]);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600756 }
757 return $new_array;
Derek Allard2067d1a2008-11-13 22:59:24 +0000758 }
759
Andrey Andreevaf728622011-10-20 10:11:59 +0300760 /* We strip slashes if magic quotes is on to keep things consistent
761
762 NOTE: In PHP 5.4 get_magic_quotes_gpc() will always return 0 and
763 it will probably not exist in future versions at all.
764 */
765 if ( ! is_php('5.4') && get_magic_quotes_gpc())
Derek Allard2067d1a2008-11-13 22:59:24 +0000766 {
Derek Jones69fc4fc2010-03-02 13:36:31 -0600767 $str = stripslashes($str);
768 }
769
770 // Clean UTF-8 if supported
771 if (UTF8_ENABLED === TRUE)
772 {
773 $str = $this->uni->clean_string($str);
774 }
David Behler9b5df592011-08-14 21:04:17 +0200775
Pascal Kriete14a0ac62011-04-05 14:55:56 -0400776 // Remove control characters
Andrey Andreev5ac428b2014-01-08 16:07:31 +0200777 $str = remove_invisible_characters($str, FALSE);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600778
Derek Jones69fc4fc2010-03-02 13:36:31 -0600779 // Standardize newlines if needed
Eric Robertsb75e13d2013-01-27 20:10:09 -0600780 if ($this->_standardize_newlines === TRUE)
Derek Jones69fc4fc2010-03-02 13:36:31 -0600781 {
Eric Robertsb75e13d2013-01-27 20:10:09 -0600782 return preg_replace('/(?:\r\n|[\r\n])/', PHP_EOL, $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000783 }
784
785 return $str;
786 }
787
788 // --------------------------------------------------------------------
789
790 /**
Timothy Warren40403d22012-04-19 16:38:50 -0400791 * Clean Keys
792 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300793 * Internal method that helps to prevent malicious users
Timothy Warren40403d22012-04-19 16:38:50 -0400794 * from trying to exploit keys we make sure that keys are
795 * only named with alpha-numeric text and a few other items.
796 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300797 * @param string $str Input string
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300798 * @param string $fatal Whether to terminate script exection
799 * or to return FALSE if an invalid
800 * key is encountered
801 * @return string|bool
Timothy Warren40403d22012-04-19 16:38:50 -0400802 */
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300803 protected function _clean_input_keys($str, $fatal = TRUE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000804 {
bigCat3c0846b2012-08-21 00:20:20 +0800805 if ( ! preg_match('/^[a-z0-9:_\/|-]+$/i', $str))
Derek Allard2067d1a2008-11-13 22:59:24 +0000806 {
Andrey Andreevfd0aabb2013-09-23 13:18:20 +0300807 if ($fatal === TRUE)
808 {
809 return FALSE;
810 }
811 else
812 {
813 set_status_header(503);
814 echo 'Disallowed Key Characters.';
815 exit(EXIT_USER_INPUT);
816 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000817 }
818
Derek Jones69fc4fc2010-03-02 13:36:31 -0600819 // Clean UTF-8 if supported
820 if (UTF8_ENABLED === TRUE)
821 {
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200822 return $this->uni->clean_string($str);
Derek Jones69fc4fc2010-03-02 13:36:31 -0600823 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000824
Derek Jones69fc4fc2010-03-02 13:36:31 -0600825 return $str;
826 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000827
Greg Akerec2f5712010-11-15 16:22:12 -0600828 // --------------------------------------------------------------------
829
830 /**
831 * Request Headers
832 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300833 * @param bool $xss_clean Whether to apply XSS filtering
Andrey Andreev64e98aa2012-01-07 20:29:10 +0200834 * @return array
Greg Akerec2f5712010-11-15 16:22:12 -0600835 */
836 public function request_headers($xss_clean = FALSE)
837 {
CJ71cff1d2013-04-16 21:50:55 +0800838 // If header is already defined, return it immediately
839 if ( ! empty($this->headers))
840 {
841 return $this->headers;
842 }
843
Andrey Andreev1887ec62012-10-27 16:22:07 +0300844 // In Apache, you can simply call apache_request_headers()
Greg Akerec2f5712010-11-15 16:22:12 -0600845 if (function_exists('apache_request_headers'))
846 {
CJ71cff1d2013-04-16 21:50:55 +0800847 return $this->headers = apache_request_headers();
Greg Akerec2f5712010-11-15 16:22:12 -0600848 }
CJd195f222013-04-17 01:04:13 +0800849
CJ8347f912013-04-17 21:45:22 +0800850 $this->headers['Content-Type'] = isset($_SERVER['CONTENT_TYPE']) ? $_SERVER['CONTENT_TYPE'] : @getenv('CONTENT_TYPE');
CJd195f222013-04-17 01:04:13 +0800851
852 foreach ($_SERVER as $key => $val)
Greg Akerec2f5712010-11-15 16:22:12 -0600853 {
CJd195f222013-04-17 01:04:13 +0800854 if (sscanf($key, 'HTTP_%s', $header) === 1)
Greg Akerec2f5712010-11-15 16:22:12 -0600855 {
CJd195f222013-04-17 01:04:13 +0800856 // take SOME_HEADER and turn it into Some-Header
857 $header = str_replace('_', ' ', strtolower($header));
858 $header = str_replace(' ', '-', ucwords($header));
Greg Akerec2f5712010-11-15 16:22:12 -0600859
CJd195f222013-04-17 01:04:13 +0800860 $this->headers[$header] = $this->_fetch_from_array($_SERVER, $key, $xss_clean);
CJ826990f2013-04-16 14:17:53 +0800861 }
Greg Akerec2f5712010-11-15 16:22:12 -0600862 }
David Behler9b5df592011-08-14 21:04:17 +0200863
Greg Akerec2f5712010-11-15 16:22:12 -0600864 return $this->headers;
865 }
866
867 // --------------------------------------------------------------------
868
869 /**
870 * Get Request Header
871 *
872 * Returns the value of a single member of the headers class member
873 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300874 * @param string $index Header name
875 * @param bool $xss_clean Whether to apply XSS filtering
876 * @return string|bool The requested header on success or FALSE on failure
Greg Akerec2f5712010-11-15 16:22:12 -0600877 */
878 public function get_request_header($index, $xss_clean = FALSE)
879 {
880 if (empty($this->headers))
881 {
882 $this->request_headers();
883 }
David Behler9b5df592011-08-14 21:04:17 +0200884
Greg Akerec2f5712010-11-15 16:22:12 -0600885 if ( ! isset($this->headers[$index]))
886 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100887 return NULL;
Greg Akerec2f5712010-11-15 16:22:12 -0600888 }
889
Andrey Andreev9448afb2012-02-08 19:49:19 +0200890 return ($xss_clean === TRUE)
891 ? $this->security->xss_clean($this->headers[$index])
892 : $this->headers[$index];
Greg Akerec2f5712010-11-15 16:22:12 -0600893 }
894
Greg Aker081ac9d2010-11-22 14:42:53 -0600895 // --------------------------------------------------------------------
Phil Sturgeonc3828712011-01-19 12:31:47 +0000896
Greg Aker081ac9d2010-11-22 14:42:53 -0600897 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300898 * Is AJAX request?
Greg Aker081ac9d2010-11-22 14:42:53 -0600899 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300900 * Test to see if a request contains the HTTP_X_REQUESTED_WITH header.
Greg Aker081ac9d2010-11-22 14:42:53 -0600901 *
Andrey Andreev9448afb2012-02-08 19:49:19 +0200902 * @return bool
Greg Aker081ac9d2010-11-22 14:42:53 -0600903 */
904 public function is_ajax_request()
905 {
Andrey Andreev9448afb2012-02-08 19:49:19 +0200906 return ( ! empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
Greg Aker081ac9d2010-11-22 14:42:53 -0600907 }
908
Phil Sturgeonc3828712011-01-19 12:31:47 +0000909 // --------------------------------------------------------------------
910
911 /**
Andrey Andreev1887ec62012-10-27 16:22:07 +0300912 * Is CLI request?
Phil Sturgeonc3828712011-01-19 12:31:47 +0000913 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300914 * Test to see if a request was made from the command line.
Phil Sturgeonc3828712011-01-19 12:31:47 +0000915 *
Andrey Andreevf964b162013-11-12 17:04:55 +0200916 * @deprecated 3.0.0 Use is_cli() instead
917 * @return bool
Phil Sturgeonc3828712011-01-19 12:31:47 +0000918 */
919 public function is_cli_request()
920 {
Andrey Andreevf964b162013-11-12 17:04:55 +0200921 return is_cli();
Phil Sturgeonc3828712011-01-19 12:31:47 +0000922 }
923
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100924 // --------------------------------------------------------------------
925
926 /**
927 * Get Request Method
928 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300929 * Return the request method
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100930 *
Andrey Andreev1887ec62012-10-27 16:22:07 +0300931 * @param bool $upper Whether to return in upper or lower case
932 * (default: FALSE)
933 * @return string
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100934 */
Michiel Vugteveen704fb162012-03-07 20:42:33 +0100935 public function method($upper = FALSE)
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100936 {
Michiel Vugteveendc900df2012-03-07 20:41:37 +0100937 return ($upper)
938 ? strtoupper($this->server('REQUEST_METHOD'))
939 : strtolower($this->server('REQUEST_METHOD'));
Michiel Vugteveenbe0ca262012-03-07 19:09:51 +0100940 }
941
Derek Allard2067d1a2008-11-13 22:59:24 +0000942}
Derek Allard2067d1a2008-11-13 22:59:24 +0000943
944/* End of file Input.php */
Timothy Warren40403d22012-04-19 16:38:50 -0400945/* Location: ./system/core/Input.php */