mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
134 lines
4.8 KiB
PHP
134 lines
4.8 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Misc;
|
|
|
|
/**
|
|
* A collection of functions for manipulating URLs
|
|
*/
|
|
class URL {
|
|
|
|
/** Normalizes an absolute URL
|
|
*
|
|
* Normalizations performed are:
|
|
*
|
|
* - Lowercasing scheme
|
|
* - Lowercasing ASCII host names
|
|
* - IDN normalization
|
|
* - IPv6 address normalization
|
|
* - Resolution of relative path segments
|
|
* - Discarding empty path segments
|
|
* - Discarding empty queries
|
|
* - Generic percent-encoding normalization
|
|
* - Fragment discarding
|
|
*
|
|
* It does NOT drop trailing slashes from paths, nor does it perform Unicode normalization or context-aware percent-encoding normalization
|
|
*
|
|
* @param string $url The URL to normalize. Relative URLs are returned unchanged
|
|
* @param string $u Username to add to the URL, replacing any existing credentials
|
|
* @param string $p Password to add to the URL, if a username is specified
|
|
*/
|
|
public static function normalize(string $url, string $u = null, string $p = null): string {
|
|
extract(parse_url($url));
|
|
if (!isset($scheme) || !isset($host) || !strlen($host)) {
|
|
return $url;
|
|
}
|
|
$out = strtolower($scheme)."://";
|
|
if (strlen($u ?? "")) {
|
|
$out .= self::normalizeEncoding(rawurlencode($u));
|
|
if (strlen($p ?? "")) {
|
|
$out .= ":".self::normalizeEncoding(rawurlencode($p));
|
|
}
|
|
$out .= "@";
|
|
} elseif (strlen($user ?? "")) {
|
|
$out .= self::normalizeEncoding($user);
|
|
if (strlen($pass ?? "")) {
|
|
$out .= ":".self::normalizeEncoding($pass);
|
|
}
|
|
$out .= "@";
|
|
}
|
|
$out .= self::normalizeHost($host);
|
|
$out .= isset($port) ? ":$port" : "";
|
|
$out .= self::normalizePath($path ?? "");
|
|
if (isset($query) && strlen($query)) {
|
|
$out .= "?".self::normalizeEncoding($query);
|
|
}
|
|
return $out;
|
|
}
|
|
|
|
/** Perform percent-encoding normalization for a given URL component */
|
|
protected static function normalizeEncoding(string $part): string {
|
|
$pos = 0;
|
|
$end = strlen($part);
|
|
$out = "";
|
|
// process each character in sequence
|
|
while ($pos < $end) {
|
|
$c = $part[$pos];
|
|
if ($c === "%") {
|
|
// the % character signals an encoded character...
|
|
$d = substr($part, $pos+1, 2);
|
|
if (!preg_match("/^[0-9a-fA-F]{2}$/", $d)) {
|
|
// unless there are fewer than two characters left in the string or the two characters are not hex digits
|
|
$d = ord($c);
|
|
} else {
|
|
$d = hexdec($d);
|
|
$pos += 2;
|
|
}
|
|
} else {
|
|
$d = ord($c);
|
|
}
|
|
$dc = chr($d);
|
|
if ($d < 0x21 || $d > 0x7E || $d == 0x25) {
|
|
// these characters are always encoded
|
|
$out .= "%".strtoupper(dechex($d));
|
|
} elseif (preg_match("/[a-zA-Z0-9\._~-]/", $dc)) {
|
|
// these characters are never encoded
|
|
$out .= $dc;
|
|
} else {
|
|
// these characters are passed through as-is
|
|
if ($c === "%") {
|
|
$out .= "%".strtoupper(dechex($d));
|
|
} else {
|
|
$out .= $c;
|
|
}
|
|
}
|
|
$pos++;
|
|
}
|
|
return $out;
|
|
}
|
|
|
|
/** Normalizes a hostname per IDNA:2008 */
|
|
protected static function normalizeHost(string $host): string {
|
|
if ($host[0] === "[" && substr($host, -1) === "]") {
|
|
// normalize IPv6 addresses
|
|
$addr = @inet_pton(substr($host, 1, strlen($host) - 2));
|
|
if ($addr !== false) {
|
|
return "[".inet_ntop($addr)."]";
|
|
}
|
|
}
|
|
$idn = idn_to_ascii($host, \IDNA_NONTRANSITIONAL_TO_ASCII, \INTL_IDNA_VARIANT_UTS46);
|
|
return $idn !== false ? idn_to_utf8($idn, \IDNA_NONTRANSITIONAL_TO_UNICODE, \INTL_IDNA_VARIANT_UTS46) : $host;
|
|
}
|
|
|
|
/** Normalizes the whole path segment to remove empty segments and relative segments */
|
|
protected static function normalizePath(string $path): string {
|
|
$parts = explode("/", self::normalizeEncoding($path));
|
|
$out = [];
|
|
foreach($parts as $p) {
|
|
switch ($p) {
|
|
case "":
|
|
case ".":
|
|
break;
|
|
case "..":
|
|
array_pop($out);
|
|
break;
|
|
default:
|
|
$out[] = $p;
|
|
}
|
|
}
|
|
return str_replace("//", "/", "/".implode("/", $out).(substr($path, -1) === "/" ? "/" : ""));
|
|
}
|
|
}
|