2015-05-22 12:36:26 -04:00
|
|
|
<?php
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2015-11-16 11:40:01 -05:00
|
|
|
* Hummingbird Anime Client
|
|
|
|
*
|
|
|
|
* An API client for Hummingbird to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren
|
2016-01-04 16:58:33 -05:00
|
|
|
* @copyright Copyright (c) 2015 - 2016
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
* @license MIT
|
2015-06-16 11:11:35 -04:00
|
|
|
*/
|
2015-05-22 12:36:26 -04:00
|
|
|
|
2015-09-14 19:54:34 -04:00
|
|
|
namespace Aviat\AnimeClient\Controller;
|
2015-09-14 10:54:50 -04:00
|
|
|
|
2015-09-17 23:11:18 -04:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
2015-09-15 13:19:29 -04:00
|
|
|
use Aviat\AnimeClient\Controller as BaseController;
|
2015-10-09 22:29:59 -04:00
|
|
|
use Aviat\AnimeClient\Hummingbird\Enum\AnimeWatchingStatus;
|
2015-09-14 19:54:34 -04:00
|
|
|
use Aviat\AnimeClient\Model\Anime as AnimeModel;
|
2016-01-04 10:53:03 -05:00
|
|
|
use Aviat\AnimeClient\Hummingbird\Transformer\AnimeListTransformer;
|
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-01-04 10:53:03 -05:00
|
|
|
use \Aviat\Ion\StringWrapper;
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Data to ve sent to all routes in this controller
|
|
|
|
* @var array $base_data
|
|
|
|
*/
|
2015-06-24 16:01:35 -04:00
|
|
|
protected $base_data;
|
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
|
|
|
|
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',
|
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
|
|
|
]);
|
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 $type - The section of the list
|
|
|
|
* @param string $view - List or cover view
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-10-06 10:24:48 -04:00
|
|
|
public function index($type = "watching", $view = '')
|
2015-05-22 12:36:26 -04:00
|
|
|
{
|
2015-09-16 12:25:35 -04:00
|
|
|
$type_title_map = [
|
|
|
|
'all' => 'All',
|
|
|
|
'watching' => 'Currently Watching',
|
|
|
|
'plan_to_watch' => 'Plan to Watch',
|
|
|
|
'on_hold' => 'On Hold',
|
|
|
|
'dropped' => 'Dropped',
|
|
|
|
'completed' => 'Completed'
|
|
|
|
];
|
|
|
|
|
|
|
|
$model_map = [
|
2015-10-05 16:54:25 -04:00
|
|
|
'watching' => AnimeWatchingStatus::WATCHING,
|
|
|
|
'plan_to_watch' => AnimeWatchingStatus::PLAN_TO_WATCH,
|
|
|
|
'on_hold' => AnimeWatchingStatus::ON_HOLD,
|
2015-09-16 12:25:35 -04:00
|
|
|
'all' => 'all',
|
2015-10-05 16:54:25 -04:00
|
|
|
'dropped' => AnimeWatchingStatus::DROPPED,
|
|
|
|
'completed' => AnimeWatchingStatus::COMPLETED
|
2015-09-16 12:25:35 -04:00
|
|
|
];
|
|
|
|
|
2015-11-04 16:36:54 -05:00
|
|
|
if (array_key_exists($type, $type_title_map))
|
|
|
|
{
|
|
|
|
$title = $this->config->get('whose_list') .
|
|
|
|
"'s Anime List · {$type_title_map[$type]}";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$title = '';
|
|
|
|
}
|
2015-09-16 12:25:35 -04:00
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
$view_map = [
|
|
|
|
'' => 'cover',
|
|
|
|
'list' => 'list'
|
|
|
|
];
|
|
|
|
|
2015-06-11 16:44:52 -04:00
|
|
|
$data = ($type != 'all')
|
2015-09-16 12:25:35 -04:00
|
|
|
? $this->model->get_list($model_map[$type])
|
2015-06-11 16:44:52 -04:00
|
|
|
: $this->model->get_all_lists();
|
2015-05-22 12:36:26 -04:00
|
|
|
|
2015-06-24 16:01:35 -04:00
|
|
|
$this->outputHTML('anime/' . $view_map[$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
|
|
|
|
*/
|
|
|
|
public function add_form()
|
|
|
|
{
|
|
|
|
$raw_status_list = AnimeWatchingStatus::getConstList();
|
|
|
|
|
|
|
|
$statuses = [];
|
|
|
|
|
2016-01-04 11:15:25 -05:00
|
|
|
foreach ($raw_status_list as $status_item)
|
2016-01-04 10:53:03 -05:00
|
|
|
{
|
2016-01-04 11:15:25 -05:00
|
|
|
$statuses[$status_item] = (string)$this->string($status_item)
|
2016-01-04 10:53:03 -05:00
|
|
|
->underscored()
|
|
|
|
->humanize()
|
|
|
|
->titleize();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->set_session_redirect();
|
|
|
|
$this->outputHTML('anime/add', [
|
|
|
|
'title' => $this->config->get('whose_list') .
|
|
|
|
"'s Anime List · 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->post->get();
|
|
|
|
if ( ! array_key_exists('id', $data))
|
|
|
|
{
|
|
|
|
$this->redirect("anime/add", 303);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $this->model->update($data);
|
|
|
|
|
|
|
|
if ($result['statusCode'] == 201)
|
|
|
|
{
|
|
|
|
$this->set_flash_message('Added new anime to list', 'success');
|
|
|
|
}
|
|
|
|
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
|
|
|
|
*/
|
2016-01-04 11:15:25 -05:00
|
|
|
public function edit($id, $status = "all")
|
2016-01-04 10:53:03 -05:00
|
|
|
{
|
2016-01-04 16:58:33 -05:00
|
|
|
$item = $this->model->get_library_item($id, $status);
|
2016-01-04 10:53:03 -05:00
|
|
|
$raw_status_list = AnimeWatchingStatus::getConstList();
|
|
|
|
|
|
|
|
$statuses = [];
|
|
|
|
|
2016-01-04 11:15:25 -05:00
|
|
|
foreach ($raw_status_list as $status_item)
|
2016-01-04 10:53:03 -05:00
|
|
|
{
|
2016-01-04 11:15:25 -05:00
|
|
|
$statuses[$status_item] = (string)$this->string($status_item)
|
2016-01-04 10:53:03 -05:00
|
|
|
->underscored()
|
|
|
|
->humanize()
|
|
|
|
->titleize();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->set_session_redirect($this->request->server->get('HTTP_REFERRER'));
|
|
|
|
|
|
|
|
$this->outputHTML('anime/edit', [
|
|
|
|
'title' => $this->config->get('whose_list') .
|
|
|
|
"'s Anime List · Edit",
|
|
|
|
'item' => $item,
|
|
|
|
'statuses' => $statuses,
|
|
|
|
'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()
|
|
|
|
{
|
|
|
|
$query = $this->request->query->get('query');
|
|
|
|
$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()
|
|
|
|
{
|
|
|
|
$post_data = $this->request->post->get();
|
|
|
|
|
|
|
|
// Do some minor data manipulation for
|
|
|
|
// large form-based updates
|
|
|
|
$transformer = new AnimeListTransformer();
|
|
|
|
$post_data = $transformer->untransform($post_data);
|
|
|
|
|
|
|
|
$full_result = $this->model->update($post_data);
|
2016-01-04 16:58:33 -05:00
|
|
|
$result = $full_result['body'];
|
2016-01-04 10:53:03 -05:00
|
|
|
|
|
|
|
if (array_key_exists('anime', $result))
|
|
|
|
{
|
|
|
|
$title = ( ! empty($result['anime']['alternate_title']))
|
|
|
|
? "{$result['anime']['title']} ({$result['anime']['alternate_title']})"
|
|
|
|
: "{$result['anime']['title']}";
|
|
|
|
|
|
|
|
$this->set_flash_message("Successfully updated {$title}.", 'success');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->set_flash_message('Failed to update anime.', 'error');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->session_redirect();
|
|
|
|
}
|
|
|
|
|
2015-06-17 08:50:01 -04:00
|
|
|
/**
|
2015-06-24 16:01:35 -04:00
|
|
|
* Update an anime item
|
2015-06-17 08:50:01 -04:00
|
|
|
*
|
2015-10-06 10:24:48 -04:00
|
|
|
* @return boolean|null
|
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
|
|
|
{
|
2016-02-02 11:34:03 -05:00
|
|
|
$response = $this->model->update($this->request->post->get());
|
|
|
|
$this->outputJSON($response['body'], $response['statusCode']);
|
2015-06-17 08:50:01 -04:00
|
|
|
}
|
2016-01-20 13:01:41 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* View details of an anime
|
|
|
|
*
|
|
|
|
* @param string anime_id
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function details($anime_id)
|
|
|
|
{
|
|
|
|
$data = $this->model->get_anime($anime_id);
|
|
|
|
|
|
|
|
$this->outputHTML('anime/details', [
|
|
|
|
'title' => $data['title'],
|
|
|
|
'data' => $data,
|
|
|
|
]);
|
|
|
|
}
|
2015-05-22 12:36:26 -04:00
|
|
|
}
|
2015-10-14 09:20:52 -04:00
|
|
|
// End of AnimeController.php
|