2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2016-12-20 12:58:37 -05:00
|
|
|
* 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
|
|
|
*
|
2016-12-20 12:58:37 -05:00
|
|
|
* @package AnimeListClient
|
2016-08-30 10:01:18 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2016 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2016-12-20 12:58:37 -05:00
|
|
|
* @version 4.0
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2015-06-16 11:11:35 -04:00
|
|
|
*/
|
2016-10-20 22:09:36 -04:00
|
|
|
|
2015-09-14 19:54:34 -04: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-01-09 20:36:48 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu;
|
2016-12-20 12:58:37 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\MangaReadingStatus;
|
|
|
|
use Aviat\AnimeClient\API\Kitsu\Transformer\MangaListTransformer;
|
2016-10-20 22:32:17 -04:00
|
|
|
use Aviat\AnimeClient\Model\Manga as MangaModel;
|
|
|
|
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
|
|
|
|
*/
|
2015-09-14 10:54:50 -04:00
|
|
|
class Manga extends Controller {
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2016-12-20 12:58:37 -05:00
|
|
|
use StringWrapper;
|
2016-01-04 16:58:33 -05:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data to ve sent to all routes in this controller
|
|
|
|
* @var array $base_data
|
|
|
|
*/
|
|
|
|
protected $base_data;
|
|
|
|
|
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
|
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');
|
2015-09-14 15:49:20 -04:00
|
|
|
$this->base_data = array_merge($this->base_data, [
|
2015-10-09 14:34:55 -04:00
|
|
|
'menu_name' => 'manga_list',
|
2015-07-02 14:04:04 -04:00
|
|
|
'config' => $this->config,
|
2015-06-24 16:01:35 -04:00
|
|
|
'url_type' => 'manga',
|
2015-10-09 14:34:55 -04:00
|
|
|
'other_type' => 'anime'
|
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
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-10-06 10:24:48 -04:00
|
|
|
public function index($status = "all", $view = "")
|
2015-06-16 11:11:35 -04:00
|
|
|
{
|
2015-09-16 12:25:35 -04:00
|
|
|
$map = [
|
|
|
|
'all' => 'All',
|
2015-10-05 16:54:25 -04:00
|
|
|
'plan_to_read' => MangaModel::PLAN_TO_READ,
|
|
|
|
'reading' => MangaModel::READING,
|
|
|
|
'completed' => MangaModel::COMPLETED,
|
|
|
|
'dropped' => MangaModel::DROPPED,
|
|
|
|
'on_hold' => MangaModel::ON_HOLD
|
2015-09-16 12:25:35 -04:00
|
|
|
];
|
|
|
|
|
2015-10-06 11:38:20 -04:00
|
|
|
$title = $this->config->get('whose_list') . "'s Manga List · {$map[$status]}";
|
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-01-05 13:41:32 -05:00
|
|
|
? [$map[$status] => $this->model->getList($map[$status]) ]
|
|
|
|
: $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
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function add_form()
|
|
|
|
{
|
|
|
|
$raw_status_list = MangaReadingStatus::getConstList();
|
|
|
|
|
|
|
|
$statuses = [];
|
|
|
|
|
|
|
|
foreach ($raw_status_list as $status_item)
|
|
|
|
{
|
|
|
|
$statuses[$status_item] = (string)$this->string($status_item)
|
|
|
|
->underscored()
|
|
|
|
->humanize()
|
|
|
|
->titleize();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->set_session_redirect();
|
|
|
|
$this->outputHTML('manga/add', [
|
|
|
|
'title' => $this->config->get('whose_list') .
|
|
|
|
"'s Manga List · Add",
|
|
|
|
'action_url' => $this->urlGenerator->url('manga/add'),
|
|
|
|
'status_list' => $statuses
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an manga to the list
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function add()
|
|
|
|
{
|
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))
|
|
|
|
{
|
|
|
|
$this->redirect("manga/add", 303);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $this->model->add($data);
|
|
|
|
|
|
|
|
if ($result['statusCode'] >= 200 && $result['statusCode'] < 300)
|
|
|
|
{
|
|
|
|
$this->set_flash_message('Added new manga to list', 'success');
|
2016-04-07 13:11:45 -04:00
|
|
|
$this->cache->purge();
|
2016-02-02 11:34:03 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-02 21:38:38 -05:00
|
|
|
$this->set_flash_message('Failed to add new manga to list' . $result['body'], 'error');
|
2016-02-02 11:34:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->session_redirect();
|
|
|
|
}
|
|
|
|
|
2016-01-04 16:58:33 -05:00
|
|
|
/**
|
|
|
|
* Show the manga edit form
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param string $status
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function edit($id, $status = "All")
|
|
|
|
{
|
|
|
|
$this->set_session_redirect();
|
2017-01-05 22:24:45 -05:00
|
|
|
$item = $this->model->getLibraryItem($id);
|
2016-01-04 16:58:33 -05:00
|
|
|
$title = $this->config->get('whose_list') . "'s Manga List · Edit";
|
|
|
|
|
|
|
|
$this->outputHTML('manga/edit', [
|
|
|
|
'title' => $title,
|
2017-01-09 20:36:48 -05:00
|
|
|
'status_list' => Kitsu::getStatusToMangaSelectMap(),
|
2016-01-04 16:58:33 -05:00
|
|
|
'item' => $item,
|
|
|
|
'action' => $this->container->get('url-generator')
|
|
|
|
->url('/manga/update_form'),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-02-02 11:34:03 -05:00
|
|
|
/**
|
|
|
|
* Search for a manga to add to the list
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-08-30 10:57:41 -04:00
|
|
|
public function search()
|
|
|
|
{
|
2016-02-17 11:36:37 -05:00
|
|
|
$query_data = $this->request->getQueryParams();
|
2016-08-30 10:57:41 -04:00
|
|
|
$this->outputJSON($this->model->search($query_data['query']));
|
|
|
|
}
|
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
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function form_update()
|
|
|
|
{
|
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);
|
|
|
|
$full_result = $this->model->updateLibraryItem($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-01-09 20:36:48 -05:00
|
|
|
$this->set_flash_message("Successfully updated manga.", 'success');
|
|
|
|
// $this->cache->purge();
|
2016-01-04 16:58:33 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-02 11:34:03 -05:00
|
|
|
$this->set_flash_message('Failed to update manga.', 'error');
|
2017-01-09 20:36:48 -05:00
|
|
|
|
2016-01-04 16:58:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->session_redirect();
|
|
|
|
}
|
|
|
|
|
2015-10-20 16:41:51 -04:00
|
|
|
/**
|
2017-01-09 20:36:48 -05:00
|
|
|
* Update a manga item
|
2015-10-20 16:41:51 -04:00
|
|
|
*
|
2017-01-09 20:36:48 -05:00
|
|
|
* @return void
|
2015-10-20 16:41:51 -04:00
|
|
|
*/
|
|
|
|
public function update()
|
|
|
|
{
|
2017-01-09 20:36:48 -05:00
|
|
|
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);
|
|
|
|
|
|
|
|
// $this->cache->purge();
|
|
|
|
$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
|
|
|
*
|
|
|
|
* @return void
|
2016-04-14 17:00:34 -04:00
|
|
|
*/
|
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
$response = $this->model->delete($this->request->getParsedBody());
|
|
|
|
|
2016-08-30 10:57:41 -04:00
|
|
|
if ((bool)$response['body'] === TRUE)
|
2016-04-14 17:00:34 -04:00
|
|
|
{
|
|
|
|
$this->set_flash_message("Successfully deleted manga.", 'success');
|
|
|
|
$this->cache->purge();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->set_flash_message('Failed to delete manga.', 'error');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->session_redirect();
|
|
|
|
}
|
2016-04-14 17:51:00 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* View details of an manga
|
|
|
|
*
|
|
|
|
* @param string $manga_id
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function details($manga_id)
|
|
|
|
{
|
2017-01-05 13:41:32 -05:00
|
|
|
$data = $this->model->getManga($manga_id);
|
2016-04-14 17:51:00 -04:00
|
|
|
|
|
|
|
$this->outputHTML('manga/details', [
|
2017-01-04 13:16:58 -05:00
|
|
|
'title' => 'Manga · ' . $data['title'],
|
|
|
|
'data' => $data,
|
2016-04-14 17:51:00 -04:00
|
|
|
]);
|
|
|
|
}
|
2015-06-16 11:11:35 -04:00
|
|
|
}
|
2015-10-05 16:54:25 -04:00
|
|
|
// End of MangaController.php
|