GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/parhudrw/ve.anqa.it/wp-content/plugins/depicter/vendor/averta/wpemerge/src/Helpers/Url.php
<?php
/**
 * @package   WPEmerge
 * @author    Atanas Angelov <[email protected]>
 * @copyright 2017-2019 Atanas Angelov
 * @license   https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0
 * @link      https://wpemerge.com/
 */

namespace WPEmerge\Helpers;

use WPEmerge\Requests\RequestInterface;
use WPEmerge\Support\Arr;

/**
 * A collection of tools dealing with URLs.
 */
class Url {
	/**
	 * Get the path for the request relative to the home url.
	 * Works only with absolute URLs.
	 *
	 * @param  RequestInterface $request
	 * @param  string           $home_url
	 * @return string
	 */
	public static function getPath( RequestInterface $request, $home_url = '' ) {
		$parsed_request = wp_parse_url( $request->getUrl() );
		$parsed_home = wp_parse_url( $home_url ? $home_url : home_url( '/' ) );

		$request_path = Arr::get( $parsed_request, 'path', '/' );
		$request_path = static::removeTrailingSlash( $request_path );
		$request_path = static::addLeadingSlash( $request_path );

		if ( $parsed_request['host'] !== $parsed_home['host'] ) {
			return $request_path;
		}

		$home_path = Arr::get( $parsed_home, 'path', '/' );
		$home_path = static::removeTrailingSlash( $home_path );
		$home_path = static::addLeadingSlash( $home_path );
		$path = $request_path;

		if ( strpos( $request_path, $home_path ) === 0 ) {
			$path = substr( $request_path, strlen( $home_path ) );
		}

		return static::addLeadingSlash( $path );
	}

	/**
	 * Ensure url has a leading slash
	 *
	 * @param  string  $url
	 * @param  boolean $leave_blank
	 * @return string
	 */
	public static function addLeadingSlash( $url, $leave_blank = false ) {
		if ( $leave_blank && $url === '' ) {
			return '';
		}

		return '/' . static::removeLeadingSlash( $url );
	}

	/**
	 * Ensure url does not have a leading slash
	 *
	 * @param  string $url
	 * @return string
	 */
	public static function removeLeadingSlash( $url ) {
		return preg_replace( '/^\/+/', '', $url );
	}

	/**
	 * Ensure url has a trailing slash
	 *
	 * @param  string  $url
	 * @param  boolean $leave_blank
	 * @return string
	 */
	public static function addTrailingSlash( $url, $leave_blank = false ) {
		if ( $leave_blank && $url === '' ) {
			return '';
		}

		return trailingslashit( $url );
	}

	/**
	 * Ensure url does not have a trailing slash
	 *
	 * @param  string $url
	 * @return string
	 */
	public static function removeTrailingSlash( $url ) {
		return untrailingslashit( $url );
	}
}