/usr/share/php/Nette/Http/Url.php is in php-nette 2.1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | <?php
/**
* This file is part of the Nette Framework (http://nette.org)
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
*/
namespace Nette\Http;
use Nette;
/**
* URI Syntax (RFC 3986).
*
* <pre>
* scheme user password host port basePath relativeUrl
* | | | | | | |
* /--\ /--\ /------\ /-------\ /--\/--\/----------------------------\
* http://john:x0y17575@nette.org:8042/en/manual.php?name=param#fragment <-- absoluteUrl
* \__________________________/\____________/^\________/^\______/
* | | | |
* authority path query fragment
* </pre>
*
* - authority: [user[:password]@]host[:port]
* - hostUrl: http://user:password@nette.org:8042
* - basePath: /en/ (everything before relative URI not including the script name)
* - baseUrl: http://user:password@nette.org:8042/en/
* - relativeUrl: manual.php
*
* @author David Grudl
*
* @property string $scheme
* @property string $user
* @property string $password
* @property string $host
* @property string $port
* @property string $path
* @property string $query
* @property string $fragment
* @property-read string $absoluteUrl
* @property-read string $authority
* @property-read string $hostUrl
* @property-read string $basePath
* @property-read string $baseUrl
* @property-read string $relativeUrl
*/
class Url extends Nette\Object
{
/** @var array */
public static $defaultPorts = array(
'http' => 80,
'https' => 443,
'ftp' => 21,
'news' => 119,
'nntp' => 119,
);
/** @var string */
private $scheme = '';
/** @var string */
private $user = '';
/** @var string */
private $pass = '';
/** @var string */
private $host = '';
/** @var int */
private $port = NULL;
/** @var string */
private $path = '';
/** @var string */
private $query = '';
/** @var string */
private $fragment = '';
/**
* @param string URL
* @throws Nette\InvalidArgumentException
*/
public function __construct($url = NULL)
{
if (is_string($url)) {
$parts = @parse_url($url); // @ - is escalated to exception
if ($parts === FALSE) {
throw new Nette\InvalidArgumentException("Malformed or unsupported URI '$url'.");
}
foreach ($parts as $key => $val) {
$this->$key = $val;
}
if (!$this->port && isset(self::$defaultPorts[$this->scheme])) {
$this->port = self::$defaultPorts[$this->scheme];
}
if ($this->path === '' && ($this->scheme === 'http' || $this->scheme === 'https')) {
$this->path = '/';
}
} elseif ($url instanceof self) {
foreach ($this as $key => $val) {
$this->$key = $url->$key;
}
}
}
/**
* Sets the scheme part of URI.
* @param string
* @return self
*/
public function setScheme($value)
{
$this->scheme = (string) $value;
return $this;
}
/**
* Returns the scheme part of URI.
* @return string
*/
public function getScheme()
{
return $this->scheme;
}
/**
* Sets the user name part of URI.
* @param string
* @return self
*/
public function setUser($value)
{
$this->user = (string) $value;
return $this;
}
/**
* Returns the user name part of URI.
* @return string
*/
public function getUser()
{
return $this->user;
}
/**
* Sets the password part of URI.
* @param string
* @return self
*/
public function setPassword($value)
{
$this->pass = (string) $value;
return $this;
}
/**
* Returns the password part of URI.
* @return string
*/
public function getPassword()
{
return $this->pass;
}
/**
* Sets the host part of URI.
* @param string
* @return self
*/
public function setHost($value)
{
$this->host = (string) $value;
return $this;
}
/**
* Returns the host part of URI.
* @return string
*/
public function getHost()
{
return $this->host;
}
/**
* Sets the port part of URI.
* @param string
* @return self
*/
public function setPort($value)
{
$this->port = (int) $value;
return $this;
}
/**
* Returns the port part of URI.
* @return string
*/
public function getPort()
{
return $this->port;
}
/**
* Sets the path part of URI.
* @param string
* @return self
*/
public function setPath($value)
{
$this->path = (string) $value;
return $this;
}
/**
* Returns the path part of URI.
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* Sets the query part of URI.
* @param string|array
* @return self
*/
public function setQuery($value)
{
$this->query = (string) (is_array($value) ? http_build_query($value, '', '&') : $value);
return $this;
}
/**
* Appends the query part of URI.
* @param string|array
* @return Url
*/
public function appendQuery($value)
{
$value = (string) (is_array($value) ? http_build_query($value, '', '&') : $value);
$this->query .= ($this->query === '' || $value === '') ? $value : '&' . $value;
return $this;
}
/**
* Returns the query part of URI.
* @return string
*/
public function getQuery()
{
return $this->query;
}
/**
* @param string
* @param mixed
* @return mixed
*/
public function getQueryParameter($name, $default = NULL)
{
parse_str($this->query, $params);
return isset($params[$name]) ? $params[$name] : $default;
}
/**
* @param string
* @param mixed NULL unsets the parameter
* @return self
*/
public function setQueryParameter($name, $value)
{
parse_str($this->query, $params);
if ($value === NULL) {
unset($params[$name]);
} else {
$params[$name] = $value;
}
$this->setQuery($params);
return $this;
}
/**
* Sets the fragment part of URI.
* @param string
* @return self
*/
public function setFragment($value)
{
$this->fragment = (string) $value;
return $this;
}
/**
* Returns the fragment part of URI.
* @return string
*/
public function getFragment()
{
return $this->fragment;
}
/**
* Returns the entire URI including query string and fragment.
* @return string
*/
public function getAbsoluteUrl()
{
return $this->getHostUrl() . $this->path
. ($this->query === '' ? '' : '?' . $this->query)
. ($this->fragment === '' ? '' : '#' . $this->fragment);
}
/**
* Returns the [user[:pass]@]host[:port] part of URI.
* @return string
*/
public function getAuthority()
{
$authority = $this->host;
if ($this->port && (!isset(self::$defaultPorts[$this->scheme]) || $this->port !== self::$defaultPorts[$this->scheme])) {
$authority .= ':' . $this->port;
}
if ($this->user !== '' && $this->scheme !== 'http' && $this->scheme !== 'https') {
$authority = $this->user . ($this->pass === '' ? '' : ':' . $this->pass) . '@' . $authority;
}
return $authority;
}
/**
* Returns the scheme and authority part of URI.
* @return string
*/
public function getHostUrl()
{
return ($this->scheme ? $this->scheme . ':' : '') . '//' . $this->getAuthority();
}
/**
* Returns the base-path.
* @return string
*/
public function getBasePath()
{
$pos = strrpos($this->path, '/');
return $pos === FALSE ? '' : substr($this->path, 0, $pos + 1);
}
/**
* Returns the base-URI.
* @return string
*/
public function getBaseUrl()
{
return $this->getHostUrl() . $this->getBasePath();
}
/**
* Returns the relative-URI.
* @return string
*/
public function getRelativeUrl()
{
return (string) substr($this->getAbsoluteUrl(), strlen($this->getBaseUrl()));
}
/**
* URI comparsion (this object must be in canonical form).
* @param string
* @return bool
*/
public function isEqual($url)
{
// compare host + path
$part = self::unescape(strtok($url, '?#'), '%/');
if (strncmp($part, '//', 2) === 0) { // absolute URI without scheme
if ($part !== '//' . $this->getAuthority() . $this->path) {
return FALSE;
}
} elseif (strncmp($part, '/', 1) === 0) { // absolute path
if ($part !== $this->path) {
return FALSE;
}
} else {
if ($part !== $this->getHostUrl() . $this->path) {
return FALSE;
}
}
// compare query strings
$part = preg_split('#[&;]#', self::unescape(strtr((string) strtok('?#'), '+', ' '), '%&;=+'));
sort($part);
$query = preg_split('#[&;]#', $this->query);
sort($query);
return $part === $query;
}
/**
* Transform to canonical form.
* @return Url
*/
public function canonicalize()
{
$this->path = $this->path === '' ? '/' : self::unescape($this->path, '%/');
$this->host = strtolower(rawurldecode($this->host));
$this->query = self::unescape(strtr($this->query, '+', ' '), '%&;=+');
return $this;
}
/**
* @return string
*/
public function __toString()
{
return $this->getAbsoluteUrl();
}
/**
* Similar to rawurldecode, but preserve reserved chars encoded.
* @param string to decode
* @param string reserved characters
* @return string
*/
public static function unescape($s, $reserved = '%;/?:@&=+$,')
{
// reserved (@see RFC 2396) = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
// within a path segment, the characters "/", ";", "=", "?" are reserved
// within a query component, the characters ";", "/", "?", ":", "@", "&", "=", "+", ",", "$" are reserved.
preg_match_all('#(?<=%)[a-f0-9][a-f0-9]#i', $s, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
foreach (array_reverse($matches) as $match) {
$ch = chr(hexdec($match[0][0]));
if (strpos($reserved, $ch) === FALSE) {
$s = substr_replace($s, $ch, $match[0][1] - 1, 3);
}
}
return $s;
}
}
|