HummingBirdAnimeClient/src/Aviat/AnimeClient/Controller/Anime.php

127 lines
2.7 KiB
PHP
Raw Normal View History

2015-05-22 12:36:26 -04:00
<?php
/**
* Anime Controller
*/
2015-05-22 12:36:26 -04:00
2015-09-14 19:54:34 -04:00
namespace Aviat\AnimeClient\Controller;
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;
use Aviat\AnimeClient\Hummingbird\Enum\AnimeWatchingStatus;
2015-09-14 19:54:34 -04:00
use Aviat\AnimeClient\Model\Anime as AnimeModel;
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
/**
* The anime list model
* @var object $model
*/
protected $model;
/**
* Data to ve sent to all routes in this controller
* @var array $base_data
*/
protected $base_data;
/**
* 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);
$this->model = new AnimeModel($container);
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',
'message' => '',
'url_type' => 'anime',
'other_type' => 'manga',
'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
*/
public function index($type = "watching", $view = '')
{
return $this->anime_list($type, $view);
}
/**
* Search for anime
*
* @return void
*/
public function search()
{
$query = $this->request->query->get('query');
$this->outputJSON($this->model->search($query));
}
/**
* 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
*/
protected function anime_list($type, $view)
2015-05-22 12:36:26 -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 = [
'watching' => AnimeWatchingStatus::WATCHING,
'plan_to_watch' => AnimeWatchingStatus::PLAN_TO_WATCH,
'on_hold' => AnimeWatchingStatus::ON_HOLD,
'all' => 'all',
'dropped' => AnimeWatchingStatus::DROPPED,
'completed' => AnimeWatchingStatus::COMPLETED
];
2015-10-15 09:25:30 -04:00
$title = $this->config->get('whose_list') .
"'s Anime List &middot; {$type_title_map[$type]}";
$view_map = [
'' => 'cover',
'list' => 'list'
];
$data = ($type != 'all')
? $this->model->get_list($model_map[$type])
: $this->model->get_all_lists();
2015-05-22 12:36:26 -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
2015-06-17 08:50:01 -04:00
/**
* Update an anime item
2015-06-17 08:50:01 -04:00
*
* @return boolean|null
2015-06-17 08:50:01 -04:00
*/
public function update()
2015-06-17 08:50:01 -04:00
{
$this->outputJSON($this->model->update($this->request->post->get()));
2015-06-17 08:50:01 -04:00
}
2015-05-22 12:36:26 -04:00
}
2015-10-14 09:20:52 -04:00
// End of AnimeController.php