HummingBirdAnimeClient/src/Controller/Anime.php

357 lines
7.9 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2015-11-16 11:40:01 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
2018-10-01 11:35:51 -04:00
* PHP version 7.1
2016-08-30 10:01:18 -04:00
*
2017-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2018-10-01 11:35:51 -04:00
* @version 4.1
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Controller;
2015-09-15 13:19:29 -04:00
use Aviat\AnimeClient\Controller as BaseController;
2018-01-16 14:58:07 -05:00
use Aviat\AnimeClient\API\Kitsu\Transformer\AnimeListTransformer;
use Aviat\AnimeClient\API\Enum\AnimeWatchingStatus\Kitsu as KitsuWatchingStatus;
use Aviat\AnimeClient\API\Mapping\AnimeWatchingStatus;
2018-09-27 16:45:12 -04:00
use Aviat\AnimeClient\Types\FormItem;
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Di\ContainerInterface;
use Aviat\Ion\Json;
2016-12-21 12:46:20 -05:00
use Aviat\Ion\StringWrapper;
2015-06-26 16:39:10 -04:00
/**
* Controller for Anime-related pages
*/
final class Anime extends BaseController {
2015-05-22 12:36:26 -04:00
2016-12-21 12:46:20 -05:00
use StringWrapper;
2016-01-04 10:53:03 -05:00
/**
* The anime list model
2018-01-16 14:58:07 -05:00
* @var \Aviat\AnimeClient\Model\Anime $model
*/
protected $model;
/**
* Constructor
*
* @param ContainerInterface $container
2018-02-02 09:50:58 -05:00
* @throws \Aviat\Ion\Di\ContainerException
* @throws \Aviat\Ion\Di\NotFoundException
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
2015-05-22 12:36:26 -04:00
{
parent::__construct($container);
2015-12-08 16:39:49 -05:00
$this->model = $container->get('anime-model');
2016-01-04 10:53:03 -05:00
2017-02-15 11:30:16 -05:00
$this->baseData = array_merge($this->baseData, [
2015-10-09 14:34:55 -04:00
'menu_name' => 'anime_list',
'url_type' => 'anime',
'other_type' => 'manga',
'config' => $this->config,
2015-09-14 15:49:20 -04:00
]);
2016-04-05 13:19:35 -04:00
$this->cache = $container->get('cache');
2015-05-22 12:36:26 -04:00
}
2015-10-06 11:38:20 -04:00
/**
* Show a portion, or all of the anime list
*
* @param string|int $type - The section of the list
2015-10-06 11:38:20 -04:00
* @param string $view - List or cover view
2018-02-02 09:50:58 -05:00
* @throws \Aviat\Ion\Di\ContainerException
* @throws \Aviat\Ion\Di\NotFoundException
* @throws \InvalidArgumentException
2015-10-06 11:38:20 -04:00
* @return void
*/
2018-02-02 09:50:58 -05:00
public function index($type = KitsuWatchingStatus::WATCHING, string $view = NULL): void
2015-05-22 12:36:26 -04:00
{
2018-02-02 09:50:58 -05:00
$title = array_key_exists($type, AnimeWatchingStatus::ROUTE_TO_TITLE)
2017-03-24 09:58:27 -04:00
? $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
AnimeWatchingStatus::ROUTE_TO_TITLE[$type]
)
: '';
2017-02-15 16:30:14 -05:00
$viewMap = [
'' => 'cover',
'list' => 'list'
];
2016-08-30 10:57:41 -04:00
$data = ($type !== 'all')
? $this->model->getList(AnimeWatchingStatus::ROUTE_TO_KITSU[$type])
2017-03-07 17:51:08 -05:00
: $this->model->getAllLists();
2016-04-05 13:19:35 -04:00
2017-02-15 16:30:14 -05:00
$this->outputHTML('anime/' . $viewMap[$view], [
2015-05-22 12:36:26 -04:00
'title' => $title,
'sections' => $data
]);
2015-05-22 12:36:26 -04:00
}
2015-05-27 09:03:42 -04:00
2016-01-04 10:53:03 -05:00
/**
* Form to add an anime
*
2018-02-02 09:50:58 -05:00
* @throws \Aviat\Ion\Di\ContainerException
* @throws \Aviat\Ion\Di\NotFoundException
* @throws \Aura\Router\Exception\RouteNotFound
* @throws \InvalidArgumentException
2016-01-04 10:53:03 -05:00
* @return void
*/
2018-02-02 09:50:58 -05:00
public function addForm(): void
2016-01-04 10:53:03 -05:00
{
2017-02-16 14:30:06 -05:00
$this->setSessionRedirect();
2016-01-04 10:53:03 -05:00
$this->outputHTML('anime/add', [
2017-03-24 09:58:27 -04:00
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Add'
),
2017-03-30 16:16:40 -04:00
'action_url' => $this->url->generate('anime.add.post'),
'status_list' => AnimeWatchingStatus::KITSU_TO_TITLE
2016-01-04 10:53:03 -05:00
]);
}
/**
* Add an anime to the list
*
2018-02-02 09:50:58 -05:00
* @throws \Aviat\Ion\Di\ContainerException
* @throws \Aviat\Ion\Di\NotFoundException
2016-01-04 10:53:03 -05:00
* @return void
*/
2018-02-02 09:50:58 -05:00
public function add(): void
2016-01-04 10:53:03 -05:00
{
$data = $this->request->getParsedBody();
if (empty($data['mal_id']))
{
unset($data['mal_id']);
}
2016-01-04 10:53:03 -05:00
if ( ! array_key_exists('id', $data))
{
$this->redirect('anime/add', 303);
2016-01-04 10:53:03 -05:00
}
$result = $this->model->createLibraryItem($data);
2016-01-04 10:53:03 -05:00
if ($result)
2016-01-04 10:53:03 -05:00
{
2017-02-17 08:25:19 -05:00
$this->setFlashMessage('Added new anime to list', 'success');
2017-01-16 11:26:19 -05:00
$this->cache->clear();
2016-01-04 10:53:03 -05:00
}
else
{
2017-02-17 08:25:19 -05:00
$this->setFlashMessage('Failed to add new anime to list', 'error');
2016-01-04 10:53:03 -05:00
}
2017-02-16 14:30:06 -05:00
$this->sessionRedirect();
2016-01-04 10:53:03 -05:00
}
/**
* Form to edit details about a series
*
* @param string $id
2016-01-04 10:53:03 -05:00
* @param string $status
*/
public function edit(string $id, $status = 'all'): void
2016-01-04 10:53:03 -05:00
{
2018-01-16 14:58:07 -05:00
$item = $this->model->getLibraryItem($id);
2017-02-16 14:30:06 -05:00
$this->setSessionRedirect();
2016-01-04 10:53:03 -05:00
$this->outputHTML('anime/edit', [
2017-03-24 09:58:27 -04:00
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Edit'
),
2016-01-04 10:53:03 -05:00
'item' => $item,
'statuses' => AnimeWatchingStatus::KITSU_TO_TITLE,
2017-03-30 16:16:40 -04:00
'action' => $this->url->generate('update.post', [
'controller' => 'anime'
]),
2016-01-04 10:53:03 -05:00
]);
}
2015-10-20 16:41:51 -04:00
/**
* Search for anime
*
* @return void
*/
2018-02-02 09:50:58 -05:00
public function search(): void
2015-10-20 16:41:51 -04:00
{
$queryParams = $this->request->getQueryParams();
$query = $queryParams['query'];
2015-10-20 16:41:51 -04:00
$this->outputJSON($this->model->search($query));
}
2016-01-04 10:53:03 -05:00
/**
* Update an anime item via a form submission
*
2018-02-02 09:50:58 -05:00
* @throws \Aviat\Ion\Di\ContainerException
* @throws \Aviat\Ion\Di\NotFoundException
2016-01-04 10:53:03 -05:00
* @return void
*/
2018-02-02 09:50:58 -05:00
public function formUpdate(): void
2016-01-04 10:53:03 -05:00
{
$data = $this->request->getParsedBody();
2016-01-04 10:53:03 -05:00
// Do some minor data manipulation for
// large form-based updates
$transformer = new AnimeListTransformer();
2017-02-15 15:35:41 -05:00
$postData = $transformer->untransform($data);
2018-09-27 16:45:12 -04:00
$fullResult = $this->model->updateLibraryItem(new FormItem($postData));
2016-01-04 10:53:03 -05:00
2017-02-15 15:35:41 -05:00
if ($fullResult['statusCode'] === 200)
2016-01-04 10:53:03 -05:00
{
2018-01-16 14:58:07 -05:00
$this->setFlashMessage('Successfully updated.', 'success');
2017-01-16 11:26:19 -05:00
$this->cache->clear();
2016-01-04 10:53:03 -05:00
}
else
{
2017-02-17 08:25:19 -05:00
$this->setFlashMessage('Failed to update anime.', 'error');
2016-01-04 10:53:03 -05:00
}
2017-02-16 14:30:06 -05:00
$this->sessionRedirect();
2016-01-04 10:53:03 -05:00
}
/**
* Increase the watched count for an anime item
*
* @return void
*/
public function increment(): void
{
if (stripos($this->request->getHeader('content-type')[0], 'application/json') !== FALSE)
{
$data = Json::decode((string)$this->request->getBody());
}
else
{
$data = $this->request->getParsedBody();
}
2018-09-27 16:45:12 -04:00
$response = $this->model->incrementLibraryItem(new FormItem($data));
$this->cache->clear();
$this->outputJSON($response['body'], $response['statusCode']);
}
/**
* Remove an anime from the list
2016-08-30 10:57:41 -04:00
*
* @return void
*/
2018-02-02 09:50:58 -05:00
public function delete(): void
{
$body = $this->request->getParsedBody();
2017-02-04 15:18:34 -05:00
$response = $this->model->deleteLibraryItem($body['id'], $body['mal_id']);
if ($response === TRUE)
{
$this->setFlashMessage('Successfully deleted anime.', 'success');
2017-01-16 11:26:19 -05:00
$this->cache->clear();
}
else
{
2017-02-17 08:25:19 -05:00
$this->setFlashMessage('Failed to delete anime.', 'error');
}
2017-02-16 14:30:06 -05:00
$this->sessionRedirect();
}
/**
* View details of an anime
*
2017-02-15 15:35:41 -05:00
* @param string $animeId
2018-02-02 09:50:58 -05:00
* @throws \Aviat\Ion\Di\ContainerException
* @throws \Aviat\Ion\Di\NotFoundException
* @throws \InvalidArgumentException
* @return void
*/
2018-02-02 09:50:58 -05:00
public function details(string $animeId): void
{
$data = $this->model->getAnime($animeId);
2017-03-20 13:14:01 -04:00
$characters = [];
$staff = [];
if ($data->title === '')
{
2018-01-16 14:58:07 -05:00
$this->notFound(
$this->config->get('whose_list') .
"'s Anime List &middot; Anime &middot; " .
'Anime not found',
'Anime Not Found'
);
2018-01-16 14:58:07 -05:00
return;
}
if (array_key_exists('characters', $data['included']))
2017-03-20 13:14:01 -04:00
{
foreach($data['included']['characters'] as $id => $character)
2017-03-20 13:14:01 -04:00
{
$characters[$id] = $character['attributes'];
2017-03-20 13:14:01 -04:00
}
}
if (array_key_exists('mediaStaff', $data['included']))
{
foreach ($data['included']['mediaStaff'] as $id => $person)
{
$personDetails = [];
foreach ($person['relationships']['person']['people'] as $p)
{
$personDetails = $p['attributes'];
}
$role = $person['attributes']['role'];
if ( ! array_key_exists($role, $staff))
{
$staff[$role] = [];
}
$staff[$role][$id] = [
'name' => $personDetails['name'] ?? '??',
'image' => $personDetails['image'],
];
}
}
uasort($characters, function ($a, $b) {
return $a['name'] <=> $b['name'];
});
// dump($characters);
// dump($staff);
$this->outputHTML('anime/details', [
2017-03-24 10:59:07 -04:00
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime List",
'Anime',
$data->title
2017-03-24 10:59:07 -04:00
),
2017-03-20 13:14:01 -04:00
'characters' => $characters,
'show_data' => $data,
'staff' => $staff,
]);
}
2018-02-02 09:50:58 -05:00
/**
* Find anime matching the selected genre
*
* @param string $genre
*/
public function genre(string $genre): void
{
// @TODO: implement
}
2015-05-22 12:36:26 -04:00
}
2015-10-14 09:20:52 -04:00
// End of AnimeController.php