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

228 lines
5.0 KiB
PHP
Raw Normal View History

<?php
/**
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
* @copyright Copyright (c) 2015 - 2016
2015-11-16 11:40:01 -05:00
* @link https://github.com/timw4mail/HummingBirdAnimeClient
* @license MIT
*/
2015-09-14 19:54:34 -04:00
namespace Aviat\AnimeClient\Controller;
use Aviat\Ion\Json;
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;
use Aviat\AnimeClient\Config;
2015-09-14 19:54:34 -04:00
use Aviat\AnimeClient\Model\Manga as MangaModel;
use Aviat\AnimeClient\Hummingbird\Enum\MangaReadingStatus;
use Aviat\AnimeClient\Hummingbird\Transformer\MangaListTransformer;
/**
* Controller for manga list
*/
class Manga extends Controller {
use \Aviat\Ion\StringWrapper;
/**
* The manga model
* @var object $model
*/
protected $model;
/**
* Data to ve sent to all routes in this controller
* @var array $base_data
*/
protected $base_data;
/**
* Constructor
2015-09-14 19:54:34 -04:00
*
* @param ContainerInterface $container
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
{
parent::__construct($container);
2015-10-20 16:41:51 -04:00
2015-12-08 16:39:49 -05:00
$this->model = $container->get('manga-model');
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' => 'manga_list',
'config' => $this->config,
'url_type' => 'manga',
2015-10-09 14:34:55 -04:00
'other_type' => 'anime'
2015-09-14 15:49:20 -04:00
]);
}
2015-10-06 11:38:20 -04:00
/**
* Get a section of the manga list
*
* @param string $status
* @param string $view
* @return void
*/
public function index($status = "all", $view = "")
{
$map = [
'all' => 'All',
'plan_to_read' => MangaModel::PLAN_TO_READ,
'reading' => MangaModel::READING,
'completed' => MangaModel::COMPLETED,
'dropped' => MangaModel::DROPPED,
'on_hold' => MangaModel::ON_HOLD
];
2015-10-06 11:38:20 -04:00
$title = $this->config->get('whose_list') . "'s Manga List &middot; {$map[$status]}";
$view_map = [
'' => 'cover',
'list' => 'list'
];
$data = ($status !== 'all')
? [$map[$status] => $this->model->get_list($map[$status])]
: $this->model->get_all_lists();
$this->outputHTML('manga/' . $view_map[$view], [
'title' => $title,
2015-09-17 23:11:18 -04:00
'sections' => $data,
]);
}
2015-10-20 16:41:51 -04:00
2016-02-02 11:34:03 -05:00
/**
* Form to add an manga
*
* @return void
*/
public function add_form()
{
$raw_status_list = MangaReadingStatus::getConstList();
$statuses = [];
foreach ($raw_status_list as $status_item)
{
$statuses[$status_item] = (string)$this->string($status_item)
->underscored()
->humanize()
->titleize();
}
$this->set_session_redirect();
$this->outputHTML('manga/add', [
'title' => $this->config->get('whose_list') .
"'s Manga List &middot; Add",
'action_url' => $this->urlGenerator->url('manga/add'),
'status_list' => $statuses
]);
}
/**
* Add an manga to the list
*
* @return void
*/
public function add()
{
$data = $this->request->post->get();
if ( ! array_key_exists('id', $data))
{
$this->redirect("manga/add", 303);
}
$result = $this->model->add($data);
if ($result['statusCode'] >= 200 && $result['statusCode'] < 300)
{
$this->set_flash_message('Added new manga to list', 'success');
}
else
{
2016-02-02 21:38:38 -05:00
$this->set_flash_message('Failed to add new manga to list' . $result['body'], 'error');
2016-02-02 11:34:03 -05:00
}
$this->session_redirect();
}
/**
* Show the manga edit form
*
* @param string $id
* @param string $status
* @return void
*/
public function edit($id, $status = "All")
{
$this->set_session_redirect();
$item = $this->model->get_library_item($id, $status);
$title = $this->config->get('whose_list') . "'s Manga List &middot; Edit";
$this->outputHTML('manga/edit', [
'title' => $title,
'status_list' => MangaReadingStatus::getConstList(),
'item' => $item,
'action' => $this->container->get('url-generator')
->url('/manga/update_form'),
]);
}
2016-02-02 11:34:03 -05:00
/**
* Search for a manga to add to the list
*
* @return void
*/
public function search()
{
$query = $this->request->query->get('query');
$this->outputJSON($this->model->search($query));
}
/**
* 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 MangaListTransformer();
$post_data = $transformer->untransform($post_data);
$full_result = $this->model->update($post_data);
$result = Json::decode((string)$full_result['body']);
if ($full_result['statusCode'] == 200)
{
$m =& $result['manga'][0];
$title = ( ! empty($m['english_title']))
? "{$m['romaji_title']} ({$m['english_title']})"
: "{$m['romaji_title']}";
$this->set_flash_message("Successfully updated {$title}.", 'success');
}
else
{
2016-02-02 11:34:03 -05:00
$this->set_flash_message('Failed to update manga.', 'error');
}
$this->session_redirect();
}
2015-10-20 16:41:51 -04:00
/**
* Update an anime item
*
* @return boolean|null
*/
public function update()
{
2016-02-02 11:34:03 -05:00
$result = $this->model->update($this->request->post->get());
$this->outputJSON($result['body'], $result['statusCode']);
2015-10-20 16:41:51 -04:00
}
}
// End of MangaController.php