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
|
|
|
*
|
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
|
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;
|
2017-03-01 22:07:51 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Transformer\MangaListTransformer;
|
2017-03-01 21:52:30 -05:00
|
|
|
use Aviat\AnimeClient\API\Mapping\MangaReadingStatus;
|
2016-10-20 22:32:17 -04:00
|
|
|
use Aviat\AnimeClient\Model\Manga as MangaModel;
|
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;
|
2016-12-20 12:58:37 -05:00
|
|
|
use Aviat\Ion\{Json, StringWrapper};
|
2015-06-16 11:11:35 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller for manga list
|
|
|
|
*/
|
2018-08-08 10:12:45 -04:00
|
|
|
final class Manga extends Controller {
|
2015-06-16 11:11:35 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The manga model
|
2016-04-14 17:00:34 -04:00
|
|
|
* @var MangaModel $model
|
2015-06-16 11:11:35 -04:00
|
|
|
*/
|
2015-06-24 16:01:35 -04:00
|
|
|
protected $model;
|
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
|
|
|
* Constructor
|
2015-09-14 19:54:34 -04:00
|
|
|
*
|
2015-10-06 10:24:48 -04:00
|
|
|
* @param ContainerInterface $container
|
2018-02-02 09:50:58 -05:00
|
|
|
* @throws \Aviat\Ion\Di\ContainerException
|
|
|
|
* @throws \Aviat\Ion\Di\NotFoundException
|
2015-06-16 11:11:35 -04:00
|
|
|
*/
|
2015-09-17 23:11:18 -04:00
|
|
|
public function __construct(ContainerInterface $container)
|
2015-06-16 11:11:35 -04:00
|
|
|
{
|
2015-09-14 10:54:50 -04:00
|
|
|
parent::__construct($container);
|
2015-10-20 16:41:51 -04:00
|
|
|
|
2015-12-08 16:39:49 -05:00
|
|
|
$this->model = $container->get('manga-model');
|
2017-02-15 11:30:16 -05:00
|
|
|
$this->baseData = array_merge($this->baseData, [
|
2015-10-09 14:34:55 -04:00
|
|
|
'menu_name' => 'manga_list',
|
2018-12-21 15:52:34 -05:00
|
|
|
'other_type' => 'anime',
|
2015-06-24 16:01:35 -04:00
|
|
|
'url_type' => 'manga',
|
2015-09-14 15:49:20 -04:00
|
|
|
]);
|
2015-06-24 16:01:35 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 11:38:20 -04:00
|
|
|
/**
|
|
|
|
* Get a section of the manga list
|
|
|
|
*
|
|
|
|
* @param string $status
|
|
|
|
* @param string $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($status = 'all', $view = ''): void
|
2015-06-16 11:11:35 -04:00
|
|
|
{
|
2019-04-01 16:17:40 -04:00
|
|
|
if ( ! in_array($status, [
|
2019-01-29 15:12:31 -05:00
|
|
|
'all',
|
|
|
|
'reading',
|
|
|
|
'plan_to_read',
|
|
|
|
'dropped',
|
|
|
|
'on_hold',
|
|
|
|
'completed',
|
|
|
|
], TRUE))
|
|
|
|
{
|
|
|
|
$this->errorPage(404, 'Not Found', 'Page not found');
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:52:30 -05:00
|
|
|
$statusTitle = MangaReadingStatus::ROUTE_TO_TITLE[$status];
|
2015-09-16 12:25:35 -04:00
|
|
|
|
2017-03-24 09:58:27 -04:00
|
|
|
$title = $this->formatTitle(
|
|
|
|
$this->config->get('whose_list') . "'s Manga List",
|
|
|
|
$statusTitle
|
|
|
|
);
|
2015-09-16 12:25:35 -04:00
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
$view_map = [
|
|
|
|
'' => 'cover',
|
|
|
|
'list' => 'list'
|
|
|
|
];
|
|
|
|
|
|
|
|
$data = ($status !== 'all')
|
2017-03-01 21:52:30 -05:00
|
|
|
? [ $statusTitle => $this->model->getList($statusTitle) ]
|
2017-01-05 13:41:32 -05:00
|
|
|
: $this->model->getList('All');
|
2015-06-16 11:11:35 -04:00
|
|
|
|
|
|
|
$this->outputHTML('manga/' . $view_map[$view], [
|
|
|
|
'title' => $title,
|
2015-09-17 23:11:18 -04:00
|
|
|
'sections' => $data,
|
2015-06-16 11:11:35 -04:00
|
|
|
]);
|
|
|
|
}
|
2015-10-20 16:41:51 -04:00
|
|
|
|
2016-02-02 11:34:03 -05:00
|
|
|
/**
|
|
|
|
* Form to add an manga
|
|
|
|
*
|
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-02-02 11:34:03 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function addForm(): void
|
2016-02-02 11:34:03 -05:00
|
|
|
{
|
2019-01-29 15:12:31 -05:00
|
|
|
$this->checkAuth();
|
2019-01-29 16:01:31 -05:00
|
|
|
|
2017-03-29 14:25:03 -04:00
|
|
|
$statuses = MangaReadingStatus::KITSU_TO_TITLE;
|
2016-02-02 11:34:03 -05:00
|
|
|
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->setSessionRedirect();
|
2016-02-02 11:34:03 -05:00
|
|
|
$this->outputHTML('manga/add', [
|
2017-03-24 09:58:27 -04:00
|
|
|
'title' => $this->formatTitle(
|
|
|
|
$this->config->get('whose_list') . "'s Manga List",
|
|
|
|
'Add'
|
|
|
|
),
|
2017-03-30 16:16:40 -04:00
|
|
|
'action_url' => $this->url->generate('manga.add.post'),
|
2016-02-02 11:34:03 -05:00
|
|
|
'status_list' => $statuses
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an manga to the list
|
|
|
|
*
|
2018-02-02 09:50:58 -05:00
|
|
|
* @throws \Aviat\Ion\Di\ContainerException
|
|
|
|
* @throws \Aviat\Ion\Di\NotFoundException
|
2016-02-02 11:34:03 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function add(): void
|
2016-02-02 11:34:03 -05:00
|
|
|
{
|
2019-01-29 15:12:31 -05:00
|
|
|
$this->checkAuth();
|
2019-01-29 16:01:31 -05:00
|
|
|
|
2016-02-17 11:36:37 -05:00
|
|
|
$data = $this->request->getParsedBody();
|
2016-02-02 11:34:03 -05:00
|
|
|
if ( ! array_key_exists('id', $data))
|
|
|
|
{
|
2018-02-02 09:50:58 -05:00
|
|
|
$this->redirect('manga/add', 303);
|
2016-02-02 11:34:03 -05:00
|
|
|
}
|
|
|
|
|
2018-09-26 22:31:04 -04:00
|
|
|
if (empty($data['mal_id']))
|
|
|
|
{
|
|
|
|
unset($data['mal_id']);
|
|
|
|
}
|
|
|
|
|
2017-01-10 12:35:46 -05:00
|
|
|
$result = $this->model->createLibraryItem($data);
|
2016-02-02 11:34:03 -05:00
|
|
|
|
2017-01-10 12:35:46 -05:00
|
|
|
if ($result)
|
2016-02-02 11:34:03 -05:00
|
|
|
{
|
2017-02-21 15:37:29 -05:00
|
|
|
$this->setFlashMessage('Added new manga to list', 'success');
|
2017-01-16 11:26:19 -05:00
|
|
|
$this->cache->clear();
|
2016-02-02 11:34:03 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-21 15:37:29 -05:00
|
|
|
$this->setFlashMessage('Failed to add new manga to list' . $result['body'], 'error');
|
2016-02-02 11:34:03 -05:00
|
|
|
}
|
|
|
|
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->sessionRedirect();
|
2016-02-02 11:34:03 -05:00
|
|
|
}
|
|
|
|
|
2016-01-04 16:58:33 -05:00
|
|
|
/**
|
|
|
|
* Show the manga edit form
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param string $status
|
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 16:58:33 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function edit($id, $status = 'All'): void
|
2016-01-04 16:58:33 -05:00
|
|
|
{
|
2019-01-29 15:12:31 -05:00
|
|
|
$this->checkAuth();
|
2019-01-29 16:01:31 -05:00
|
|
|
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->setSessionRedirect();
|
2017-01-05 22:24:45 -05:00
|
|
|
$item = $this->model->getLibraryItem($id);
|
2017-03-24 09:58:27 -04:00
|
|
|
$title = $this->formatTitle(
|
|
|
|
$this->config->get('whose_list') . "'s Manga List",
|
|
|
|
'Edit'
|
|
|
|
);
|
2016-01-04 16:58:33 -05:00
|
|
|
|
|
|
|
$this->outputHTML('manga/edit', [
|
|
|
|
'title' => $title,
|
2017-03-01 21:52:30 -05:00
|
|
|
'status_list' => MangaReadingStatus::KITSU_TO_TITLE,
|
2016-01-04 16:58:33 -05:00
|
|
|
'item' => $item,
|
2017-03-30 16:16:40 -04:00
|
|
|
'action' => $this->url->generate('update.post', [
|
|
|
|
'controller' => 'manga'
|
|
|
|
]),
|
2016-01-04 16:58:33 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-02-02 11:34:03 -05:00
|
|
|
/**
|
|
|
|
* Search for a manga to add to the list
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function search(): void
|
2016-08-30 10:57:41 -04:00
|
|
|
{
|
2018-09-26 22:31:04 -04:00
|
|
|
$queryParams = $this->request->getQueryParams();
|
|
|
|
$query = $queryParams['query'];
|
|
|
|
$this->outputJSON($this->model->search($query));
|
2016-08-30 10:57:41 -04:00
|
|
|
}
|
2016-02-02 11:34:03 -05:00
|
|
|
|
2016-01-04 16:58:33 -05:00
|
|
|
/**
|
2017-01-09 20:36:48 -05:00
|
|
|
* Update an manga item via a form submission
|
2016-01-04 16:58:33 -05:00
|
|
|
*
|
2018-02-02 09:50:58 -05:00
|
|
|
* @throws \Aviat\Ion\Di\ContainerException
|
|
|
|
* @throws \Aviat\Ion\Di\NotFoundException
|
2016-01-04 16:58:33 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function formUpdate(): void
|
2016-01-04 16:58:33 -05:00
|
|
|
{
|
2019-01-29 15:12:31 -05:00
|
|
|
$this->checkAuth();
|
2019-01-29 16:01:31 -05:00
|
|
|
|
2017-01-09 20:36:48 -05:00
|
|
|
$data = $this->request->getParsedBody();
|
2016-01-04 16:58:33 -05:00
|
|
|
|
|
|
|
// Do some minor data manipulation for
|
|
|
|
// large form-based updates
|
|
|
|
$transformer = new MangaListTransformer();
|
2017-01-09 20:36:48 -05:00
|
|
|
$post_data = $transformer->untransform($data);
|
2018-09-27 16:45:12 -04:00
|
|
|
$full_result = $this->model->updateLibraryItem(new FormItem($post_data));
|
2016-01-04 16:58:33 -05:00
|
|
|
|
2017-01-09 20:36:48 -05:00
|
|
|
if ($full_result['statusCode'] === 200)
|
2016-01-04 16:58:33 -05:00
|
|
|
{
|
2017-02-21 15:37:29 -05:00
|
|
|
$this->setFlashMessage("Successfully updated manga.", 'success');
|
2017-01-16 11:26:19 -05:00
|
|
|
$this->cache->clear();
|
2016-01-04 16:58:33 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-21 15:37:29 -05:00
|
|
|
$this->setFlashMessage('Failed to update manga.', 'error');
|
2017-01-09 20:36:48 -05:00
|
|
|
|
2016-01-04 16:58:33 -05:00
|
|
|
}
|
|
|
|
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->sessionRedirect();
|
2016-01-04 16:58:33 -05:00
|
|
|
}
|
|
|
|
|
2015-10-20 16:41:51 -04:00
|
|
|
/**
|
2018-09-26 22:31:04 -04:00
|
|
|
* Increment the progress of a manga item
|
2015-10-20 16:41:51 -04:00
|
|
|
*/
|
2018-09-26 22:31:04 -04:00
|
|
|
public function increment(): void
|
2015-10-20 16:41:51 -04:00
|
|
|
{
|
2019-01-29 15:12:31 -05:00
|
|
|
$this->checkAuth();
|
|
|
|
|
2017-03-29 14:00:57 -04:00
|
|
|
if (stripos($this->request->getHeader('content-type')[0], 'application/json') !== FALSE)
|
2017-01-09 20:36:48 -05:00
|
|
|
{
|
2017-03-01 22:07:51 -05:00
|
|
|
$data = Json::decode((string)$this->request->getBody());
|
2017-01-09 20:36:48 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$data = $this->request->getParsedBody();
|
|
|
|
}
|
|
|
|
|
2018-09-27 16:45:12 -04:00
|
|
|
$response = $this->model->incrementLibraryItem(new FormItem($data));
|
2017-01-09 20:36:48 -05:00
|
|
|
|
2017-01-16 11:26:19 -05:00
|
|
|
$this->cache->clear();
|
2017-01-09 20:36:48 -05:00
|
|
|
$this->outputJSON($response['body'], $response['statusCode']);
|
2015-10-20 16:41:51 -04:00
|
|
|
}
|
2016-04-14 17:00:34 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove an manga from the list
|
2016-08-30 10:57:41 -04:00
|
|
|
*
|
2018-02-02 09:50:58 -05:00
|
|
|
* @throws \Aviat\Ion\Di\ContainerException
|
|
|
|
* @throws \Aviat\Ion\Di\NotFoundException
|
2016-08-30 10:57:41 -04:00
|
|
|
* @return void
|
2016-04-14 17:00:34 -04:00
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function delete(): void
|
2016-04-14 17:00:34 -04:00
|
|
|
{
|
2019-01-29 15:12:31 -05:00
|
|
|
$this->checkAuth();
|
|
|
|
|
2017-01-10 12:35:46 -05:00
|
|
|
$body = $this->request->getParsedBody();
|
2018-09-26 22:31:04 -04:00
|
|
|
$response = $this->model->deleteLibraryItem($body['id'], $body['mal_id']);
|
2016-04-14 17:00:34 -04:00
|
|
|
|
2017-01-10 12:35:46 -05:00
|
|
|
if ($response)
|
2016-04-14 17:00:34 -04:00
|
|
|
{
|
2018-09-26 22:31:04 -04:00
|
|
|
$this->setFlashMessage('Successfully deleted manga.', 'success');
|
2017-01-16 11:26:19 -05:00
|
|
|
$this->cache->clear();
|
2016-04-14 17:00:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-21 15:37:29 -05:00
|
|
|
$this->setFlashMessage('Failed to delete manga.', 'error');
|
2016-04-14 17:00:34 -04:00
|
|
|
}
|
|
|
|
|
2017-02-16 14:30:06 -05:00
|
|
|
$this->sessionRedirect();
|
2016-04-14 17:00:34 -04:00
|
|
|
}
|
2016-04-14 17:51:00 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* View details of an manga
|
|
|
|
*
|
|
|
|
* @param string $manga_id
|
2018-02-02 09:50:58 -05:00
|
|
|
* @throws \Aviat\Ion\Di\ContainerException
|
|
|
|
* @throws \Aviat\Ion\Di\NotFoundException
|
|
|
|
* @throws \InvalidArgumentException
|
2016-04-14 17:51:00 -04:00
|
|
|
* @return void
|
|
|
|
*/
|
2018-02-02 09:50:58 -05:00
|
|
|
public function details($manga_id): void
|
2016-04-14 17:51:00 -04:00
|
|
|
{
|
2017-01-05 13:41:32 -05:00
|
|
|
$data = $this->model->getManga($manga_id);
|
2018-10-19 09:30:27 -04:00
|
|
|
$staff = [];
|
2017-03-24 10:59:07 -04:00
|
|
|
$characters = [];
|
|
|
|
|
2019-08-10 10:09:07 -04:00
|
|
|
if ($data->isEmpty())
|
2017-03-24 10:59:07 -04:00
|
|
|
{
|
2018-01-16 14:58:07 -05:00
|
|
|
$this->notFound(
|
2017-03-24 10:59:07 -04:00
|
|
|
$this->config->get('whose_list') .
|
|
|
|
"'s Manga List · Manga · " .
|
|
|
|
'Manga not found',
|
|
|
|
'Manga Not Found'
|
|
|
|
);
|
2018-01-16 14:58:07 -05:00
|
|
|
return;
|
2017-03-24 10:59:07 -04:00
|
|
|
}
|
|
|
|
|
2016-04-14 17:51:00 -04:00
|
|
|
$this->outputHTML('manga/details', [
|
2017-03-24 09:58:27 -04:00
|
|
|
'title' => $this->formatTitle(
|
|
|
|
$this->config->get('whose_list') . "'s Manga List",
|
|
|
|
'Manga',
|
|
|
|
$data['title']
|
|
|
|
),
|
2017-03-24 10:59:07 -04:00
|
|
|
'characters' => $characters,
|
2017-01-04 13:16:58 -05:00
|
|
|
'data' => $data,
|
2018-10-19 09:30:27 -04:00
|
|
|
'staff' => $staff,
|
2016-04-14 17:51:00 -04:00
|
|
|
]);
|
|
|
|
}
|
2018-02-02 09:50:58 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find manga matching the selected genre
|
|
|
|
*
|
|
|
|
* @param string $genre
|
|
|
|
*/
|
|
|
|
public function genre(string $genre): void
|
|
|
|
{
|
|
|
|
// @TODO: implement
|
|
|
|
}
|
2015-06-16 11:11:35 -04:00
|
|
|
}
|
2019-04-01 16:17:40 -04:00
|
|
|
// End of MangaController.php
|