2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2015-11-16 11:40:01 -05:00
|
|
|
*
|
2016-12-20 12:58:37 -05:00
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
2015-11-16 11:40:01 -05:00
|
|
|
*
|
2016-10-20 22:09:36 -04:00
|
|
|
* PHP version 7
|
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>
|
2017-01-11 10:30:53 -05:00
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
2016-08-30 10:01:18 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2016-12-20 12:58:37 -05:00
|
|
|
* @version 4.0
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Controller;
|
2015-09-14 10:54:50 -04:00
|
|
|
|
2015-09-15 13:19:29 -04:00
|
|
|
use Aviat\AnimeClient\Controller as BaseController;
|
2017-03-01 20:51:40 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\{
|
|
|
|
Enum\AnimeWatchingStatus as KitsuWatchingStatus,
|
|
|
|
Transformer\AnimeListTransformer
|
|
|
|
};
|
|
|
|
use Aviat\AnimeClient\API\Mapping\AnimeWatchingStatus;
|
2016-10-20 22:32:17 -04:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
2017-01-06 21:39:01 -05:00
|
|
|
use Aviat\Ion\Json;
|
2016-12-21 12:46:20 -05:00
|
|
|
use Aviat\Ion\StringWrapper;
|
2015-06-26 16:39:10 -04:00
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
/**
|
|
|
|
* Controller for Anime-related pages
|
|
|
|
*/
|
2015-09-14 10:54:50 -04:00
|
|
|
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
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
/**
|
|
|
|
* The anime list model
|
|
|
|
* @var object $model
|
|
|
|
*/
|
2015-06-24 20:57:20 -04:00
|
|
|
protected $model;
|
2015-06-11 16:44:52 -04:00
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2016-12-22 21:36:23 -05:00
|
|
|
* Data to be sent to all routes in this controller
|
2017-02-15 11:30:16 -05:00
|
|
|
* @var array $baseData
|
2015-06-16 11:11:35 -04:00
|
|
|
*/
|
2017-02-15 11:30:16 -05:00
|
|
|
protected $baseData;
|
2016-04-14 15:16:13 -04:00
|
|
|
|
2016-04-05 13:19:35 -04:00
|
|
|
/**
|
|
|
|
* Data cache
|
2017-02-22 14:46:35 -05:00
|
|
|
* @var \Psr\Cache\CachePoolInterface
|
2016-04-05 13:19:35 -04:00
|
|
|
*/
|
|
|
|
protected $cache;
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
/**
|
|
|
|
* Constructor
|
2015-09-16 12:25:35 -04:00
|
|
|
*
|
2015-10-06 10:24:48 -04:00
|
|
|
* @param ContainerInterface $container
|
2015-06-11 16:44:52 -04:00
|
|
|
*/
|
2015-09-17 23:11:18 -04:00
|
|
|
public function __construct(ContainerInterface $container)
|
2015-05-22 12:36:26 -04:00
|
|
|
{
|
2015-09-14 10:54:50 -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',
|
2015-06-16 11:11:35 -04:00
|
|
|
'url_type' => 'anime',
|
|
|
|
'other_type' => 'manga',
|
2015-07-02 14:04:04 -04:00
|
|
|
'config' => $this->config,
|
2015-09-14 15:49:20 -04:00
|
|
|
]);
|
2016-04-14 15:16:13 -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
|
|
|
|
*
|
2016-12-22 21:36:23 -05:00
|
|
|
* @param string|int $type - The section of the list
|
2015-10-06 11:38:20 -04:00
|
|
|
* @param string $view - List or cover view
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-03-01 20:51:40 -05:00
|
|
|
public function index($type = KitsuWatchingStatus::WATCHING, string $view = NULL)
|
2015-05-22 12:36:26 -04:00
|
|
|
{
|
2017-03-01 20:51:40 -05:00
|
|
|
$title = (array_key_exists($type, AnimeWatchingStatus::ROUTE_TO_TITLE))
|
2016-04-06 12:11:07 -04:00
|
|
|
? $this->config->get('whose_list') .
|
2017-03-01 20:51:40 -05:00
|
|
|
"'s Anime List · " . AnimeWatchingStatus::ROUTE_TO_TITLE[$type]
|
2016-04-06 12:11:07 -04:00
|
|
|
: '';
|
2015-09-16 12:25:35 -04:00
|
|
|
|
2017-02-15 16:30:14 -05:00
|
|
|
$viewMap = [
|
2015-06-16 11:11:35 -04:00
|
|
|
'' => 'cover',
|
|
|
|
'list' => 'list'
|
|
|
|
];
|
2016-04-14 15:16:13 -04:00
|
|
|
|
2016-08-30 10:57:41 -04:00
|
|
|
$data = ($type !== 'all')
|
2017-03-01 20:51:40 -05:00
|
|
|
? $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-06-24 16:01:35 -04:00
|
|
|
]);
|
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
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-02-15 15:35:41 -05:00
|
|
|
public function addForm()
|
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', [
|
|
|
|
'title' => $this->config->get('whose_list') .
|
|
|
|
"'s Anime List · Add",
|
|
|
|
'action_url' => $this->urlGenerator->url('anime/add'),
|
2017-03-01 20:51:40 -05:00
|
|
|
'status_list' => AnimeWatchingStatus::KITSU_TO_TITLE
|
2016-01-04 10:53:03 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an anime to the list
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function add()
|
|
|
|
{
|
2016-02-17 11:36:37 -05:00
|
|
|
$data = $this->request->getParsedBody();
|
2016-01-04 10:53:03 -05:00
|
|
|
if ( ! array_key_exists('id', $data))
|
|
|
|
{
|
|
|
|
$this->redirect("anime/add", 303);
|
|
|
|
}
|
|
|
|
|
2017-01-10 12:35:46 -05:00
|
|
|
$result = $this->model->createLibraryItem($data);
|
2016-01-04 10:53:03 -05:00
|
|
|
|
2017-01-10 12:35:46 -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 int $id
|
|
|
|
* @param string $status
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-01-04 11:15:25 -05:00
|
|
|
public function edit($id, $status = "all")
|
2016-01-04 10:53:03 -05:00
|
|
|
{
|
2017-01-05 13:41:32 -05:00
|
|
|
$item = $this->model->getLibraryItem($id, $status);
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->setSessionRedirect();
|
2016-01-04 10:53:03 -05:00
|
|
|
|
|
|
|
$this->outputHTML('anime/edit', [
|
|
|
|
'title' => $this->config->get('whose_list') .
|
|
|
|
"'s Anime List · Edit",
|
|
|
|
'item' => $item,
|
2017-03-01 20:51:40 -05:00
|
|
|
'statuses' => AnimeWatchingStatus::KITSU_TO_TITLE,
|
2016-01-04 10:53:03 -05:00
|
|
|
'action' => $this->container->get('url-generator')
|
|
|
|
->url('/anime/update_form'),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-10-20 16:41:51 -04:00
|
|
|
/**
|
|
|
|
* Search for anime
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function search()
|
|
|
|
{
|
2016-04-05 12:06:07 -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
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-02-15 15:35:41 -05:00
|
|
|
public function formUpdate()
|
2016-01-04 10:53:03 -05:00
|
|
|
{
|
2016-03-29 11:30:51 -04: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);
|
|
|
|
$fullResult = $this->model->updateLibraryItem($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
|
|
|
{
|
2017-02-17 08:25:19 -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
|
|
|
}
|
|
|
|
|
2015-06-17 08:50:01 -04:00
|
|
|
/**
|
2015-06-24 16:01:35 -04:00
|
|
|
* Update an anime item
|
2016-08-30 10:57:41 -04:00
|
|
|
*
|
|
|
|
* @return void
|
2015-06-17 08:50:01 -04:00
|
|
|
*/
|
2015-06-24 16:01:35 -04:00
|
|
|
public function update()
|
2015-06-17 08:50:01 -04:00
|
|
|
{
|
2017-01-06 21:39:01 -05:00
|
|
|
if ($this->request->getHeader('content-type')[0] === 'application/json')
|
|
|
|
{
|
2017-03-01 20:51:40 -05:00
|
|
|
$data = Json::decode((string)$this->request->getBody());
|
2017-01-06 21:39:01 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$data = $this->request->getParsedBody();
|
|
|
|
}
|
|
|
|
|
2017-02-04 15:18:34 -05:00
|
|
|
$response = $this->model->updateLibraryItem($data, $data);
|
2017-01-06 21:39:01 -05:00
|
|
|
|
2017-01-16 11:26:19 -05:00
|
|
|
$this->cache->clear();
|
2016-02-02 11:34:03 -05:00
|
|
|
$this->outputJSON($response['body'], $response['statusCode']);
|
2015-06-17 08:50:01 -04:00
|
|
|
}
|
2016-01-20 13:01:41 -05:00
|
|
|
|
2016-02-02 21:28:32 -05:00
|
|
|
/**
|
|
|
|
* Remove an anime from the list
|
2016-08-30 10:57:41 -04:00
|
|
|
*
|
|
|
|
* @return void
|
2016-02-02 21:28:32 -05:00
|
|
|
*/
|
|
|
|
public function delete()
|
|
|
|
{
|
2017-01-09 20:36:48 -05:00
|
|
|
$body = $this->request->getParsedBody();
|
2017-02-04 15:18:34 -05:00
|
|
|
$response = $this->model->deleteLibraryItem($body['id'], $body['mal_id']);
|
2016-04-14 15:16:13 -04:00
|
|
|
|
2017-01-09 20:36:48 -05:00
|
|
|
if ((bool)$response === TRUE)
|
2016-04-14 15:16:13 -04:00
|
|
|
{
|
2017-02-17 08:25:19 -05:00
|
|
|
$this->setFlashMessage("Successfully deleted anime.", 'success');
|
2017-01-16 11:26:19 -05:00
|
|
|
$this->cache->clear();
|
2016-04-14 15:16:13 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-17 08:25:19 -05:00
|
|
|
$this->setFlashMessage('Failed to delete anime.', 'error');
|
2016-04-14 15:16:13 -04:00
|
|
|
}
|
|
|
|
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->sessionRedirect();
|
2016-02-02 21:28:32 -05:00
|
|
|
}
|
|
|
|
|
2016-01-20 13:01:41 -05:00
|
|
|
/**
|
|
|
|
* View details of an anime
|
|
|
|
*
|
2017-02-15 15:35:41 -05:00
|
|
|
* @param string $animeId
|
2016-01-20 13:01:41 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
2017-03-01 20:51:40 -05:00
|
|
|
public function details(string $animeId)
|
2016-01-20 13:01:41 -05:00
|
|
|
{
|
2017-02-15 15:35:41 -05:00
|
|
|
$data = $this->model->getAnime($animeId);
|
2016-01-20 13:01:41 -05:00
|
|
|
|
|
|
|
$this->outputHTML('anime/details', [
|
2017-01-05 22:24:45 -05:00
|
|
|
'title' => 'Anime · ' . $data['titles'][0],
|
2016-01-20 13:01:41 -05:00
|
|
|
'data' => $data,
|
|
|
|
]);
|
|
|
|
}
|
2016-03-29 11:30:51 -04:00
|
|
|
|
2015-05-22 12:36:26 -04:00
|
|
|
}
|
2015-10-14 09:20:52 -04:00
|
|
|
// End of AnimeController.php
|