2015-09-14 15:49:20 -04:00
|
|
|
<?php
|
2015-09-14 19:54:34 -04:00
|
|
|
/**
|
2015-11-16 11:40:01 -05:00
|
|
|
* Hummingbird Anime Client
|
|
|
|
*
|
|
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren
|
2016-01-04 16:58:33 -05:00
|
|
|
* @copyright Copyright (c) 2015 - 2016
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
* @license MIT
|
2015-09-14 19:54:34 -04:00
|
|
|
*/
|
2015-09-15 13:19:29 -04:00
|
|
|
namespace Aviat\AnimeClient;
|
2015-09-14 15:49:20 -04:00
|
|
|
|
2015-09-17 23:11:18 -04:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
|
|
|
2015-09-14 19:54:34 -04:00
|
|
|
/**
|
|
|
|
* Base for routing/url classes
|
|
|
|
*/
|
2015-09-14 15:49:20 -04:00
|
|
|
class RoutingBase {
|
2015-10-09 14:34:55 -04:00
|
|
|
|
|
|
|
use \Aviat\Ion\StringWrapper;
|
|
|
|
|
2015-09-14 15:49:20 -04:00
|
|
|
/**
|
|
|
|
* Injection Container
|
2015-10-12 14:27:20 -04:00
|
|
|
* @var ContainerInterface $container
|
2015-09-14 15:49:20 -04:00
|
|
|
*/
|
|
|
|
protected $container;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config Object
|
|
|
|
* @var Config
|
|
|
|
*/
|
|
|
|
protected $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Routing array
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $routes;
|
|
|
|
|
2016-02-02 21:28:32 -05:00
|
|
|
/**
|
|
|
|
* Route configuration options
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $route_config;
|
|
|
|
|
2015-09-14 15:49:20 -04:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2015-10-06 10:24:48 -04:00
|
|
|
* @param ContainerInterface $container
|
2015-09-14 15:49:20 -04:00
|
|
|
*/
|
2015-09-17 23:11:18 -04:00
|
|
|
public function __construct(ContainerInterface $container)
|
2015-09-14 15:49:20 -04:00
|
|
|
{
|
|
|
|
$this->container = $container;
|
|
|
|
$this->config = $container->get('config');
|
2016-02-02 21:28:32 -05:00
|
|
|
$base_routes = $this->config->get('routes');
|
|
|
|
$this->routes = $base_routes['routes'];
|
|
|
|
$this->route_config = $base_routes['route_config'];
|
2015-09-14 15:49:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retreive the appropriate value for the routing key
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function __get($key)
|
|
|
|
{
|
2016-02-02 21:28:32 -05:00
|
|
|
$routing_config =& $this->route_config;
|
2015-09-14 15:49:20 -04:00
|
|
|
|
|
|
|
if (array_key_exists($key, $routing_config))
|
|
|
|
{
|
|
|
|
return $routing_config[$key];
|
|
|
|
}
|
|
|
|
}
|
2015-10-09 14:34:55 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current url path
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function path()
|
|
|
|
{
|
|
|
|
$request = $this->container->get('request');
|
2016-01-04 10:53:03 -05:00
|
|
|
$path = $request->url->get(PHP_URL_PATH);
|
2015-10-09 14:34:55 -04:00
|
|
|
$cleaned_path = $this->string($path)
|
|
|
|
->trim()
|
|
|
|
->trimRight('/')
|
|
|
|
->ensureLeft('/');
|
|
|
|
|
2015-10-09 14:55:15 -04:00
|
|
|
return (string)$cleaned_path;
|
2015-10-09 14:34:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the url segments
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function segments()
|
|
|
|
{
|
|
|
|
$path = $this->path();
|
2015-11-09 11:10:15 -05:00
|
|
|
return explode('/', $path);
|
2015-10-09 14:34:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a segment of the current url
|
|
|
|
*
|
|
|
|
* @param int $num
|
|
|
|
* @return string|null
|
|
|
|
*/
|
|
|
|
public function get_segment($num)
|
|
|
|
{
|
|
|
|
$segments = $this->segments();
|
|
|
|
return (array_key_exists($num, $segments)) ? $segments[$num] : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the last url segment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function last_segment()
|
|
|
|
{
|
|
|
|
$segments = $this->segments();
|
|
|
|
return end($segments);
|
|
|
|
}
|
2015-09-14 15:49:20 -04:00
|
|
|
}
|
|
|
|
// End of RoutingBase.php
|