7e695edd29
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
147 lines
3.2 KiB
PHP
147 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* Anime Controller
|
|
*/
|
|
|
|
namespace Aviat\AnimeClient\Controller;
|
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
use Aviat\AnimeClient\Controller as BaseController;
|
|
use Aviat\AnimeClient\Enum\Hummingbird\AnimeWatchingStatus;
|
|
use Aviat\AnimeClient\Model\Anime as AnimeModel;
|
|
use Aviat\AnimeClient\Model\AnimeCollection as AnimeCollectionModel;
|
|
|
|
/**
|
|
* Controller for Anime-related pages
|
|
*/
|
|
class Anime extends BaseController {
|
|
|
|
/**
|
|
* The anime list model
|
|
* @var object $model
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* The anime collection model
|
|
* @var object $collection_model
|
|
*/
|
|
private $collection_model;
|
|
|
|
/**
|
|
* Data to ve sent to all routes in this controller
|
|
* @var array $base_data
|
|
*/
|
|
protected $base_data;
|
|
|
|
/**
|
|
* Route mapping for main navigation
|
|
* @var array $nav_routes
|
|
*/
|
|
private $nav_routes = [
|
|
'Watching' => '/anime/watching{/view}',
|
|
'Plan to Watch' => '/anime/plan_to_watch{/view}',
|
|
'On Hold' => '/anime/on_hold{/view}',
|
|
'Dropped' => '/anime/dropped{/view}',
|
|
'Completed' => '/anime/completed{/view}',
|
|
'Collection' => '/collection/view{/view}',
|
|
'All' => '/anime/all{/view}'
|
|
];
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param ContainerInterface $container
|
|
*/
|
|
public function __construct(ContainerInterface $container)
|
|
{
|
|
parent::__construct($container);
|
|
|
|
if ($this->config->show_anime_collection === FALSE)
|
|
{
|
|
unset($this->nav_routes['Collection']);
|
|
}
|
|
|
|
$this->model = new AnimeModel($container);
|
|
$this->collection_model = new AnimeCollectionModel($container);
|
|
$this->base_data = array_merge($this->base_data, [
|
|
'message' => '',
|
|
'url_type' => 'anime',
|
|
'other_type' => 'manga',
|
|
'nav_routes' => $this->nav_routes,
|
|
'config' => $this->config,
|
|
]);
|
|
}
|
|
|
|
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)
|
|
{
|
|
$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
|
|
];
|
|
|
|
$title = $this->config->whose_list . "'s Anime List · {$type_title_map[$type]}";
|
|
|
|
$view_map = [
|
|
'' => 'cover',
|
|
'list' => 'list'
|
|
];
|
|
|
|
$data = ($type != 'all')
|
|
? $this->model->get_list($model_map[$type])
|
|
: $this->model->get_all_lists();
|
|
|
|
$this->outputHTML('anime/' . $view_map[$view], [
|
|
'title' => $title,
|
|
'sections' => $data
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Update an anime item
|
|
*
|
|
* @return boolean|null
|
|
*/
|
|
public function update()
|
|
{
|
|
$this->outputJSON($this->model->update($this->request->post->get()));
|
|
}
|
|
}
|
|
// End of AnimeController.php
|