272 lines
5.8 KiB
PHP
272 lines
5.8 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://github.com/timw4mail/HummingBirdAnimeClient
|
|
*/
|
|
|
|
namespace Aviat\AnimeClient\Controller;
|
|
|
|
use Aviat\AnimeClient\Controller as BaseController;
|
|
use Aviat\AnimeClient\API\Kitsu\{
|
|
Enum\AnimeWatchingStatus as KitsuWatchingStatus,
|
|
Transformer\AnimeListTransformer
|
|
};
|
|
use Aviat\AnimeClient\API\Mapping\AnimeWatchingStatus;
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
use Aviat\Ion\Json;
|
|
use Aviat\Ion\StringWrapper;
|
|
|
|
/**
|
|
* Controller for Anime-related pages
|
|
*/
|
|
class Anime extends BaseController {
|
|
|
|
use StringWrapper;
|
|
|
|
/**
|
|
* The anime list model
|
|
* @var object $model
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* Data to be sent to all routes in this controller
|
|
* @var array $baseData
|
|
*/
|
|
protected $baseData;
|
|
|
|
/**
|
|
* Data cache
|
|
* @var \Psr\Cache\CachePoolInterface
|
|
*/
|
|
protected $cache;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param ContainerInterface $container
|
|
*/
|
|
public function __construct(ContainerInterface $container)
|
|
{
|
|
parent::__construct($container);
|
|
|
|
$this->model = $container->get('anime-model');
|
|
|
|
$this->baseData = array_merge($this->baseData, [
|
|
'menu_name' => 'anime_list',
|
|
'url_type' => 'anime',
|
|
'other_type' => 'manga',
|
|
'config' => $this->config,
|
|
]);
|
|
|
|
$this->cache = $container->get('cache');
|
|
}
|
|
|
|
/**
|
|
* Show a portion, or all of the anime list
|
|
*
|
|
* @param string|int $type - The section of the list
|
|
* @param string $view - List or cover view
|
|
* @return void
|
|
*/
|
|
public function index($type = KitsuWatchingStatus::WATCHING, string $view = NULL)
|
|
{
|
|
$title = (array_key_exists($type, AnimeWatchingStatus::ROUTE_TO_TITLE))
|
|
? $this->config->get('whose_list') .
|
|
"'s Anime List · " . AnimeWatchingStatus::ROUTE_TO_TITLE[$type]
|
|
: '';
|
|
|
|
$viewMap = [
|
|
'' => 'cover',
|
|
'list' => 'list'
|
|
];
|
|
|
|
$data = ($type !== 'all')
|
|
? $this->model->getList(AnimeWatchingStatus::ROUTE_TO_KITSU[$type])
|
|
: $this->model->getAllLists();
|
|
|
|
$this->outputHTML('anime/' . $viewMap[$view], [
|
|
'title' => $title,
|
|
'sections' => $data
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Form to add an anime
|
|
*
|
|
* @return void
|
|
*/
|
|
public function addForm()
|
|
{
|
|
$this->setSessionRedirect();
|
|
$this->outputHTML('anime/add', [
|
|
'title' => $this->config->get('whose_list') .
|
|
"'s Anime List · Add",
|
|
'action_url' => $this->urlGenerator->url('anime/add'),
|
|
'status_list' => AnimeWatchingStatus::KITSU_TO_TITLE
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Add an anime to the list
|
|
*
|
|
* @return void
|
|
*/
|
|
public function add()
|
|
{
|
|
$data = $this->request->getParsedBody();
|
|
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
|
|
*
|
|
* @param int $id
|
|
* @param string $status
|
|
* @return void
|
|
*/
|
|
public function edit($id, $status = "all")
|
|
{
|
|
$item = $this->model->getLibraryItem($id, $status);
|
|
$this->setSessionRedirect();
|
|
|
|
$this->outputHTML('anime/edit', [
|
|
'title' => $this->config->get('whose_list') .
|
|
"'s Anime List · Edit",
|
|
'item' => $item,
|
|
'statuses' => AnimeWatchingStatus::KITSU_TO_TITLE,
|
|
'action' => $this->container->get('url-generator')
|
|
->url('/anime/update_form'),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Search for anime
|
|
*
|
|
* @return void
|
|
*/
|
|
public function search()
|
|
{
|
|
$queryParams = $this->request->getQueryParams();
|
|
$query = $queryParams['query'];
|
|
$this->outputJSON($this->model->search($query));
|
|
}
|
|
|
|
/**
|
|
* Update an anime item via a form submission
|
|
*
|
|
* @return void
|
|
*/
|
|
public function formUpdate()
|
|
{
|
|
$data = $this->request->getParsedBody();
|
|
|
|
// Do some minor data manipulation for
|
|
// large form-based updates
|
|
$transformer = new AnimeListTransformer();
|
|
$postData = $transformer->untransform($data);
|
|
$fullResult = $this->model->updateLibraryItem($postData);
|
|
|
|
if ($fullResult['statusCode'] === 200)
|
|
{
|
|
$this->setFlashMessage("Successfully updated.", 'success');
|
|
$this->cache->clear();
|
|
}
|
|
else
|
|
{
|
|
$this->setFlashMessage('Failed to update anime.', 'error');
|
|
}
|
|
|
|
$this->sessionRedirect();
|
|
}
|
|
|
|
/**
|
|
* Update an anime item
|
|
*
|
|
* @return void
|
|
*/
|
|
public function update()
|
|
{
|
|
if ($this->request->getHeader('content-type')[0] === 'application/json')
|
|
{
|
|
$data = Json::decode((string)$this->request->getBody());
|
|
}
|
|
else
|
|
{
|
|
$data = $this->request->getParsedBody();
|
|
}
|
|
|
|
$response = $this->model->updateLibraryItem($data, $data);
|
|
|
|
$this->cache->clear();
|
|
$this->outputJSON($response['body'], $response['statusCode']);
|
|
}
|
|
|
|
/**
|
|
* Remove an anime from the list
|
|
*
|
|
* @return void
|
|
*/
|
|
public function delete()
|
|
{
|
|
$body = $this->request->getParsedBody();
|
|
$response = $this->model->deleteLibraryItem($body['id'], $body['mal_id']);
|
|
|
|
if ((bool)$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
|
|
*
|
|
* @param string $animeId
|
|
* @return void
|
|
*/
|
|
public function details(string $animeId)
|
|
{
|
|
$data = $this->model->getAnime($animeId);
|
|
|
|
$this->outputHTML('anime/details', [
|
|
'title' => 'Anime · ' . $data['titles'][0],
|
|
'data' => $data,
|
|
]);
|
|
}
|
|
|
|
}
|
|
// End of AnimeController.php
|