HummingBirdAnimeClient/src/AnimeClient/Controller/Anime.php

367 lines
7.6 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 8
*
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 5.2
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Controller;
use Aura\Router\Exception\RouteNotFound;
use Aviat\AnimeClient\API\Enum\AnimeWatchingStatus\Kitsu as KitsuWatchingStatus;
use Aviat\AnimeClient\API\Kitsu\Transformer\AnimeListTransformer;
use Aviat\AnimeClient\API\Mapping\AnimeWatchingStatus;
use Aviat\AnimeClient\Controller as BaseController;
use Aviat\AnimeClient\Model\Anime as AnimeModel;
use Aviat\AnimeClient\Types\FormItem;
use Aviat\Ion\Di\ContainerInterface;
use Aviat\Ion\Di\Exception\{ContainerException, NotFoundException};
use Aviat\Ion\Json;
use InvalidArgumentException;
use Throwable;
use TypeError;
/**
* Controller for Anime-related pages
*/
final class Anime extends BaseController
{
/**
* The anime list model
*/
protected AnimeModel $model;
/**
* Constructor
*
* @throws ContainerException
* @throws NotFoundException
*/
public function __construct(ContainerInterface $container)
{
parent::__construct($container);
$this->model = $container->get('anime-model');
$this->baseData = array_merge($this->baseData, [
'menu_name' => 'anime_list',
'other_type' => 'manga',
'url_type' => 'anime',
]);
}
/**
* Show a portion, or all of the anime list
*
* @param int|string $status - The section of the list
* @param string|null $view - List or cover view
* @throws InvalidArgumentException
* @throws Throwable
*/
public function index(int|string $status = KitsuWatchingStatus::WATCHING, ?string $view = NULL): void
{
if ( ! in_array($status, [
'all',
'watching',
'plan_to_watch',
'on_hold',
'dropped',
'completed',
], TRUE))
{
$this->errorPage(404, 'Not Found', 'Page not found');
}
$title = array_key_exists($status, AnimeWatchingStatus::ROUTE_TO_TITLE)
? $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
AnimeWatchingStatus::ROUTE_TO_TITLE[$status]
)
: '';
$viewMap = [
'' => 'cover',
'list' => 'list',
];
$data = ($status !== 'all')
? $this->model->getList(AnimeWatchingStatus::ROUTE_TO_KITSU[$status])
: $this->model->getAllLists();
$this->outputHTML('anime/' . $viewMap[$view], [
'title' => $title,
'sections' => $data,
]);
}
/**
* Form to add an anime
*
* @throws ContainerException
* @throws InvalidArgumentException
* @throws NotFoundException
* @throws RouteNotFound
* @throws Throwable
*/
public function addForm(): void
{
$this->checkAuth();
$this->setSessionRedirect();
$this->outputHTML('anime/add', [
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Add'
),
'action_url' => $this->url->generate('anime.add.post'),
'status_list' => AnimeWatchingStatus::KITSU_TO_TITLE,
]);
}
/**
* Add an anime to the list
*
* @throws Throwable
*/
public function add(): void
{
$this->checkAuth();
$data = (array) $this->request->getParsedBody();
if (empty($data['mal_id']))
{
unset($data['mal_id']);
}
if ( ! array_key_exists('id', $data))
{
$this->redirect('anime/add', 303);
}
$result = $this->model->createLibraryItem($data);
if ($result)
{
$this->setFlashMessage('Added new anime to list', 'success');
$this->cache->clear();
}
else
{
$this->setFlashMessage('Failed to add new anime to list', 'error');
}
$this->sessionRedirect();
}
/**
* Form to edit details about a series
*/
public function edit(string $id, string $status = 'all'): void
{
$this->checkAuth();
$item = $this->model->getLibraryItem($id);
$this->setSessionRedirect();
$this->outputHTML('anime/edit', [
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Edit'
),
'item' => $item,
'statuses' => AnimeWatchingStatus::KITSU_TO_TITLE,
'action' => $this->url->generate('update.post', [
'controller' => 'anime',
]),
]);
}
/**
* Search for anime
*/
public function search(): void
{
$queryParams = $this->request->getQueryParams();
$query = $queryParams['query'];
$this->outputJSON($this->model->search($query), 200);
}
/**
* Update an anime item via a form submission
*
* @throws Throwable
*/
public function formUpdate(): void
{
$this->checkAuth();
$data = (array) $this->request->getParsedBody();
// Do some minor data manipulation for
// large form-based updates
$transformer = new AnimeListTransformer();
$postData = $transformer->untransform($data);
$fullResult = $this->model->updateLibraryItem(FormItem::from($postData));
if ($fullResult['statusCode'] === 200)
{
$this->setFlashMessage('Successfully updated.', 'success');
$this->cache->clear();
}
else
{
$this->setFlashMessage('Failed to update anime.', 'error');
}
$this->sessionRedirect();
}
/**
* Increase the watched count for an anime item
*
* @throws Throwable
*/
public function increment(): void
{
$this->checkAuth();
if (str_contains($this->request->getHeader('content-type')[0], 'application/json'))
{
$data = Json::decode((string) $this->request->getBody());
}
else
{
$data = (array) $this->request->getParsedBody();
}
if (empty($data))
{
$this->errorPage(400, 'Bad Request', '');
exit();
}
$response = $this->model->incrementLibraryItem(FormItem::from($data));
$this->cache->clear();
$this->outputJSON($response['body'], $response['statusCode']);
}
/**
* Remove an anime from the list
*
* @throws Throwable
*/
public function delete(): void
{
$this->checkAuth();
$body = (array) $this->request->getParsedBody();
$response = $this->model->deleteItem(FormItem::from($body));
if ($response === TRUE)
{
$this->setFlashMessage('Successfully deleted anime.', 'success');
$this->cache->clear();
}
else
{
$this->setFlashMessage('Failed to delete anime.', 'error');
}
$this->sessionRedirect();
}
/**
* View details of an anime
*
* @throws InvalidArgumentException
*/
public function details(string $id): void
{
try
{
$data = $this->model->getAnime($id);
if ($data->isEmpty())
{
$this->notFound(
$this->config->get('whose_list') .
"'s Anime List &middot; Anime &middot; " .
'Anime not found',
'Anime Not Found'
);
return;
}
$this->outputHTML('anime/details', [
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Anime',
$data->title ?? ''
),
'data' => $data,
]);
}
catch (TypeError)
{
$this->notFound(
$this->config->get('whose_list') .
"'s Anime List &middot; Anime &middot; " .
'Anime not found',
'Anime Not Found'
);
}
}
public function random(): void
{
try
{
$data = $this->model->getRandomAnime();
if ($data->isEmpty())
{
$this->notFound(
$this->config->get('whose_list') .
"'s Anime List &middot; Anime &middot; " .
'Anime not found',
'Anime Not Found'
);
return;
}
$this->outputHTML('anime/details', [
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Anime',
$data->title ?? ''
),
'data' => $data,
]);
}
catch (TypeError)
{
$this->notFound(
$this->config->get('whose_list') .
"'s Anime List &middot; Anime &middot; " .
'Anime not found',
'Anime Not Found'
);
}
}
}
// End of AnimeController.php