Timothy J. Warren
ff6fcffca8
All checks were successful
timw4mail/HummingBirdAnimeClient/pipeline/head This commit looks good
83 lines
1.9 KiB
PHP
83 lines
1.9 KiB
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* Hummingbird Anime List Client
|
|
*
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
*
|
|
* PHP version 7.4
|
|
*
|
|
* @package HummingbirdAnimeClient
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
* @version 5.1
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
*/
|
|
|
|
namespace Aviat\AnimeClient\Controller;
|
|
|
|
use Aviat\AnimeClient\API\Kitsu\Model;
|
|
use Aviat\AnimeClient\Controller as BaseController;
|
|
use Aviat\AnimeClient\API\Kitsu\Transformer\CharacterTransformer;
|
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
use Aviat\Ion\Di\Exception\ContainerException;
|
|
use Aviat\Ion\Di\Exception\NotFoundException;
|
|
|
|
/**
|
|
* Controller for character description pages
|
|
*/
|
|
final class Character extends BaseController {
|
|
|
|
/**
|
|
* @var Model
|
|
*/
|
|
private Model $model;
|
|
|
|
/**
|
|
* Character constructor.
|
|
*
|
|
* @param ContainerInterface $container
|
|
* @throws ContainerException
|
|
* @throws NotFoundException
|
|
*/
|
|
public function __construct(ContainerInterface $container)
|
|
{
|
|
parent::__construct($container);
|
|
$this->model = $container->get('kitsu-model');
|
|
}
|
|
|
|
/**
|
|
* Show information about a character
|
|
*
|
|
* @param string $slug
|
|
* @return void
|
|
*/
|
|
public function index(string $slug): void
|
|
{
|
|
$rawData = $this->model->getCharacter($slug);
|
|
|
|
if (( ! array_key_exists('data', $rawData)) || empty($rawData['data']))
|
|
{
|
|
$this->notFound(
|
|
$this->formatTitle(
|
|
'Characters',
|
|
'Character not found'
|
|
),
|
|
'Character Not Found'
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
$data = (new CharacterTransformer())->transform($rawData)->toArray();
|
|
|
|
$this->outputHTML('character/details', [
|
|
'title' => $this->formatTitle(
|
|
'Characters',
|
|
$data['name']
|
|
),
|
|
'data' => $data,
|
|
]);
|
|
}
|
|
} |