summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/input.rst
blob: 39a0d0628f9881e8b2f4bdaa0865ed5e63eff09f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
###########
Input Class
###########

The Input Class serves two purposes:

#. It pre-processes global input data for security.
#. It provides some helper methods for fetching input data and pre-processing it.

.. note:: This class is initialized automatically by the system so there
	is no need to do it manually.

.. contents::
  :local:

.. raw:: html

  <div class="custom-index container"></div>

Security Filtering
==================

The security filtering method is called automatically when a new
:doc:`controller <../general/controllers>` is invoked. It does the
following:

-  If ``$config['allow_get_array']`` is FALSE (default is TRUE), destroys
   the global GET array.
-  Destroys all global variables in the event register_globals is
   turned on.
-  Filters the GET/POST/COOKIE array keys, permitting only alpha-numeric
   (and a few other) characters.
-  Provides XSS (Cross-site Scripting Hacks) filtering. This can be
   enabled globally, or upon request.
-  Standardizes newline characters to \\n(In Windows \\r\\n)

XSS Filtering
=============

The Input class has the ability to filter input automatically to prevent
cross-site scripting attacks. If you want the filter to run
automatically every time it encounters POST or COOKIE data you can
enable it by opening your *application/config/config.php* file and setting
this::

	$config['global_xss_filtering'] = TRUE;

Please refer to the :doc:`Security class <security>` documentation for
information on using XSS Filtering in your application.

Using POST, GET, COOKIE, or SERVER Data
=======================================

CodeIgniter comes with helper methods that let you fetch POST, GET,
COOKIE or SERVER items. The main advantage of using the provided
methods rather than fetching an item directly (``$_POST['something']``)
is that the methods will check to see if the item is set and return
NULL if not. This lets you conveniently use data without
having to test whether an item exists first. In other words, normally
you might do something like this::

	$something = isset($_POST['something']) ? $_POST['something'] : NULL;

With CodeIgniter's built in methods you can simply do this::

	$something = $this->input->post('something');

The main methods are:

-  $this->input->post()
-  $this->input->get()
-  $this->input->cookie()
-  $this->input->server()

Using the php://input stream
============================

If you want to utilize the PUT, DELETE, PATCH or other exotic request
methods, they can only be accessed via a special input stream, that
can only be read once. This isn't as easy as just reading from e.g.
the ``$_POST`` array, because it will always exist and you can try
and access multiple variables without caring that you might only have
one shot at all of the POST data.

CodeIgniter will take care of that for you, and you can access data
from the **php://input** stream at any time, just by calling the
``input_stream()`` method::

	$this->input->input_stream('key');

Similar to other methods such as ``get()`` and ``post()``, if the
requested data is not found, it will return NULL and you can also
decide whether to run the data through ``xss_clean()`` by passing
a boolean value as the second parameter::

	$this->input->input_stream('key', TRUE); // XSS Clean
	$this->input->input_stream('key', FALSE); // No XSS filter

.. note:: You can utilize ``method()`` in order to know if you're reading
	PUT, DELETE or PATCH data.

***************
Class Reference
***************

.. class:: CI_Input

	.. method:: post([$index = NULL[, $xss_clean = FALSE]])

		:param string $index: POST parameter name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: mixed

		The first parameter will contain the name of the POST item you are
		looking for::

			$this->input->post('some_data');

		The method returns NULL if the item you are attempting to retrieve
		does not exist.

		The second optional parameter lets you run the data through the XSS
		filter. It's enabled by setting the second parameter to boolean TRUE.
		::

			$this->input->post('some_data', TRUE);

		To return an array of all POST items call without any parameters.

		To return all POST items and pass them through the XSS filter set the
		first parameter NULL while setting the second parameter to boolean TRUE.
		::

			$this->input->post(NULL, TRUE); // returns all POST items with XSS filter
			$this->input->post(); // returns all POST items without XSS filter

	.. method:: get([$index = NULL[, $xss_clean = FALSE]])

		:param string $index: GET parameter name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: mixed

		This method is identical to ``post()``, only it fetches GET data.
		::

			$this->input->get('some_data', TRUE);

		To return an array of all GET items call without any parameters.

		To return all GET items and pass them through the XSS filter set the
		first parameter NULL while setting the second parameter to boolean TRUE.
		::

			$this->input->get(NULL, TRUE); // returns all GET items with XSS filter
			$this->input->get(); // returns all GET items without XSS filtering

	.. method:: get_post([$index = ''[, $xss_clean = FALSE]])

		:param string $index: GET/POST parameter name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: mixed

		This method works the same way as ``post()`` and ``get()``, only combined.
		It will search through both POST and GET streams for data, looking first
		in POST, and then in GET::

			$this->input->get_post('some_data', TRUE);

	.. method:: cookie([$index = ''[, $xss_clean = FALSE]])

		:param string $index: COOKIE parameter name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: mixed

		This method is identical to ``post()`` and ``get()``, only it fetches cookie
		data::

			$this->input->cookie('some_cookie');
			$this->input->cookie('some_cookie, TRUE); // with XSS filter

	.. method:: server([$index = ''[, $xss_clean = FALSE]])

		:param string $index: Value name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: mixed

		This method is identical to the ``post()``, ``get()`` and ``cookie()`` methods,
		only it fetches server data (``$_SERVER``)::

			$this->input->server('some_data');

	.. method:: input_stream([$index = ''[, $xss_clean = FALSE]])

		:param string $index: Key name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: mixed

		This method is identical to ``get()``, ``post()`` and ``cookie()``,
		only it fetches the *php://input* stream data.

	.. method:: set_cookie($name = ''[, $value = ''[, $expire = ''[, $domain = ''[, $path = '/'[, $prefix = ''[, $secure = FALSE[, $httponly = FALSE]]]]]]])

		:param mixed $name: Cookie name or an array of parameters
		:param string $value: Cookie value
		:param int $expire: Cookie expiration time in seconds
		:param string $domain: Cookie domain
		:param string $path: Cookie path
		:param string $prefix: Cookie name prefix
		:param bool $secure: Whether to only transfer the cookie through HTTPS
		:param bool $httponly: Whether to only make the cookie accessible for HTTP requests (no JavaScript)
		:returns: void

		Sets a cookie containing the values you specify. There are two ways to
		pass information to this method so that a cookie can be set: Array
		Method, and Discrete Parameters:

		Array Method
		^^^^^^^^^^^^

		Using this method, an associative array is passed to the first
		parameter::

			$cookie = array(
				'name'   => 'The Cookie Name',
				'value'  => 'The Value',
				'expire' => '86500',
				'domain' => '.some-domain.com',
				'path'   => '/',
				'prefix' => 'myprefix_',
				'secure' => TRUE
			);

			$this->input->set_cookie($cookie);

		**Notes:**

		Only the name and value are required. To delete a cookie set it with the
		expiration blank.

		The expiration is set in **seconds**, which will be added to the current
		time. Do not include the time, but rather only the number of seconds
		from *now* that you wish the cookie to be valid. If the expiration is
		set to zero the cookie will only last as long as the browser is open.

		For site-wide cookies regardless of how your site is requested, add your
		URL to the **domain** starting with a period, like this:
		.your-domain.com

		The path is usually not needed since the method sets a root path.

		The prefix is only needed if you need to avoid name collisions with
		other identically named cookies for your server.

		The secure boolean is only needed if you want to make it a secure cookie
		by setting it to TRUE.

		Discrete Parameters
		^^^^^^^^^^^^^^^^^^^

		If you prefer, you can set the cookie by passing data using individual
		parameters::

			$this->input->set_cookie($name, $value, $expire, $domain, $path, $prefix, $secure);


	.. method:: ip_address()

		:returns: string

		Returns the IP address for the current user. If the IP address is not
		valid, the method will return '0.0.0.0'::

			echo $this->input->ip_address();

		.. important:: This method takes into account the ``$config['proxy_ips']``
			setting and will return the reported HTTP_X_FORWARDED_FOR,
			HTTP_CLIENT_IP, HTTP_X_CLIENT_IP or HTTP_X_CLUSTER_CLIENT_IP
			address for the allowed IP addresses.

	.. method:: valid_ip($ip[, $which = ''])

		:param string $ip: IP address
		:param string $which: IP protocol ('ipv4' or 'ipv6')
		:returns: bool

		Takes an IP address as input and returns TRUE or FALSE (boolean) depending
		on whether it is valid or not.

		.. note:: The $this->input->ip_address() method above automatically
			validates the IP address.

		::

			if ( ! $this->input->valid_ip($ip))
			{
				echo 'Not Valid';
			}
			else
			{
				echo 'Valid';
			}

		Accepts an optional second string parameter of 'ipv4' or 'ipv6' to specify
		an IP format. The default checks for both formats.

	.. method:: user_agent()

		:returns: string

		Returns the user agent string (web browser) being used by the current user,
		or NULL if it's not available.
		::

			echo $this->input->user_agent();

		See the :doc:`User Agent Class <user_agent>` for methods which extract
		information from the user agent string.

	.. method:: request_headers([$xss_clean = FALSE])

		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: array

		Returns an array of HTTP request headers.
		Useful if running in a non-Apache environment where
		`apache_request_headers() <http://php.net/apache_request_headers>`_
		will not be supported.
		::

			$headers = $this->input->request_headers();

	.. method:: get_request_header($index[, $xss_clean = FALSE])

		:param string $index: HTTP request header name
		:param bool $xss_clean: Whether to apply XSS filtering
		:returns: string

		Returns a single member of the request headers array or NULL
		if the searched header is not found.
		::

			$this->input->get_request_header('some-header', TRUE);

	.. method:: is_ajax_request()

		:returns: bool

		Checks to see if the HTTP_X_REQUESTED_WITH server header has been
		set, and returns boolean TRUE if it is or FALSE if not.

	.. method:: is_cli_request()

		:returns: bool

		Checks to see if the application was run from the command-line
		interface.

		.. note:: This method checks both the PHP SAPI name currently in use
			and if the ``STDIN`` constant is defined, which is usually a
			failsafe way to see if PHP is being run via the command line.

		::

			$this->input->is_cli_request()

	.. method:: method([$upper = FALSE])

		:param bool $upper: Whether to return the request method name in upper or lower case
		:returns: string

		Returns the ``$_SERVER['REQUEST_METHOD']``, with the option to set it
		in uppercase or lowercase.
		::

			echo $this->input->method(TRUE); // Outputs: POST
			echo $this->input->method(FALSE); // Outputs: post
			echo $this->input->method(); // Outputs: post