HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/zeusxp5/tour.kamille.us/wp-content/plugins/surecart/core/core/src/Helpers/Url.php
<?php
/**
 * @package   SureCartCore
 * @author    SureCart <support@surecart.com>
 * @copyright 2017-2019 SureCart
 * @license   https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0
 * @link      https://surecart.com/
 */

namespace SureCartCore\Helpers;

use SureCartCore\Requests\RequestInterface;
use SureCartCore\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 );
	}
}