HummingBirdAnimeClient/src/AnimeClient/Controller/AnimeCollection.php

264 lines
6.3 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2015-11-16 11:40:01 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
2021-02-04 11:57:01 -05:00
* PHP version 8
2016-08-30 10:01:18 -04:00
*
2017-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Controller;
2019-12-09 13:13:31 -05:00
use Aura\Router\Exception\RouteNotFound;
2015-09-15 13:19:29 -04:00
use Aviat\AnimeClient\Controller as BaseController;
2017-02-15 15:56:10 -05:00
use Aviat\AnimeClient\Model\{
Anime as AnimeModel,
AnimeCollection as AnimeCollectionModel
};
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Di\ContainerInterface;
2019-12-09 13:13:31 -05:00
use Aviat\Ion\Di\Exception\ContainerException;
use Aviat\Ion\Di\Exception\NotFoundException;
use Aviat\Ion\Exception\DoubleRenderException;
2015-06-26 16:39:10 -04:00
2019-12-09 14:34:23 -05:00
use InvalidArgumentException;
/**
* Controller for Anime collection pages
*/
final class AnimeCollection extends BaseController {
/**
* The anime collection model
2017-02-15 11:30:16 -05:00
* @var AnimeCollectionModel $animeCollectionModel
*/
2020-04-10 20:01:46 -04:00
private AnimeCollectionModel $animeCollectionModel;
2015-05-22 12:36:26 -04:00
/**
* The anime API model
2017-02-15 11:30:16 -05:00
* @var AnimeModel $animeModel
*/
2020-04-10 20:01:46 -04:00
private AnimeModel $animeModel;
/**
* Constructor
2015-09-14 19:54:34 -04:00
*
* @param ContainerInterface $container
2019-12-09 13:13:31 -05:00
* @throws ContainerException
* @throws NotFoundException
*/
2015-09-17 23:11:18 -04:00
public function __construct(ContainerInterface $container)
2015-05-22 12:36:26 -04:00
{
parent::__construct($container);
2017-02-15 11:30:16 -05:00
$this->animeModel = $container->get('anime-model');
$this->animeCollectionModel = $container->get('anime-collection-model');
$this->baseData = array_merge($this->baseData, [
'collection_type' => 'anime',
2015-10-09 14:34:55 -04:00
'menu_name' => 'collection',
'other_type' => 'manga',
2018-12-21 15:52:34 -05:00
'url_type' => 'anime',
2015-09-14 15:49:20 -04:00
]);
2015-05-22 12:36:26 -04:00
}
public function index(): void
{
$this->redirect('/anime-collection/view', 303);
}
/**
* Search for anime
*
2019-12-09 13:13:31 -05:00
* @throws DoubleRenderException
* @return void
*/
2018-11-09 10:38:35 -05:00
public function search(): void
{
$queryParams = $this->request->getQueryParams();
$query = $queryParams['query'];
2020-07-31 16:22:32 -04:00
$this->outputJSON($this->animeModel->search($query), 200);
}
/**
* Show the anime collection page
*
2020-12-11 10:15:24 -05:00
* @param string|null $view
2019-12-09 13:13:31 -05:00
* @throws ContainerException
* @throws NotFoundException
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @return void
*/
2020-12-11 10:15:24 -05:00
public function view(?string $view = ''): void
2015-05-22 12:36:26 -04:00
{
2017-02-15 15:35:41 -05:00
$viewMap = [
'' => 'cover',
'list' => 'list'
];
2020-08-26 17:26:42 -04:00
$sections = array_merge(
['All' => $this->animeCollectionModel->getFlatCollection()],
$this->animeCollectionModel->getCollection()
);
2017-02-15 15:35:41 -05:00
$this->outputHTML('collection/' . $viewMap[$view], [
2015-10-06 11:38:20 -04:00
'title' => $this->config->get('whose_list') . "'s Anime Collection",
2020-08-26 17:26:42 -04:00
'sections' => $sections,
]);
}
2015-06-17 08:50:01 -04:00
/**
* Show the anime collection add/edit form
*
2015-10-12 14:27:20 -04:00
* @param integer|null $id
2019-12-09 13:13:31 -05:00
* @throws ContainerException
* @throws NotFoundException
* @throws RouteNotFound
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @return void
*/
2018-11-09 10:38:35 -05:00
public function form($id = NULL): void
{
$this->checkAuth();
2019-01-29 16:01:31 -05:00
2017-02-16 14:30:06 -05:00
$this->setSessionRedirect();
2018-02-02 09:50:58 -05:00
$action = $id === NULL ? 'Add' : 'Edit';
2017-03-30 16:16:40 -04:00
$urlAction = strtolower($action);
2017-03-30 16:16:40 -04:00
$this->outputHTML('collection/' . $urlAction, [
'action' => $action,
'action_url' => $this->url->generate("anime.collection.{$urlAction}.post"),
2017-03-24 09:58:27 -04:00
'title' => $this->formatTitle(
$this->config->get('whose_list') . "'s Anime Collection",
$action
),
'media_items' => $this->animeCollectionModel->getMediaTypeList(),
2021-02-16 14:43:51 -05:00
'item' => ($action === 'Edit' && $id !== NULL) ? $this->animeCollectionModel->get($id) : []
]);
}
/**
* Update a collection item
*
2019-12-09 13:13:31 -05:00
* @throws ContainerException
* @throws NotFoundException
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @return void
*/
2018-12-12 15:31:59 -05:00
public function edit(): void
{
$this->checkAuth();
2021-02-11 19:54:22 -05:00
$this->update((array)$this->request->getParsedBody());
}
/**
* Add a collection item
*
2019-12-09 13:13:31 -05:00
* @throws ContainerException
* @throws NotFoundException
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @return void
*/
2018-11-09 10:38:35 -05:00
public function add(): void
{
$this->checkAuth();
2019-01-29 16:01:31 -05:00
2021-02-11 19:54:22 -05:00
$data = (array)$this->request->getParsedBody();
if (array_key_exists('id', $data))
{
// Check for existing entry
if ($this->animeCollectionModel->has($data['id']))
{
// Let's just update with the data we have
// if the entry already exists.
$data['hummingbird_id'] = $data['id'];
unset(
$data['id'],
$data['mal_id'],
$data['search']
);
// Don't overwrite notes if the box is empty
if (trim($data['notes']) === '')
{
unset($data['notes']);
}
$this->update($data);
return;
}
$this->animeCollectionModel->add($data);
// Verify the item was added
if ($this->animeCollectionModel->wasAdded($data))
{
$this->setFlashMessage('Successfully added collection item', 'success');
$this->sessionRedirect();
return;
}
}
$this->setFlashMessage('Failed to add collection item.', 'error');
$this->redirect('/anime-collection/add', 303);
}
/**
* Remove a collection item
*
* @return void
*/
2018-11-09 10:38:35 -05:00
public function delete(): void
{
$this->checkAuth();
2019-01-29 16:01:31 -05:00
2021-02-11 19:54:22 -05:00
$data = (array)$this->request->getParsedBody();
if ( ! array_key_exists('hummingbird_id', $data))
{
$this->setFlashMessage("Can't delete item that doesn't exist", 'error');
2018-02-02 09:50:58 -05:00
$this->redirect('/anime-collection/view', 303);
}
2017-02-15 11:30:16 -05:00
$this->animeCollectionModel->delete($data);
// Verify that item was actually deleted
($this->animeCollectionModel->wasDeleted($data))
? $this->setFlashMessage('Successfully removed anime from collection.', 'success')
: $this->setFlashMessage('Failed to delete item from collection.', 'error');
$this->redirect('/anime-collection/view', 303);
}
2020-04-30 15:33:16 -04:00
/**
* Update a collection item
*
2021-02-11 19:54:22 -05:00
* @param array $data
2020-04-30 15:33:16 -04:00
* @throws ContainerException
* @throws NotFoundException
*/
2021-02-11 19:54:22 -05:00
protected function update(array $data): void
{
if (array_key_exists('hummingbird_id', $data))
{
$this->animeCollectionModel->update($data);
// Verify the item was actually updated
($this->animeCollectionModel->wasUpdated($data))
? $this->setFlashMessage('Successfully updated collection item.', 'success')
: $this->setFlashMessage('Failed to update collection item.', 'error');
}
else
{
$this->setFlashMessage('No item id to update. Update failed.', 'error');
}
$this->sessionRedirect();
}
2015-05-22 12:36:26 -04:00
}
// End of AnimeCollection.php