2015-06-16 11:11:35 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Manga Controller
|
|
|
|
*/
|
2015-06-26 16:39:10 -04:00
|
|
|
namespace AnimeClient;
|
2015-06-16 11:11:35 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller for manga list
|
|
|
|
*/
|
|
|
|
class MangaController extends BaseController {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The manga model
|
|
|
|
* @var object $model
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Route mapping for main navigation
|
|
|
|
* @var array $nav_routes
|
|
|
|
*/
|
|
|
|
private $nav_routes = [
|
|
|
|
'Reading' => '/reading{/view}',
|
|
|
|
'Plan to Read' => '/plan_to_read{/view}',
|
|
|
|
'On Hold' => '/on_hold{/view}',
|
|
|
|
'Dropped' => '/dropped{/view}',
|
|
|
|
'Completed' => '/completed{/view}',
|
|
|
|
'All' => '/all{/view}'
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
2015-06-29 09:46:49 -04:00
|
|
|
public function __construct(Config $config, Array $web)
|
2015-06-16 11:11:35 -04:00
|
|
|
{
|
2015-06-29 09:46:49 -04:00
|
|
|
parent::__construct($config, $web);
|
2015-06-16 11:11:35 -04:00
|
|
|
$this->model = new MangaModel();
|
2015-06-24 16:01:35 -04:00
|
|
|
$this->base_data = [
|
|
|
|
'url_type' => 'manga',
|
|
|
|
'other_type' => 'anime',
|
|
|
|
'nav_routes' => $this->nav_routes
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update an anime item
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
$this->outputJSON($this->model->update($this->request->post->get()));
|
2015-06-16 11:11:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a section of the manga list
|
|
|
|
*
|
|
|
|
* @param string $status
|
|
|
|
* @param string $title
|
|
|
|
* @param string $view
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function manga_list($status, $title, $view)
|
|
|
|
{
|
|
|
|
$view_map = [
|
|
|
|
'' => 'cover',
|
|
|
|
'list' => 'list'
|
|
|
|
];
|
|
|
|
|
|
|
|
$data = ($status !== 'all')
|
|
|
|
? [$status => $this->model->get_list($status)]
|
|
|
|
: $this->model->get_all_lists();
|
|
|
|
|
|
|
|
$this->outputHTML('manga/' . $view_map[$view], [
|
|
|
|
'title' => $title,
|
|
|
|
'sections' => $data
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
2015-05-27 09:03:42 -04:00
|
|
|
// End of MangaController.php
|