HummingBirdAnimeClient/src/AnimeClient/Controller/AnimeCollection.php

263 lines
6.6 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
*
2022-03-04 15:50:35 -05:00
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
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
2022-03-04 15:50:35 -05:00
* @link https://git.timshome.page/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
};
use Aviat\Ion\Attribute\Controller;
use Aviat\Ion\Attribute\Route;
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Di\ContainerInterface;
use Aviat\Ion\Di\Exception\{ContainerException, NotFoundException};
use Aviat\Ion\Json;
2019-12-09 13:13:31 -05:00
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
*/
#[Controller('anime.collection')]
final class AnimeCollection extends BaseController
{
/**
* The anime collection model
*/
2020-04-10 20:01:46 -04:00
private AnimeCollectionModel $animeCollectionModel;
2015-05-22 12:36:26 -04:00
/**
* The anime API model
*/
2020-04-10 20:01:46 -04:00
private AnimeModel $animeModel;
/**
* Constructor
2015-09-14 19:54:34 -04:00
*
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
}
#[Route('anime.collection.redirect', '/anime-collection')]
#[Route('anime.collection.redirect2', '/anime-collection/')]
public function index(): void
{
$this->redirect('/anime-collection/view', 303);
}
/**
* Search for anime
*
2019-12-09 13:13:31 -05:00
* @throws DoubleRenderException
*/
#[Route('anime.collection.search', '/anime-collection/search')]
2018-11-09 10:38:35 -05:00
public function search(): void
{
$queryParams = $this->request->getQueryParams();
$query = $queryParams['query'];
$this->outputJSON($this->animeModel->search($query, inCollection: TRUE), 200);
}
/**
* Show the anime collection page
*
2019-12-09 13:13:31 -05:00
* @throws ContainerException
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @throws NotFoundException
*/
#[Route('anime.collection.view', '/anime-collection/view{/view}')]
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
*
* @param int|null $id
2019-12-09 13:13:31 -05:00
* @throws ContainerException
* @throws InvalidArgumentException
2019-12-09 13:13:31 -05:00
* @throws NotFoundException
* @throws RouteNotFound
*/
#[Route('anime.collection.add.get', '/anime-collection/add')]
#[Route('anime.collection.edit.get', '/anime-collection/edit/{id}')]
public function form(?int $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(),
'item' => ($action === 'Edit' && $id !== NULL) ? $this->animeCollectionModel->get($id) : [],
]);
}
/**
* Update a collection item
*
2019-12-09 13:13:31 -05:00
* @throws ContainerException
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @throws NotFoundException
*/
#[Route('anime.collection.edit.post', '/anime-collection/edit', Route::POST)]
2018-12-12 15:31:59 -05:00
public function edit(): void
{
$this->checkAuth();
$this->update((array) $this->request->getParsedBody());
}
/**
* Add a collection item
*
2019-12-09 13:13:31 -05:00
* @throws ContainerException
2019-12-09 14:34:23 -05:00
* @throws InvalidArgumentException
* @throws NotFoundException
*/
#[Route('anime.collection.add.post', '/anime-collection/add', Route::POST)]
2018-11-09 10:38:35 -05:00
public function add(): void
{
$this->checkAuth();
2019-01-29 16:01:31 -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
*/
#[Route('anime.collection.delete', '/anime-collection/delete', Route::POST)]
2018-11-09 10:38:35 -05:00
public function delete(): void
{
$this->checkAuth();
2019-01-29 16:01:31 -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
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