112 lines
2.5 KiB
PHP
112 lines
2.5 KiB
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* Hummingbird Anime List Client
|
|
*
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
*
|
|
* PHP version 7
|
|
*
|
|
* @package HummingbirdAnimeClient
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
* @version 4.0
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
*/
|
|
|
|
namespace Aviat\AnimeClient;
|
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
use InvalidArgumentException;
|
|
|
|
/**
|
|
* UrlGenerator class.
|
|
*/
|
|
class UrlGenerator extends RoutingBase {
|
|
|
|
/**
|
|
* The current HTTP host
|
|
* @var string
|
|
*/
|
|
protected $host;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param ContainerInterface $container
|
|
*/
|
|
public function __construct(ContainerInterface $container)
|
|
{
|
|
parent::__construct($container);
|
|
$this->host = $container->get('request')->getServerParams()['HTTP_HOST'];
|
|
}
|
|
|
|
/**
|
|
* Get the base url for css/js/images
|
|
*
|
|
* @param string ...$args url segments to apend to the base asset url
|
|
* @return string
|
|
*/
|
|
public function assetUrl(...$args): string
|
|
{
|
|
$baseUrl = rtrim($this->url(""), '/');
|
|
$baseUrl = "{$baseUrl}" . $this->__get("asset_path");
|
|
|
|
array_unshift($args, $baseUrl);
|
|
|
|
return implode("/", $args);
|
|
}
|
|
|
|
/**
|
|
* Generate a proper url from the path
|
|
*
|
|
* @param string $path
|
|
* @return string
|
|
*/
|
|
public function url(string $path): string
|
|
{
|
|
$path = trim($path, '/');
|
|
|
|
$path = preg_replace('`{/.*?}`i', '', $path);
|
|
|
|
// Remove any optional parameters from the route
|
|
// and replace them with existing route parameters, if they exist
|
|
$path_segments = explode('/', $path);
|
|
$segment_count = count($path_segments);
|
|
$segments = $this->segments();
|
|
|
|
for ($i = 0; $i < $segment_count; $i++)
|
|
{
|
|
if ( ! array_key_exists($i + 1, $segments))
|
|
{
|
|
$segments[$i + 1] = "";
|
|
}
|
|
|
|
$path_segments[$i] = preg_replace('`{.*?}`i', $segments[$i + 1], $path_segments[$i]);
|
|
}
|
|
$path = implode('/', $path_segments);
|
|
|
|
return "//{$this->host}/{$path}";
|
|
}
|
|
|
|
/**
|
|
* Full default path for the list pages
|
|
*
|
|
* @param string $type
|
|
* @throws InvalidArgumentException
|
|
* @return string
|
|
*/
|
|
public function defaultUrl(string $type): string
|
|
{
|
|
$type = trim($type);
|
|
$defaultPath = $this->__get("default_{$type}_list_path");
|
|
|
|
if ( ! is_null($defaultPath))
|
|
{
|
|
return $this->url("{$type}/{$defaultPath}");
|
|
}
|
|
|
|
throw new InvalidArgumentException("Invalid default type: '{$type}'");
|
|
}
|
|
}
|
|
// End of UrlGenerator.php
|