blob: 2e661ed4cb6a343cde187daed9a70ac0b330d0b1 [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
Michiel Vugteveen0609d582012-01-08 13:26:17 +0100192 if (strpos($uri, $_SERVER['SCRIPT_NAME']) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500194 $uri = substr($uri, strlen($_SERVER['SCRIPT_NAME']));
195 }
Michiel Vugteveen0609d582012-01-08 13:26:17 +0100196 elseif (strpos($uri, dirname($_SERVER['SCRIPT_NAME'])) === 0)
Dan Horriganfea45ad2011-01-19 00:54:12 -0500197 {
198 $uri = substr($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 Andreevc123e112012-01-08 00:17:34 +0200281 if ( ! preg_match('|^['.str_replace(array('\\-', '\-'), '-', preg_quote($this->config->item('permitted_uri_chars'), '-')).']+$|i', $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 {
Alex Bilbieed944a32012-06-02 11:07:47 +0100305 if ($this->config->item('url_suffix') !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000306 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200307 $this->uri_string = preg_replace('|'.preg_quote($this->config->item('url_suffix')).'$|', '', $this->uri_string);
Derek Allard2067d1a2008-11-13 22:59:24 +0000308 }
309 }
310
311 // --------------------------------------------------------------------
312
313 /**
314 * Explode the URI Segments. The individual segments will
315 * be stored in the $this->segments array.
316 *
Andrey Andreevc123e112012-01-08 00:17:34 +0200317 * Called by CI_Router
318 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000319 * @return void
320 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200321 public function _explode_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000322 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200323 foreach (explode('/', preg_replace('|/*(.+?)/*$|', '\\1', $this->uri_string)) as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000324 {
325 // Filter segments for security
326 $val = trim($this->_filter_uri($val));
327
Alex Bilbieed944a32012-06-02 11:07:47 +0100328 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 {
330 $this->segments[] = $val;
331 }
332 }
333 }
334
335 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300336
Derek Allard2067d1a2008-11-13 22:59:24 +0000337 /**
338 * Re-index Segments
339 *
340 * This function re-indexes the $this->segment array so that it
Andrey Andreevc123e112012-01-08 00:17:34 +0200341 * starts at 1 rather than 0. Doing so makes it simpler to
Derek Allard2067d1a2008-11-13 22:59:24 +0000342 * use functions like $this->uri->segment(n) since there is
343 * a 1:1 relationship between the segment array and the actual segments.
344 *
Andrey Andreevc123e112012-01-08 00:17:34 +0200345 * Called by CI_Router
346 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000347 * @return void
348 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200349 public function _reindex_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000350 {
351 array_unshift($this->segments, NULL);
352 array_unshift($this->rsegments, NULL);
353 unset($this->segments[0]);
354 unset($this->rsegments[0]);
355 }
356
357 // --------------------------------------------------------------------
358
359 /**
360 * Fetch a URI Segment
361 *
362 * This function returns the URI segment based on the number provided.
363 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300364 * @param int
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100365 * @param mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000366 * @return string
367 */
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100368 public function segment($n, $no_result = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300370 return isset($this->segments[$n]) ? $this->segments[$n] : $no_result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 }
372
373 // --------------------------------------------------------------------
374
375 /**
376 * Fetch a URI "routed" Segment
377 *
378 * This function returns the re-routed URI segment (assuming routing rules are used)
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300379 * based on the number provided. If there is no routing this function returns the
Derek Allard2067d1a2008-11-13 22:59:24 +0000380 * same result as $this->segment()
381 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300382 * @param int
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100383 * @param mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000384 * @return string
385 */
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100386 public function rsegment($n, $no_result = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000387 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300388 return isset($this->rsegments[$n]) ? $this->rsegments[$n] : $no_result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 }
390
391 // --------------------------------------------------------------------
392
393 /**
394 * Generate a key value pair from the URI string
395 *
396 * This function generates and associative array of URI data starting
397 * at the supplied segment. For example, if this is your URI:
398 *
399 * example.com/user/search/name/joe/location/UK/gender/male
400 *
401 * You can use this function to generate an array with this prototype:
402 *
403 * array (
404 * name => joe
405 * location => UK
406 * gender => male
407 * )
408 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300409 * @param int the starting segment number
Derek Allard2067d1a2008-11-13 22:59:24 +0000410 * @param array an array of default values
411 * @return array
412 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200413 public function uri_to_assoc($n = 3, $default = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000414 {
Barry Mienydd671972010-10-04 16:33:58 +0200415 return $this->_uri_to_assoc($n, $default, 'segment');
Derek Allard2067d1a2008-11-13 22:59:24 +0000416 }
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300417
Timothy Warren40403d22012-04-19 16:38:50 -0400418 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300419
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 /**
421 * Identical to above only it uses the re-routed segment array
422 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300423 * @param int the starting segment number
David Behler07b53422011-08-15 00:25:06 +0200424 * @param array an array of default values
425 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000426 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200427 public function ruri_to_assoc($n = 3, $default = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000428 {
Barry Mienydd671972010-10-04 16:33:58 +0200429 return $this->_uri_to_assoc($n, $default, 'rsegment');
Derek Allard2067d1a2008-11-13 22:59:24 +0000430 }
431
432 // --------------------------------------------------------------------
433
434 /**
435 * Generate a key value pair from the URI string or Re-routed URI string
436 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300437 * @param int the starting segment number
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 * @param array an array of default values
439 * @param string which array we should use
440 * @return array
441 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200442 protected function _uri_to_assoc($n = 3, $default = array(), $which = 'segment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000443 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000444 if ( ! is_numeric($n))
445 {
446 return $default;
447 }
448
449 if (isset($this->keyval[$n]))
450 {
451 return $this->keyval[$n];
452 }
453
Andrey Andreevc123e112012-01-08 00:17:34 +0200454 if ($which === 'segment')
455 {
456 $total_segments = 'total_segments';
457 $segment_array = 'segment_array';
458 }
459 else
460 {
461 $total_segments = 'total_rsegments';
462 $segment_array = 'rsegment_array';
463 }
464
Derek Allard2067d1a2008-11-13 22:59:24 +0000465 if ($this->$total_segments() < $n)
466 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300467 return (count($default) === 0)
468 ? array()
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100469 : array_fill_keys($default, NULL);
Derek Allard2067d1a2008-11-13 22:59:24 +0000470 }
471
472 $segments = array_slice($this->$segment_array(), ($n - 1));
Derek Allard2067d1a2008-11-13 22:59:24 +0000473 $i = 0;
474 $lastval = '';
Derek Jones37f4b9c2011-07-01 17:56:50 -0500475 $retval = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000476 foreach ($segments as $seg)
477 {
478 if ($i % 2)
479 {
480 $retval[$lastval] = $seg;
481 }
482 else
483 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100484 $retval[$seg] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000485 $lastval = $seg;
486 }
487
488 $i++;
489 }
490
491 if (count($default) > 0)
492 {
493 foreach ($default as $val)
494 {
495 if ( ! array_key_exists($val, $retval))
496 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100497 $retval[$val] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000498 }
499 }
500 }
501
502 // Cache the array for reuse
503 $this->keyval[$n] = $retval;
504 return $retval;
505 }
506
507 // --------------------------------------------------------------------
508
509 /**
510 * Generate a URI string from an associative array
511 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000512 * @param array an associative array of key/values
513 * @return array
514 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200515 public function assoc_to_uri($array)
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 {
517 $temp = array();
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100518 foreach ((array) $array as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000519 {
Andrey Andreeva798fdb2012-01-08 00:20:49 +0200520 $temp[] = $key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000521 $temp[] = $val;
522 }
523
524 return implode('/', $temp);
525 }
526
527 // --------------------------------------------------------------------
528
529 /**
530 * Fetch a URI Segment and add a trailing slash
531 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300532 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000533 * @param string
534 * @return string
535 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200536 public function slash_segment($n, $where = 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000537 {
538 return $this->_slash_segment($n, $where, 'segment');
539 }
540
541 // --------------------------------------------------------------------
542
543 /**
544 * Fetch a URI Segment and add a trailing slash
545 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300546 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000547 * @param string
548 * @return string
549 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200550 public function slash_rsegment($n, $where = 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000551 {
552 return $this->_slash_segment($n, $where, 'rsegment');
553 }
554
555 // --------------------------------------------------------------------
556
557 /**
558 * Fetch a URI Segment and add a trailing slash - helper function
559 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300560 * @param int
Derek Allard2067d1a2008-11-13 22:59:24 +0000561 * @param string
562 * @param string
563 * @return string
564 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200565 protected function _slash_segment($n, $where = 'trailing', $which = 'segment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000566 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200567 $leading = $trailing = '/';
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000568
Andrey Andreevc123e112012-01-08 00:17:34 +0200569 if ($where === 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000570 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000571 $leading = '';
572 }
Andrey Andreevc123e112012-01-08 00:17:34 +0200573 elseif ($where === 'leading')
Derek Allard2067d1a2008-11-13 22:59:24 +0000574 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000575 $trailing = '';
576 }
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000577
Derek Allard2067d1a2008-11-13 22:59:24 +0000578 return $leading.$this->$which($n).$trailing;
579 }
580
581 // --------------------------------------------------------------------
582
583 /**
584 * Segment Array
585 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000586 * @return array
587 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200588 public function segment_array()
Derek Allard2067d1a2008-11-13 22:59:24 +0000589 {
590 return $this->segments;
591 }
592
593 // --------------------------------------------------------------------
594
595 /**
596 * Routed Segment Array
597 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000598 * @return array
599 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200600 public function rsegment_array()
Derek Allard2067d1a2008-11-13 22:59:24 +0000601 {
602 return $this->rsegments;
603 }
604
605 // --------------------------------------------------------------------
606
607 /**
608 * Total number of segments
609 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300610 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000611 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200612 public function total_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000613 {
614 return count($this->segments);
615 }
616
617 // --------------------------------------------------------------------
618
619 /**
620 * Total number of routed segments
621 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300622 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000623 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200624 public function total_rsegments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 {
626 return count($this->rsegments);
627 }
628
629 // --------------------------------------------------------------------
630
631 /**
632 * Fetch the entire URI string
633 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 * @return string
635 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200636 public function uri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +0000637 {
638 return $this->uri_string;
639 }
640
641
642 // --------------------------------------------------------------------
643
644 /**
645 * Fetch the entire Re-routed URI string
646 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000647 * @return string
648 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200649 public function ruri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +0000650 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100651 return implode('/', $this->rsegment_array());
Derek Allard2067d1a2008-11-13 22:59:24 +0000652 }
653
654}
Derek Allard2067d1a2008-11-13 22:59:24 +0000655
656/* End of file URI.php */
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300657/* Location: ./system/core/URI.php */