HummingBirdAnimeClient/src/Controller/Anime.php

306 lines
6.8 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
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>
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
2015-11-16 11:40:01 -05:00
* @link https://github.com/timw4mail/HummingBirdAnimeClient
2017-01-11 10:30:53 -05:00
*/namespace Aviat\AnimeClient\Controller;
2015-09-15 13:19:29 -04:00
use Aviat\AnimeClient\Controller as BaseController;
use Aviat\AnimeClient\API\Kitsu;
2016-12-21 12:46:20 -05:00
use Aviat\AnimeClient\API\Kitsu\Enum\AnimeWatchingStatus;
use Aviat\AnimeClient\API\Kitsu\Transformer\AnimeListTransformer;
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
*/
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
* @var object $model
*/
protected $model;
/**
* Data to be sent to all routes in this controller
* @var array $base_data
*/
protected $base_data;
2016-04-05 13:19:35 -04:00
/**
* Data cache
2016-08-30 10:57:41 -04:00
* @var Aviat\Ion\Cache\CacheInterface
2016-04-05 13:19:35 -04:00
*/
protected $cache;
/**
* Constructor
*
* @param ContainerInterface $container
*/
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
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' => '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
* @return void
*/
public function index($type = AnimeWatchingStatus::WATCHING, string $view = NULL)
2015-05-22 12:36:26 -04:00
{
$type_title_map = [
'all' => 'All',
AnimeWatchingStatus::WATCHING => 'Currently Watching',
AnimeWatchingStatus::PLAN_TO_WATCH => 'Plan to Watch',
AnimeWatchingStatus::ON_HOLD => 'On Hold',
AnimeWatchingStatus::DROPPED => 'Dropped',
AnimeWatchingStatus::COMPLETED => 'Completed'
];
$model_map = [
'watching' => AnimeWatchingStatus::WATCHING,
'plan_to_watch' => AnimeWatchingStatus::PLAN_TO_WATCH,
'on_hold' => AnimeWatchingStatus::ON_HOLD,
'all' => 'all',
'dropped' => AnimeWatchingStatus::DROPPED,
'completed' => AnimeWatchingStatus::COMPLETED
];
$title = (array_key_exists($type, $type_title_map))
? $this->config->get('whose_list') .
"'s Anime List &middot; {$type_title_map[$type]}"
: '';
$view_map = [
'' => 'cover',
'list' => 'list'
];
2016-08-30 10:57:41 -04:00
$data = ($type !== 'all')
? $this->model->getList($model_map[$type])
: $this->model->get_all_lists();
2016-04-05 13:19:35 -04:00
$this->outputHTML('anime/' . $view_map[$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
*
* @return void
*/
public function add_form()
{
$statuses = [
AnimeWatchingStatus::WATCHING => 'Currently Watching',
AnimeWatchingStatus::PLAN_TO_WATCH => 'Plan to Watch',
AnimeWatchingStatus::ON_HOLD => 'On Hold',
AnimeWatchingStatus::DROPPED => 'Dropped',
AnimeWatchingStatus::COMPLETED => 'Completed'
];
2016-01-04 10:53:03 -05:00
$this->set_session_redirect();
$this->outputHTML('anime/add', [
'title' => $this->config->get('whose_list') .
"'s Anime List &middot; Add",
'action_url' => $this->urlGenerator->url('anime/add'),
'status_list' => $statuses
]);
}
/**
* Add an anime to the list
*
* @return void
*/
public function add()
{
$data = $this->request->getParsedBody();
2016-01-04 10:53:03 -05:00
if ( ! array_key_exists('id', $data))
{
$this->redirect("anime/add", 303);
}
$result = $this->model->createLibraryItem($data);
2016-01-04 10:53:03 -05:00
if ($result)
2016-01-04 10:53:03 -05:00
{
$this->set_flash_message('Added new anime to list', 'success');
// $this->cache->purge();
2016-01-04 10:53:03 -05:00
}
else
{
$this->set_flash_message('Failed to add new anime to list', 'error');
}
$this->session_redirect();
}
/**
* Form to edit details about a series
*
* @param int $id
* @param string $status
* @return void
*/
public function edit($id, $status = "all")
2016-01-04 10:53:03 -05:00
{
$item = $this->model->getLibraryItem($id, $status);
2016-01-04 10:53:03 -05:00
$raw_status_list = AnimeWatchingStatus::getConstList();
$statuses = [];
foreach ($raw_status_list as $status_item)
2016-01-04 10:53:03 -05:00
{
$statuses[$status_item] = (string) $this->string($status_item)
2016-01-04 10:53:03 -05:00
->underscored()
->humanize()
->titleize();
}
2016-03-03 16:53:17 -05:00
$this->set_session_redirect();
2016-01-04 10:53:03 -05:00
$this->outputHTML('anime/edit', [
'title' => $this->config->get('whose_list') .
"'s Anime List &middot; Edit",
'item' => $item,
'statuses' => Kitsu::getStatusToSelectMap(),
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()
{
$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
*/
public function form_update()
{
$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();
$post_data = $transformer->untransform($data);
$full_result = $this->model->updateLibraryItem($post_data);
2016-01-04 10:53:03 -05:00
if ($full_result['statusCode'] === 200)
2016-01-04 10:53:03 -05:00
{
$this->set_flash_message("Successfully updated.", 'success');
// $this->cache->purge();
2016-01-04 10:53:03 -05:00
}
else
{
$this->set_flash_message('Failed to update anime.', 'error');
}
$this->session_redirect();
}
2015-06-17 08:50:01 -04:00
/**
* Update an anime item
2016-08-30 10:57:41 -04:00
*
* @return void
2015-06-17 08:50:01 -04:00
*/
public function update()
2015-06-17 08:50:01 -04: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();
2016-02-02 11:34:03 -05:00
$this->outputJSON($response['body'], $response['statusCode']);
2015-06-17 08:50:01 -04:00
}
/**
* Remove an anime from the list
2016-08-30 10:57:41 -04:00
*
* @return void
*/
public function delete()
{
$body = $this->request->getParsedBody();
$response = $this->model->deleteLibraryItem($body['id']);
if ((bool)$response === TRUE)
{
$this->set_flash_message("Successfully deleted anime.", 'success');
// $this->cache->purge();
}
else
{
$this->set_flash_message('Failed to delete anime.', 'error');
}
$this->session_redirect();
}
/**
* View details of an anime
*
* @param string $anime_id
* @return void
*/
public function details($anime_id)
{
$data = $this->model->getAnime($anime_id);
$this->outputHTML('anime/details', [
'title' => 'Anime &middot ' . $data['titles'][0],
'data' => $data,
]);
}
2015-05-22 12:36:26 -04:00
}
2015-10-14 09:20:52 -04:00
// End of AnimeController.php