blob: 6a8b1a5acb39bcd80b59336934e5800e1a4f859f [file] [log] [blame]
Andrey Andreevc123e112012-01-08 00:17:34 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
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 Andreevc123e112012-01-08 00:17:34 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreevc123e112012-01-08 00:17:34 +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
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, 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
Andrey Andreev92ebfb62012-05-17 12:49:24 +030025 * @filesource
Derek Allard2067d1a2008-11-13 22:59:24 +000026 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * URI Class
30 *
31 * Parses URIs and determines routing
32 *
33 * @package CodeIgniter
34 * @subpackage Libraries
35 * @category URI
Derek Jonesf4a4bd82011-10-20 12:18:42 -050036 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000037 * @link http://codeigniter.com/user_guide/libraries/uri.html
38 */
39class CI_URI {
40
David Behler07b53422011-08-15 00:25:06 +020041 /**
42 * List of cached uri segments
43 *
44 * @var array
David Behler07b53422011-08-15 00:25:06 +020045 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040046 public $keyval = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030047
David Behler07b53422011-08-15 00:25:06 +020048 /**
49 * Current uri string
50 *
51 * @var string
David Behler07b53422011-08-15 00:25:06 +020052 */
Andrey Andreevc123e112012-01-08 00:17:34 +020053 public $uri_string;
Andrey Andreev92ebfb62012-05-17 12:49:24 +030054
David Behler07b53422011-08-15 00:25:06 +020055 /**
56 * List of uri segments
57 *
58 * @var array
David Behler07b53422011-08-15 00:25:06 +020059 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040060 public $segments = array();
Andrey Andreev92ebfb62012-05-17 12:49:24 +030061
David Behler07b53422011-08-15 00:25:06 +020062 /**
63 * Re-indexed list of uri segments
64 * Starts at 1 instead of 0
65 *
66 * @var array
David Behler07b53422011-08-15 00:25:06 +020067 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040068 public $rsegments = array();
Derek Allard2067d1a2008-11-13 22:59:24 +000069
70 /**
71 * Constructor
72 *
Andrey Andreevc123e112012-01-08 00:17:34 +020073 * Simply globalizes the $RTR object. The front
Derek Allard2067d1a2008-11-13 22:59:24 +000074 * loads the Router class early on so it's not available
75 * normally as other classes are.
Andrey Andreev92ebfb62012-05-17 12:49:24 +030076 *
77 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +000078 */
Andrey Andreevc123e112012-01-08 00:17:34 +020079 public function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +000080 {
Derek Jones7576a3b2010-03-02 14:00:36 -060081 $this->config =& load_class('Config', 'core');
Andrey Andreevc123e112012-01-08 00:17:34 +020082 log_message('debug', 'URI Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +000083 }
84
Derek Allard2067d1a2008-11-13 22:59:24 +000085 // --------------------------------------------------------------------
86
87 /**
88 * Get the URI String
89 *
Andrey Andreevc123e112012-01-08 00:17:34 +020090 * Called by CI_Router
91 *
92 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +000093 */
Andrey Andreevc123e112012-01-08 00:17:34 +020094 public function _fetch_uri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +000095 {
Andrey Andreevc123e112012-01-08 00:17:34 +020096 if (strtoupper($this->config->item('uri_protocol')) === 'AUTO')
Derek Allard2067d1a2008-11-13 22:59:24 +000097 {
Phil Sturgeondda07e92011-01-31 23:26:25 +000098 // Is the request coming from the command line?
Stephen2e00c242011-08-28 10:25:40 +020099 if ($this->_is_cli_request())
Derek Allard2067d1a2008-11-13 22:59:24 +0000100 {
Pascal Kriete73598e32011-04-05 15:01:05 -0400101 $this->_set_uri_string($this->_parse_cli_args());
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000102 return;
103 }
104
Dan Horriganfea45ad2011-01-19 00:54:12 -0500105 // Let's try the REQUEST_URI first, this will work in most situations
106 if ($uri = $this->_detect_uri())
107 {
Pascal Kriete73598e32011-04-05 15:01:05 -0400108 $this->_set_uri_string($uri);
Derek Allard2067d1a2008-11-13 22:59:24 +0000109 return;
110 }
111
112 // Is there a PATH_INFO variable?
113 // Note: some servers seem to have trouble with getenv() so we'll test it two ways
Andrey Andreev9ba661b2012-06-04 14:44:34 +0300114 $path = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : @getenv('PATH_INFO');
Alex Bilbieed944a32012-06-02 11:07:47 +0100115 if (trim($path, '/') !== '' && $path !== '/'.SELF)
Derek Allard2067d1a2008-11-13 22:59:24 +0000116 {
Pascal Kriete73598e32011-04-05 15:01:05 -0400117 $this->_set_uri_string($path);
Derek Allard2067d1a2008-11-13 22:59:24 +0000118 return;
119 }
120
121 // No PATH_INFO?... What about QUERY_STRING?
Andrey Andreevd4619342012-06-14 02:27:25 +0300122 $path = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : @getenv('QUERY_STRING');
Alex Bilbieed944a32012-06-02 11:07:47 +0100123 if (trim($path, '/') !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000124 {
Pascal Kriete73598e32011-04-05 15:01:05 -0400125 $this->_set_uri_string($path);
Derek Allard2067d1a2008-11-13 22:59:24 +0000126 return;
127 }
128
Dan Horrigan65d603e2010-12-15 08:38:30 -0500129 // As a last ditch effort lets try using the $_GET array
Alex Bilbieed944a32012-06-02 11:07:47 +0100130 if (is_array($_GET) && count($_GET) === 1 && trim(key($_GET), '/') !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000131 {
Pascal Kriete73598e32011-04-05 15:01:05 -0400132 $this->_set_uri_string(key($_GET));
Derek Allard2067d1a2008-11-13 22:59:24 +0000133 return;
134 }
135
136 // We've exhausted all our options...
137 $this->uri_string = '';
Pascal Kriete73598e32011-04-05 15:01:05 -0400138 return;
Derek Allard2067d1a2008-11-13 22:59:24 +0000139 }
Pascal Kriete73598e32011-04-05 15:01:05 -0400140
141 $uri = strtoupper($this->config->item('uri_protocol'));
142
Andrey Andreevc123e112012-01-08 00:17:34 +0200143 if ($uri === 'REQUEST_URI')
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 {
Pascal Kriete73598e32011-04-05 15:01:05 -0400145 $this->_set_uri_string($this->_detect_uri());
146 return;
147 }
Andrey Andreevc123e112012-01-08 00:17:34 +0200148 elseif ($uri === 'CLI')
Pascal Kriete73598e32011-04-05 15:01:05 -0400149 {
150 $this->_set_uri_string($this->_parse_cli_args());
151 return;
Derek Allard2067d1a2008-11-13 22:59:24 +0000152 }
153
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300154 $path = isset($_SERVER[$uri]) ? $_SERVER[$uri] : @getenv($uri);
Pascal Kriete73598e32011-04-05 15:01:05 -0400155 $this->_set_uri_string($path);
156 }
Eric Barnes26eebdd2011-04-17 23:45:41 -0400157
Pascal Kriete73598e32011-04-05 15:01:05 -0400158 // --------------------------------------------------------------------
159
160 /**
161 * Set the URI String
162 *
David Behler07b53422011-08-15 00:25:06 +0200163 * @param string
Andrey Andreevc123e112012-01-08 00:17:34 +0200164 * @return void
Pascal Kriete73598e32011-04-05 15:01:05 -0400165 */
Andrey Andreevd4619342012-06-14 02:27:25 +0300166 protected function _set_uri_string($str)
Pascal Kriete73598e32011-04-05 15:01:05 -0400167 {
168 // Filter out control characters
169 $str = remove_invisible_characters($str, FALSE);
Eric Barnes26eebdd2011-04-17 23:45:41 -0400170
Derek Allard2067d1a2008-11-13 22:59:24 +0000171 // If the URI contains only a slash we'll kill it
Andrey Andreevc123e112012-01-08 00:17:34 +0200172 $this->uri_string = ($str === '/') ? '' : $str;
Derek Allard2067d1a2008-11-13 22:59:24 +0000173 }
174
175 // --------------------------------------------------------------------
176
177 /**
Dan Horriganfea45ad2011-01-19 00:54:12 -0500178 * Detects the URI
Derek Allard2067d1a2008-11-13 22:59:24 +0000179 *
Andrey Andreevd4619342012-06-14 02:27:25 +0300180 * This function will detect the URI automatically
181 * and fix the query string if necessary.
Derek Allard2067d1a2008-11-13 22:59:24 +0000182 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000183 * @return string
184 */
Paulf7345e42011-08-27 06:51:16 +1200185 protected function _detect_uri()
Derek Allard2067d1a2008-11-13 22:59:24 +0000186 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300187 if ( ! isset($_SERVER['REQUEST_URI'], $_SERVER['SCRIPT_NAME']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000188 {
189 return '';
190 }
191
Andrey Andreeva8262ba2012-06-14 03:16:44 +0300192 if (strpos($_SERVER['REQUEST_URI'], $_SERVER['SCRIPT_NAME']) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 {
Andrey Andreeva8262ba2012-06-14 03:16:44 +0300194 $uri = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME']));
Dan Horriganfea45ad2011-01-19 00:54:12 -0500195 }
Andrey Andreeva8262ba2012-06-14 03:16:44 +0300196 elseif (strpos($_SERVER['REQUEST_URI'], dirname($_SERVER['SCRIPT_NAME'])) === 0)
Dan Horriganfea45ad2011-01-19 00:54:12 -0500197 {
Andrey Andreevfb859792012-06-14 03:32:19 +0300198 $uri = substr($_SERVER['REQUEST_URI'], strlen(dirname($_SERVER['SCRIPT_NAME'])));
Derek Allard2067d1a2008-11-13 22:59:24 +0000199 }
Andrey Andreevd4619342012-06-14 02:27:25 +0300200 else
201 {
202 $uri = $_SERVER['REQUEST_URI'];
203 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000204
Dan Horriganfea45ad2011-01-19 00:54:12 -0500205 // This section ensures that even on servers that require the URI to be in the query string (Nginx) a correct
206 // URI is found, and also fixes the QUERY_STRING server var and $_GET array.
Andrey Andreevd4619342012-06-14 02:27:25 +0300207 if (strpos($uri, '?/') === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000208 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500209 $uri = substr($uri, 2);
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 }
Andrey Andreevd4619342012-06-14 02:27:25 +0300211
212 $parts = explode('?', $uri, 2);
Dan Horriganfea45ad2011-01-19 00:54:12 -0500213 $uri = $parts[0];
214 if (isset($parts[1]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500216 $_SERVER['QUERY_STRING'] = $parts[1];
Dan Horrigan65d603e2010-12-15 08:38:30 -0500217 parse_str($_SERVER['QUERY_STRING'], $_GET);
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 }
Dan Horriganfea45ad2011-01-19 00:54:12 -0500219 else
Derek Allard2067d1a2008-11-13 22:59:24 +0000220 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500221 $_SERVER['QUERY_STRING'] = '';
222 $_GET = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000223 }
Eric Barnes26eebdd2011-04-17 23:45:41 -0400224
Alex Bilbieed944a32012-06-02 11:07:47 +0100225 if ($uri === '/' OR empty($uri))
ericbarnes@ericbarnes.locale58199b2011-02-02 22:40:36 -0500226 {
227 return '/';
228 }
Eric Barnes26eebdd2011-04-17 23:45:41 -0400229
Andrey Andreevd4619342012-06-14 02:27:25 +0300230 $uri = parse_url('pseudo://hostname/'.$uri, PHP_URL_PATH);
Derek Allard2067d1a2008-11-13 22:59:24 +0000231
Dan Horriganfea45ad2011-01-19 00:54:12 -0500232 // Do some final cleaning of the URI and return it
233 return str_replace(array('//', '../'), '/', trim($uri, '/'));
Derek Allard2067d1a2008-11-13 22:59:24 +0000234 }
235
236 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300237
Stephen2e00c242011-08-28 10:25:40 +0200238 /**
239 * Is cli Request?
240 *
241 * Duplicate of function from the Input class to test to see if a request was made from the command line
242 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300243 * @return bool
Stephen2e00c242011-08-28 10:25:40 +0200244 */
245 protected function _is_cli_request()
246 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300247 return (php_sapi_name() === 'cli') OR defined('STDIN');
Stephen2e00c242011-08-28 10:25:40 +0200248 }
249
Stephen2e00c242011-08-28 10:25:40 +0200250 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000251
252 /**
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000253 * Parse cli arguments
254 *
255 * Take each command line argument and assume it is a URI segment.
256 *
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000257 * @return string
258 */
Paulf7345e42011-08-27 06:51:16 +1200259 protected function _parse_cli_args()
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000260 {
261 $args = array_slice($_SERVER['argv'], 1);
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300262 return $args ? '/'.implode('/', $args) : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 }
264
265 // --------------------------------------------------------------------
266
267 /**
268 * Filter segments for malicious characters
269 *
Andrey Andreevc123e112012-01-08 00:17:34 +0200270 * Called by CI_Router
271 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000272 * @param string
273 * @return string
274 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200275 public function _filter_uri($str)
Derek Allard2067d1a2008-11-13 22:59:24 +0000276 {
Alex Bilbie04d43fe2012-06-02 17:59:11 +0100277 if ($str !== '' && $this->config->item('permitted_uri_chars') != '' && $this->config->item('enable_query_strings') === FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000278 {
Derek Jonesf0a9b332009-07-29 14:19:18 +0000279 // preg_quote() in PHP 5.3 escapes -, so the str_replace() and addition of - to preg_quote() is to maintain backwards
280 // compatibility as many are unaware of how characters in the permitted_uri_chars will be parsed as a regex pattern
Andrey Andreev58ae9712012-06-15 23:44:48 +0300281 if ( ! preg_match('|^['.str_replace(array('\\-', '\-'), '-', preg_quote($this->config->item('permitted_uri_chars'), '-')).']+$|i', urldecode($str)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000282 {
Derek Jones817163a2009-07-11 17:05:58 +0000283 show_error('The URI you submitted has disallowed characters.', 400);
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 }
285 }
286
Andrey Andreevc123e112012-01-08 00:17:34 +0200287 // Convert programatic characters to entities and return
288 return str_replace(
289 array('$', '(', ')', '%28', '%29'), // Bad
290 array('&#36;', '&#40;', '&#41;', '&#40;', '&#41;'), // Good
291 $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000292 }
293
294 // --------------------------------------------------------------------
295
296 /**
297 * Remove the suffix from the URL if needed
298 *
Andrey Andreevc123e112012-01-08 00:17:34 +0200299 * Called by CI_Router
300 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000301 * @return void
302 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200303 public function _remove_url_suffix()
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 {
Andrey Andreev95d78cf2012-06-16 19:54:33 +0300305 $suffix = (string) $this->config->item('url_suffix');
306
307 if ($suffix !== '' && ($offset = strrpos($this->uri_string, $suffix)) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000308 {
Andrey Andreev95d78cf2012-06-16 19:54:33 +0300309 $this->uri_string = substr_replace($this->uri_string, '', $offset, strlen($suffix));
Derek Allard2067d1a2008-11-13 22:59:24 +0000310 }
311 }
312
313 // --------------------------------------------------------------------
314
315 /**
316 * Explode the URI Segments. The individual segments will
317 * be stored in the $this->segments array.
318 *
Andrey Andreevc123e112012-01-08 00:17:34 +0200319 * Called by CI_Router
320 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000321 * @return void
322 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200323 public function _explode_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000324 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200325 foreach (explode('/', preg_replace('|/*(.+?)/*$|', '\\1', $this->uri_string)) as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 {
327 // Filter segments for security
328 $val = trim($this->_filter_uri($val));
329
Alex Bilbieed944a32012-06-02 11:07:47 +0100330 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 {
332 $this->segments[] = $val;
333 }
334 }
335 }
336
337 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300338
Derek Allard2067d1a2008-11-13 22:59:24 +0000339 /**
340 * Re-index Segments
341 *
342 * This function re-indexes the $this->segment array so that it
Andrey Andreevc123e112012-01-08 00:17:34 +0200343 * starts at 1 rather than 0. Doing so makes it simpler to
Derek Allard2067d1a2008-11-13 22:59:24 +0000344 * use functions like $this->uri->segment(n) since there is
345 * a 1:1 relationship between the segment array and the actual segments.
346 *
Andrey Andreevc123e112012-01-08 00:17:34 +0200347 * Called by CI_Router
348 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000349 * @return void
350 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200351 public function _reindex_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000352 {
353 array_unshift($this->segments, NULL);
354 array_unshift($this->rsegments, NULL);
355 unset($this->segments[0]);
356 unset($this->rsegments[0]);
357 }
358
359 // --------------------------------------------------------------------
360
361 /**
362 * Fetch a URI Segment
363 *
364 * This function returns the URI segment based on the number provided.
365 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300366 * @param int
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100367 * @param mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000368 * @return string
369 */
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100370 public function segment($n, $no_result = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300372 return isset($this->segments[$n]) ? $this->segments[$n] : $no_result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 }
374
375 // --------------------------------------------------------------------
376
377 /**
378 * Fetch a URI "routed" Segment
379 *
380 * This function returns the re-routed URI segment (assuming routing rules are used)
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300381 * based on the number provided. If there is no routing this function returns the
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 * same result as $this->segment()
383 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300384 * @param int
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100385 * @param mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 * @return string
387 */
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100388 public function rsegment($n, $no_result = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300390 return isset($this->rsegments[$n]) ? $this->rsegments[$n] : $no_result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000391 }
392
393 // --------------------------------------------------------------------
394
395 /**
396 * Generate a key value pair from the URI string
397 *
398 * This function generates and associative array of URI data starting
399 * at the supplied segment. For example, if this is your URI:
400 *
401 * example.com/user/search/name/joe/location/UK/gender/male
402 *
403 * You can use this function to generate an array with this prototype:
404 *
405 * array (
406 * name => joe
407 * location => UK
408 * gender => male
409 * )
410 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300411 * @param int the starting segment number
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 * @param array an array of default values
413 * @return array
414 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200415 public function uri_to_assoc($n = 3, $default = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000416 {
Barry Mienydd671972010-10-04 16:33:58 +0200417 return $this->_uri_to_assoc($n, $default, 'segment');
Derek Allard2067d1a2008-11-13 22:59:24 +0000418 }
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300419
Timothy Warren40403d22012-04-19 16:38:50 -0400420 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300421
Derek Allard2067d1a2008-11-13 22:59:24 +0000422 /**
423 * Identical to above only it uses the re-routed segment array
424 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300425 * @param int the starting segment number
David Behler07b53422011-08-15 00:25:06 +0200426 * @param array an array of default values
427 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000428 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200429 public function ruri_to_assoc($n = 3, $default = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000430 {
Barry Mienydd671972010-10-04 16:33:58 +0200431 return $this->_uri_to_assoc($n, $default, 'rsegment');
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 }
433
434 // --------------------------------------------------------------------
435
436 /**
437 * Generate a key value pair from the URI string or Re-routed URI string
438 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300439 * @param int the starting segment number
Derek Allard2067d1a2008-11-13 22:59:24 +0000440 * @param array an array of default values
441 * @param string which array we should use
442 * @return array
443 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200444 protected function _uri_to_assoc($n = 3, $default = array(), $which = 'segment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000445 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000446 if ( ! is_numeric($n))
447 {
448 return $default;
449 }
450
451 if (isset($this->keyval[$n]))
452 {
453 return $this->keyval[$n];
454 }
455
Andrey Andreevc123e112012-01-08 00:17:34 +0200456 if ($which === 'segment')
457 {
458 $total_segments = 'total_segments';
459 $segment_array = 'segment_array';
460 }
461 else
462 {
463 $total_segments = 'total_rsegments';
464 $segment_array = 'rsegment_array';
465 }
466
Derek Allard2067d1a2008-11-13 22:59:24 +0000467 if ($this->$total_segments() < $n)
468 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300469 return (count($default) === 0)
470 ? array()
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100471 : array_fill_keys($default, NULL);
Derek Allard2067d1a2008-11-13 22:59:24 +0000472 }
473
474 $segments = array_slice($this->$segment_array(), ($n - 1));
Derek Allard2067d1a2008-11-13 22:59:24 +0000475 $i = 0;
476 $lastval = '';
Derek Jones37f4b9c2011-07-01 17:56:50 -0500477 $retval = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000478 foreach ($segments as $seg)
479 {
480 if ($i % 2)
481 {
482 $retval[$lastval] = $seg;
483 }
484 else
485 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100486 $retval[$seg] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000487 $lastval = $seg;
488 }
489
490 $i++;
491 }
492
493 if (count($default) > 0)
494 {
495 foreach ($default as $val)
496 {
497 if ( ! array_key_exists($val, $retval))
498 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100499 $retval[$val] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 }
501 }
502 }
503
504 // Cache the array for reuse
505 $this->keyval[$n] = $retval;
506 return $retval;
507 }
508
509 // --------------------------------------------------------------------
510
511 /**
512 * Generate a URI string from an associative array
513 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000514 * @param array an associative array of key/values
515 * @return array
516 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200517 public function assoc_to_uri($array)
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 {
519 $temp = array();
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100520 foreach ((array) $array as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000521 {
Andrey Andreeva798fdb2012-01-08 00:20:49 +0200522 $temp[] = $key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000523 $temp[] = $val;
524 }
525
526 return implode('/', $temp);
527 }
528
529 // --------------------------------------------------------------------
530
531 /**
532 * Fetch a URI Segment and add a trailing slash
533 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300534 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 * @param string
536 * @return string
537 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200538 public function slash_segment($n, $where = 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000539 {
540 return $this->_slash_segment($n, $where, 'segment');
541 }
542
543 // --------------------------------------------------------------------
544
545 /**
546 * Fetch a URI Segment and add a trailing slash
547 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300548 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000549 * @param string
550 * @return string
551 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200552 public function slash_rsegment($n, $where = 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000553 {
554 return $this->_slash_segment($n, $where, 'rsegment');
555 }
556
557 // --------------------------------------------------------------------
558
559 /**
560 * Fetch a URI Segment and add a trailing slash - helper function
561 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300562 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000563 * @param string
564 * @param string
565 * @return string
566 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200567 protected function _slash_segment($n, $where = 'trailing', $which = 'segment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000568 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200569 $leading = $trailing = '/';
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000570
Andrey Andreevc123e112012-01-08 00:17:34 +0200571 if ($where === 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000572 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000573 $leading = '';
574 }
Andrey Andreevc123e112012-01-08 00:17:34 +0200575 elseif ($where === 'leading')
Derek Allard2067d1a2008-11-13 22:59:24 +0000576 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000577 $trailing = '';
578 }
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000579
Derek Allard2067d1a2008-11-13 22:59:24 +0000580 return $leading.$this->$which($n).$trailing;
581 }
582
583 // --------------------------------------------------------------------
584
585 /**
586 * Segment Array
587 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000588 * @return array
589 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200590 public function segment_array()
Derek Allard2067d1a2008-11-13 22:59:24 +0000591 {
592 return $this->segments;
593 }
594
595 // --------------------------------------------------------------------
596
597 /**
598 * Routed Segment Array
599 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 * @return array
601 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200602 public function rsegment_array()
Derek Allard2067d1a2008-11-13 22:59:24 +0000603 {
604 return $this->rsegments;
605 }
606
607 // --------------------------------------------------------------------
608
609 /**
610 * Total number of segments
611 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300612 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000613 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200614 public function total_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000615 {
616 return count($this->segments);
617 }
618
619 // --------------------------------------------------------------------
620
621 /**
622 * Total number of routed segments
623 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300624 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200626 public function total_rsegments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 {
628 return count($this->rsegments);
629 }
630
631 // --------------------------------------------------------------------
632
633 /**
634 * Fetch the entire URI string
635 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 * @return string
637 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200638 public function uri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +0000639 {
640 return $this->uri_string;
641 }
642
643
644 // --------------------------------------------------------------------
645
646 /**
647 * Fetch the entire Re-routed URI string
648 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000649 * @return string
650 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200651 public function ruri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +0000652 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100653 return implode('/', $this->rsegment_array());
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 }
655
656}
Derek Allard2067d1a2008-11-13 22:59:24 +0000657
658/* End of file URI.php */
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300659/* Location: ./system/core/URI.php */