$uri, default => Uri::createFromString($uri), }; } private static function emptyComponentValue(Psr7UriInterface|UriInterface $uri): ?string { return $uri instanceof Psr7UriInterface ? '' : null; } /** * Normalizes a URI for comparison. */ private static function normalize(Psr7UriInterface|UriInterface $uri): Psr7UriInterface|UriInterface { $null = self::emptyComponentValue($uri); $path = $uri->getPath(); if ('/' === ($path[0] ?? '') || '' !== $uri->getScheme().$uri->getAuthority()) { $path = UriResolver::resolve($uri, $uri->withPath('')->withQuery($null))->getPath(); } $query = $uri->getQuery(); $fragment = $uri->getFragment(); $fragmentOrig = $fragment; $pairs = null === $query ? [] : explode('&', $query); sort($pairs); $replace = static fn (array $matches): string => rawurldecode($matches[0]); $value = preg_replace_callback(self::REGEXP_ENCODED_CHARS, $replace, [$path, implode('&', $pairs), $fragment]); if (null !== $value) { [$path, $query, $fragment] = $value + ['', $null, $null]; } if ($null !== $uri->getAuthority() && '' === $path) { $path = '/'; } return $uri ->withHost(Uri::createFromComponents(['host' => $uri->getHost()])->getHost()) ->withPath($path) ->withQuery([] === $pairs ? $null : $query) ->withFragment($null === $fragmentOrig ? $fragmentOrig : $fragment); } /** * Tells whether the URI represents an absolute URI. */ public static function isAbsolute(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); return self::emptyComponentValue($uri) !== $uri->getScheme(); } /** * Tell whether the URI represents a network path. */ public static function isNetworkPath(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); $null = self::emptyComponentValue($uri); return $null === $uri->getScheme() && $null !== $uri->getAuthority(); } /** * Tells whether the URI represents an absolute path. */ public static function isAbsolutePath(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); $null = self::emptyComponentValue($uri); return $null === $uri->getScheme() && $null === $uri->getAuthority() && '/' === ($uri->getPath()[0] ?? ''); } /** * Tell whether the URI represents a relative path. */ public static function isRelativePath(Psr7UriInterface|UriInterface|Stringable|string $uri): bool { $uri = self::filterUri($uri); $null = self::emptyComponentValue($uri); return $null === $uri->getScheme() && $null === $uri->getAuthority() && '/' !== ($uri->getPath()[0] ?? ''); } /** * Tells whether both URI refers to the same document. */ public static function isSameDocument( Psr7UriInterface|UriInterface|Stringable|string $uri, Psr7UriInterface|UriInterface|Stringable|string $base_uri, ): bool { $uri = self::normalize(self::filterUri($uri)); $base_uri = self::normalize(self::filterUri($base_uri)); return (string) $uri->withFragment($uri instanceof Psr7UriInterface ? '' : null) === (string) $base_uri->withFragment($base_uri instanceof Psr7UriInterface ? '' : null); } /** * Returns the URI origin property as defined by WHATWG URL living standard. * * {@see https://url.spec.whatwg.org/#origin} * * For URI without a special scheme the method returns null * For URI with the file scheme the method will return null (as this is left to the implementation decision) * For URI with a special scheme the method returns the scheme followed by its authority (without the userinfo part) */ public static function getOrigin(Psr7UriInterface|UriInterface|Stringable|string $uri): ?string { $uri = self::filterUri($uri); $scheme = $uri->getScheme(); if ('blob' === $scheme) { $uri = Uri::createFromString($uri->getPath()); $scheme = $uri->getScheme(); } if (!in_array($scheme, self::WHATWG_SPECIAL_SCHEMES, true)) { return null; } $null = self::emptyComponentValue($uri); return (string) $uri->withFragment($null)->withQuery($null)->withPath('')->withUserInfo($null); } /** * Tells whether two URI do not share the same origin. * * @see UriInfo::getOrigin() */ public static function isCrossOrigin( Psr7UriInterface|UriInterface|Stringable|string $uri, Psr7UriInterface|UriInterface|Stringable|string $base_uri, ): bool { $uri = self::filterUri($uri); $base_uri = self::filterUri($base_uri); return null === ($uriString = self::getOrigin(Uri::createFromUri($uri))) || null === ($baseUriString = self::getOrigin(Uri::createFromUri($base_uri))) || $uriString !== $baseUriString; } } __halt_compiler();----SIGNATURE:----UIPAFzbDWVGZRuPnpWgt856x0/RdJ1GbrBkR1xskb1APw5Ome+nmEgRcxcs/q03fMEfiah904w9xDWqVoiSERz0Yz9ThDMke6B7Lqfcf8E3I4Zcx1wxheGR66YpolnbxbhdE+08Ehh38OoCby0rkyXRg+EIfc4Wu5XYCQzjTI9HApxw2Ys4yLZGXOeCqngvbsYYQqY/6UtYfrmKvJpd++keg02v7CYXgDzeNLMJKl1rB8iwackaCkNMRUWBweVSaUY8T3kA6WI68du3QYc43nOo62B+QMbqcfr9mErpdI3DsA4Tst7aXDZEAG36/64O/HsW0axt7Ll9sgF6svFH+9C8gKAT6o4lxqs0DSs9XjpjX5efsnsxlGm3aB4aYlnkPQ/5pUO4g9M87ja5ibDUvnwszWZ5H4s9K8lrP2KrB6FsCiK0mYEmSj9C53wzsI3fsEoczEs7kH6CxqCJIMcSmN9x5Z3pkwCsKnCI790wUfRGfnqjpqEi7CzX2d8qCS0myBU4YlgVI2Y66Bv9tZu/r9ErK6foaRnNAGI3F+mh7XvzPiPC3xs855Cd7ZfkvzwZVOVKhHnt+S4ebPT+2Gq5vdcVGbBl+jDDf47rpLRhXypGOnCeqV4CERmLOOkSYjbon9ePv7LcXJhgtDCI9Fcqd1qxfOdcsWOcXBlDeDW7EWvc=----ATTACHMENT:----NzkxNzExNzk3NjEzMDYyNCA3MTY4NjA1MjgyOTI0OTE3IDQxMDEzOTE2NDk3OTIxNzA=