blob: d67a35d4b446d4febcee9c6512bfa84dc3964317 [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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +020042 * List of cached URI segments
David Behler07b53422011-08-15 00:25:06 +020043 *
Andrey Andreevcca74272012-10-28 14:43:36 +020044 * @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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +020049 * Current URI string
David Behler07b53422011-08-15 00:25:06 +020050 *
Andrey Andreevcca74272012-10-28 14:43:36 +020051 * @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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +020056 * List of URI segments
David Behler07b53422011-08-15 00:25:06 +020057 *
Andrey Andreevcca74272012-10-28 14:43:36 +020058 * @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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +020063 * Re-indexed list of URI segments
David Behler07b53422011-08-15 00:25:06 +020064 *
Andrey Andreevcca74272012-10-28 14:43:36 +020065 * Starts at 1 instead of 0.
66 *
67 * @var array
David Behler07b53422011-08-15 00:25:06 +020068 */
Timothy Warren48a7fbb2012-04-23 11:58:16 -040069 public $rsegments = array();
Derek Allard2067d1a2008-11-13 22:59:24 +000070
71 /**
Andrey Andreevcca74272012-10-28 14:43:36 +020072 * Class constructor
Derek Allard2067d1a2008-11-13 22:59:24 +000073 *
Andrey Andreevc123e112012-01-08 00:17:34 +020074 * Simply globalizes the $RTR object. The front
Derek Allard2067d1a2008-11-13 22:59:24 +000075 * loads the Router class early on so it's not available
76 * normally as other classes are.
Andrey Andreev92ebfb62012-05-17 12:49:24 +030077 *
78 * @return void
Derek Allard2067d1a2008-11-13 22:59:24 +000079 */
Andrey Andreevc123e112012-01-08 00:17:34 +020080 public function __construct()
Derek Allard2067d1a2008-11-13 22:59:24 +000081 {
Derek Jones7576a3b2010-03-02 14:00:36 -060082 $this->config =& load_class('Config', 'core');
Andrey Andreevc123e112012-01-08 00:17:34 +020083 log_message('debug', 'URI Class Initialized');
Derek Allard2067d1a2008-11-13 22:59:24 +000084 }
85
Derek Allard2067d1a2008-11-13 22:59:24 +000086 // --------------------------------------------------------------------
87
88 /**
Andrey Andreevcca74272012-10-28 14:43:36 +020089 * Fetch URI String
Derek Allard2067d1a2008-11-13 22:59:24 +000090 *
Andrey Andreevcca74272012-10-28 14:43:36 +020091 * @used-by CI_Router
Andrey Andreevc123e112012-01-08 00:17:34 +020092 * @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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200161 * Set URI String
Pascal Kriete73598e32011-04-05 15:01:05 -0400162 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200163 * @param string $str
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 {
Andrey Andreevf5f898f2012-10-23 02:13:29 +0300168 // Filter out control characters and trim slashes
169 $this->uri_string = trim(remove_invisible_characters($str, FALSE), '/');
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 }
171
172 // --------------------------------------------------------------------
173
174 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200175 * Detects URI
Derek Allard2067d1a2008-11-13 22:59:24 +0000176 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200177 * Will detect the URI automatically and fix the query string if necessary.
Derek Allard2067d1a2008-11-13 22:59:24 +0000178 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000179 * @return string
180 */
Paulf7345e42011-08-27 06:51:16 +1200181 protected function _detect_uri()
Derek Allard2067d1a2008-11-13 22:59:24 +0000182 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300183 if ( ! isset($_SERVER['REQUEST_URI'], $_SERVER['SCRIPT_NAME']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000184 {
185 return '';
186 }
187
Andrey Andreeva8262ba2012-06-14 03:16:44 +0300188 if (strpos($_SERVER['REQUEST_URI'], $_SERVER['SCRIPT_NAME']) === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 {
Andrey Andreeva8262ba2012-06-14 03:16:44 +0300190 $uri = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME']));
Dan Horriganfea45ad2011-01-19 00:54:12 -0500191 }
Andrey Andreeva8262ba2012-06-14 03:16:44 +0300192 elseif (strpos($_SERVER['REQUEST_URI'], dirname($_SERVER['SCRIPT_NAME'])) === 0)
Dan Horriganfea45ad2011-01-19 00:54:12 -0500193 {
Andrey Andreevfb859792012-06-14 03:32:19 +0300194 $uri = substr($_SERVER['REQUEST_URI'], strlen(dirname($_SERVER['SCRIPT_NAME'])));
Derek Allard2067d1a2008-11-13 22:59:24 +0000195 }
Andrey Andreevd4619342012-06-14 02:27:25 +0300196 else
197 {
198 $uri = $_SERVER['REQUEST_URI'];
199 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000200
Dan Horriganfea45ad2011-01-19 00:54:12 -0500201 // This section ensures that even on servers that require the URI to be in the query string (Nginx) a correct
202 // URI is found, and also fixes the QUERY_STRING server var and $_GET array.
Andrey Andreevd4619342012-06-14 02:27:25 +0300203 if (strpos($uri, '?/') === 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000204 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500205 $uri = substr($uri, 2);
Derek Allard2067d1a2008-11-13 22:59:24 +0000206 }
Andrey Andreevd4619342012-06-14 02:27:25 +0300207
208 $parts = explode('?', $uri, 2);
Dan Horriganfea45ad2011-01-19 00:54:12 -0500209 $uri = $parts[0];
210 if (isset($parts[1]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500212 $_SERVER['QUERY_STRING'] = $parts[1];
Dan Horrigan65d603e2010-12-15 08:38:30 -0500213 parse_str($_SERVER['QUERY_STRING'], $_GET);
Derek Allard2067d1a2008-11-13 22:59:24 +0000214 }
Dan Horriganfea45ad2011-01-19 00:54:12 -0500215 else
Derek Allard2067d1a2008-11-13 22:59:24 +0000216 {
Dan Horriganfea45ad2011-01-19 00:54:12 -0500217 $_SERVER['QUERY_STRING'] = '';
218 $_GET = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000219 }
Eric Barnes26eebdd2011-04-17 23:45:41 -0400220
Andrey Andreev4b322b12012-10-26 15:37:28 +0300221 if ($uri === '/' OR $uri === '')
ericbarnes@ericbarnes.locale58199b2011-02-02 22:40:36 -0500222 {
223 return '/';
224 }
Eric Barnes26eebdd2011-04-17 23:45:41 -0400225
Andrey Andreevd4619342012-06-14 02:27:25 +0300226 $uri = parse_url('pseudo://hostname/'.$uri, PHP_URL_PATH);
Derek Allard2067d1a2008-11-13 22:59:24 +0000227
Dan Horriganfea45ad2011-01-19 00:54:12 -0500228 // Do some final cleaning of the URI and return it
229 return str_replace(array('//', '../'), '/', trim($uri, '/'));
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 }
231
232 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300233
Stephen2e00c242011-08-28 10:25:40 +0200234 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200235 * Is CLI Request?
Stephen2e00c242011-08-28 10:25:40 +0200236 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200237 * Duplicate of method from the Input class to test to see if
238 * a request was made from the command line.
Stephen2e00c242011-08-28 10:25:40 +0200239 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200240 * @see CI_Input::is_cli_request()
241 * @used-by CI_URI::_fetch_uri_string()
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300242 * @return bool
Stephen2e00c242011-08-28 10:25:40 +0200243 */
244 protected function _is_cli_request()
245 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300246 return (php_sapi_name() === 'cli') OR defined('STDIN');
Stephen2e00c242011-08-28 10:25:40 +0200247 }
248
Stephen2e00c242011-08-28 10:25:40 +0200249 // --------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000250
251 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200252 * Parse CLI arguments
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000253 *
254 * Take each command line argument and assume it is a URI segment.
255 *
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000256 * @return string
257 */
Paulf7345e42011-08-27 06:51:16 +1200258 protected function _parse_cli_args()
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000259 {
260 $args = array_slice($_SERVER['argv'], 1);
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300261 return $args ? '/'.implode('/', $args) : '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000262 }
263
264 // --------------------------------------------------------------------
265
266 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200267 * Filter URI
Derek Allard2067d1a2008-11-13 22:59:24 +0000268 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200269 * Filters segments for malicious characters.
Andrey Andreevc123e112012-01-08 00:17:34 +0200270 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200271 * @used-by CI_Router
272 * @param string $str
Derek Allard2067d1a2008-11-13 22:59:24 +0000273 * @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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200297 * Remove URL suffix
Derek Allard2067d1a2008-11-13 22:59:24 +0000298 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200299 * Removes the suffix from the URL if needed.
Andrey Andreevc123e112012-01-08 00:17:34 +0200300 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200301 * @used-by CI_Router
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 * @return void
303 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200304 public function _remove_url_suffix()
Derek Allard2067d1a2008-11-13 22:59:24 +0000305 {
Andrey Andreev95d78cf2012-06-16 19:54:33 +0300306 $suffix = (string) $this->config->item('url_suffix');
307
308 if ($suffix !== '' && ($offset = strrpos($this->uri_string, $suffix)) !== FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 {
Andrey Andreev95d78cf2012-06-16 19:54:33 +0300310 $this->uri_string = substr_replace($this->uri_string, '', $offset, strlen($suffix));
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 }
312 }
313
314 // --------------------------------------------------------------------
315
316 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200317 * Explode URI segments
Derek Allard2067d1a2008-11-13 22:59:24 +0000318 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200319 * The individual segments will be stored in the $this->segments array.
Andrey Andreevc123e112012-01-08 00:17:34 +0200320 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200321 * @see CI_URI::$segments
322 * @used-by CI_Router
Derek Allard2067d1a2008-11-13 22:59:24 +0000323 * @return void
324 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200325 public function _explode_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200327 foreach (explode('/', preg_replace('|/*(.+?)/*$|', '\\1', $this->uri_string)) as $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 {
329 // Filter segments for security
330 $val = trim($this->_filter_uri($val));
331
Alex Bilbieed944a32012-06-02 11:07:47 +0100332 if ($val !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000333 {
334 $this->segments[] = $val;
335 }
336 }
337 }
338
339 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300340
Derek Allard2067d1a2008-11-13 22:59:24 +0000341 /**
342 * Re-index Segments
343 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200344 * Re-indexes the CI_URI::$segment array so that it starts at 1 rather
345 * than 0. Doing so makes it simpler to use methods like
346 * CI_URI::segment(n) since there is a 1:1 relationship between the
347 * segment array and the actual segments.
Derek Allard2067d1a2008-11-13 22:59:24 +0000348 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200349 * @used-by CI_Router
Derek Allard2067d1a2008-11-13 22:59:24 +0000350 * @return void
351 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200352 public function _reindex_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000353 {
354 array_unshift($this->segments, NULL);
355 array_unshift($this->rsegments, NULL);
356 unset($this->segments[0]);
357 unset($this->rsegments[0]);
358 }
359
360 // --------------------------------------------------------------------
361
362 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200363 * Fetch URI Segment
Derek Allard2067d1a2008-11-13 22:59:24 +0000364 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200365 * @see CI_URI::$segments
366 * @param int $n Index
367 * @param mixed $no_result What to return if the segment index is not found
368 * @return mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 */
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 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200378 * Fetch URI "routed" Segment
Derek Allard2067d1a2008-11-13 22:59:24 +0000379 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200380 * Returns the re-routed URI segment (assuming routing rules are used)
381 * based on the index provided. If there is no routing, will return
382 * the same result as CI_URI::segment().
Derek Allard2067d1a2008-11-13 22:59:24 +0000383 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200384 * @see CI_URI::$rsegments
385 * @see CI_URI::segment()
386 * @param int $n Index
387 * @param mixed $no_result What to return if the segment index is not found
388 * @return mixed
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 */
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100390 public function rsegment($n, $no_result = NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000391 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300392 return isset($this->rsegments[$n]) ? $this->rsegments[$n] : $no_result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000393 }
394
395 // --------------------------------------------------------------------
396
397 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200398 * URI to assoc
Derek Allard2067d1a2008-11-13 22:59:24 +0000399 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200400 * Generates an associative array of URI data starting at the supplied
401 * segment index. For example, if this is your URI:
Derek Allard2067d1a2008-11-13 22:59:24 +0000402 *
403 * example.com/user/search/name/joe/location/UK/gender/male
404 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200405 * You can use this method to generate an array with this prototype:
Derek Allard2067d1a2008-11-13 22:59:24 +0000406 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200407 * array (
408 * name => joe
409 * location => UK
410 * gender => male
411 * )
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200413 * @param int $n Index (default: 3)
414 * @param array $default Default values
Derek Allard2067d1a2008-11-13 22:59:24 +0000415 * @return array
416 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200417 public function uri_to_assoc($n = 3, $default = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000418 {
Barry Mienydd671972010-10-04 16:33:58 +0200419 return $this->_uri_to_assoc($n, $default, 'segment');
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 }
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300421
Timothy Warren40403d22012-04-19 16:38:50 -0400422 // --------------------------------------------------------------------
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300423
Derek Allard2067d1a2008-11-13 22:59:24 +0000424 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200425 * Routed URI to assoc
Derek Allard2067d1a2008-11-13 22:59:24 +0000426 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200427 * Identical to CI_URI::uri_to_assoc(), only it uses the re-routed
428 * segment array.
429 *
430 * @see CI_URI::uri_to_assoc()
431 * @param int $n Index (default: 3)
432 * @param array $default Default values
David Behler07b53422011-08-15 00:25:06 +0200433 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000434 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200435 public function ruri_to_assoc($n = 3, $default = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000436 {
Barry Mienydd671972010-10-04 16:33:58 +0200437 return $this->_uri_to_assoc($n, $default, 'rsegment');
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 }
439
440 // --------------------------------------------------------------------
441
442 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200443 * Internal URI-to-assoc
Derek Allard2067d1a2008-11-13 22:59:24 +0000444 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200445 * Generates a key/value pair from the URI string or re-routed URI string.
446 *
447 * @used-by CI_URI::uri_to_assoc()
448 * @used-by CI_URI::ruri_to_assoc()
449 * @param int $n Index (default: 3)
450 * @param array $default Default values
451 * @param string $which Array name ('segment' or 'rsegment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000452 * @return array
453 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200454 protected function _uri_to_assoc($n = 3, $default = array(), $which = 'segment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000455 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000456 if ( ! is_numeric($n))
457 {
458 return $default;
459 }
460
Andrey Andreev4a7cc762012-10-24 23:52:05 +0300461 in_array($which, array('segment', 'rsegment'), TRUE) OR $which = 'segment';
462
463 if (isset($this->keyval[$which], $this->keyval[$which][$n]))
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 {
Andrey Andreev4a7cc762012-10-24 23:52:05 +0300465 return $this->keyval[$which][$n];
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 }
467
Andrey Andreevc123e112012-01-08 00:17:34 +0200468 if ($which === 'segment')
469 {
470 $total_segments = 'total_segments';
471 $segment_array = 'segment_array';
472 }
473 else
474 {
475 $total_segments = 'total_rsegments';
476 $segment_array = 'rsegment_array';
477 }
478
Derek Allard2067d1a2008-11-13 22:59:24 +0000479 if ($this->$total_segments() < $n)
480 {
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300481 return (count($default) === 0)
482 ? array()
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100483 : array_fill_keys($default, NULL);
Derek Allard2067d1a2008-11-13 22:59:24 +0000484 }
485
486 $segments = array_slice($this->$segment_array(), ($n - 1));
Derek Allard2067d1a2008-11-13 22:59:24 +0000487 $i = 0;
488 $lastval = '';
vkeranov2b6b4302012-10-27 18:12:24 +0300489 $retval = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000490 foreach ($segments as $seg)
491 {
492 if ($i % 2)
493 {
494 $retval[$lastval] = $seg;
495 }
496 else
497 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100498 $retval[$seg] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000499 $lastval = $seg;
500 }
501
502 $i++;
503 }
504
505 if (count($default) > 0)
506 {
507 foreach ($default as $val)
508 {
509 if ( ! array_key_exists($val, $retval))
510 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100511 $retval[$val] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000512 }
513 }
514 }
515
516 // Cache the array for reuse
Andrey Andreev90930422012-10-24 23:53:12 +0300517 isset($this->keyval[$which]) OR $this->keyval[$which] = array();
Andrey Andreev4a7cc762012-10-24 23:52:05 +0300518 $this->keyval[$which][$n] = $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000519 return $retval;
520 }
521
522 // --------------------------------------------------------------------
523
524 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200525 * Assoc to URI
Derek Allard2067d1a2008-11-13 22:59:24 +0000526 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200527 * Generates a URI string from an associative array.
528 *
529 * @param array $array Input array of key/value pairs
530 * @return string URI string
Derek Allard2067d1a2008-11-13 22:59:24 +0000531 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200532 public function assoc_to_uri($array)
Derek Allard2067d1a2008-11-13 22:59:24 +0000533 {
534 $temp = array();
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100535 foreach ((array) $array as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000536 {
Andrey Andreeva798fdb2012-01-08 00:20:49 +0200537 $temp[] = $key;
Derek Allard2067d1a2008-11-13 22:59:24 +0000538 $temp[] = $val;
539 }
540
541 return implode('/', $temp);
542 }
543
544 // --------------------------------------------------------------------
545
546 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200547 * Slash segment
Derek Allard2067d1a2008-11-13 22:59:24 +0000548 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200549 * Fetches an URI segment with a slash.
550 *
551 * @param int $n Index
552 * @param string $where Where to add the slash ('trailing' or 'leading')
Derek Allard2067d1a2008-11-13 22:59:24 +0000553 * @return string
554 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200555 public function slash_segment($n, $where = 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 {
557 return $this->_slash_segment($n, $where, 'segment');
558 }
559
560 // --------------------------------------------------------------------
561
562 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200563 * Slash routed segment
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200565 * Fetches an URI routed segment with a slash.
566 *
567 * @param int $n Index
568 * @param string $where Where to add the slash ('trailing' or 'leading')
Derek Allard2067d1a2008-11-13 22:59:24 +0000569 * @return string
570 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200571 public function slash_rsegment($n, $where = 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000572 {
573 return $this->_slash_segment($n, $where, 'rsegment');
574 }
575
576 // --------------------------------------------------------------------
577
578 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200579 * Internal Slash segment
Derek Allard2067d1a2008-11-13 22:59:24 +0000580 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200581 * Fetches an URI Segment and adds a slash to it.
582 *
583 * @used-by CI_URI::slash_segment()
584 * @used-by CI_URI::slash_rsegment()
585 *
586 * @param int $n Index
587 * @param string $where Where to add the slash ('trailing' or 'leading')
588 * @param string $which Array name ('segment' or 'rsegment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000589 * @return string
590 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200591 protected function _slash_segment($n, $where = 'trailing', $which = 'segment')
Derek Allard2067d1a2008-11-13 22:59:24 +0000592 {
Andrey Andreevc123e112012-01-08 00:17:34 +0200593 $leading = $trailing = '/';
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000594
Andrey Andreevc123e112012-01-08 00:17:34 +0200595 if ($where === 'trailing')
Derek Allard2067d1a2008-11-13 22:59:24 +0000596 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000597 $leading = '';
598 }
Andrey Andreevc123e112012-01-08 00:17:34 +0200599 elseif ($where === 'leading')
Derek Allard2067d1a2008-11-13 22:59:24 +0000600 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000601 $trailing = '';
602 }
Phil Sturgeon48c718c2010-12-30 23:40:02 +0000603
Derek Allard2067d1a2008-11-13 22:59:24 +0000604 return $leading.$this->$which($n).$trailing;
605 }
606
607 // --------------------------------------------------------------------
608
609 /**
610 * Segment Array
611 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200612 * @return array CI_URI::$segments
Derek Allard2067d1a2008-11-13 22:59:24 +0000613 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200614 public function segment_array()
Derek Allard2067d1a2008-11-13 22:59:24 +0000615 {
616 return $this->segments;
617 }
618
619 // --------------------------------------------------------------------
620
621 /**
622 * Routed Segment Array
623 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200624 * @return array CI_URI::$rsegments
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200626 public function rsegment_array()
Derek Allard2067d1a2008-11-13 22:59:24 +0000627 {
628 return $this->rsegments;
629 }
630
631 // --------------------------------------------------------------------
632
633 /**
634 * Total number of segments
635 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300636 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000637 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200638 public function total_segments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000639 {
640 return count($this->segments);
641 }
642
643 // --------------------------------------------------------------------
644
645 /**
646 * Total number of routed segments
647 *
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300648 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000649 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200650 public function total_rsegments()
Derek Allard2067d1a2008-11-13 22:59:24 +0000651 {
652 return count($this->rsegments);
653 }
654
655 // --------------------------------------------------------------------
656
657 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200658 * Fetch URI string
Derek Allard2067d1a2008-11-13 22:59:24 +0000659 *
Andrey Andreevcca74272012-10-28 14:43:36 +0200660 * @return string CI_URI::$uri_string
Derek Allard2067d1a2008-11-13 22:59:24 +0000661 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200662 public function uri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +0000663 {
664 return $this->uri_string;
665 }
666
Derek Allard2067d1a2008-11-13 22:59:24 +0000667 // --------------------------------------------------------------------
668
669 /**
Andrey Andreevcca74272012-10-28 14:43:36 +0200670 * Fetch Re-routed URI string
Derek Allard2067d1a2008-11-13 22:59:24 +0000671 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000672 * @return string
673 */
Andrey Andreevc123e112012-01-08 00:17:34 +0200674 public function ruri_string()
Derek Allard2067d1a2008-11-13 22:59:24 +0000675 {
Phil Sturgeon55a6ddb2012-05-23 18:37:24 +0100676 return implode('/', $this->rsegment_array());
Derek Allard2067d1a2008-11-13 22:59:24 +0000677 }
678
679}
Derek Allard2067d1a2008-11-13 22:59:24 +0000680
681/* End of file URI.php */
Andrey Andreev92ebfb62012-05-17 12:49:24 +0300682/* Location: ./system/core/URI.php */