2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2016-12-20 12:58:37 -05:00
|
|
|
* Anime List Client
|
2015-11-16 11:40:01 -05:00
|
|
|
*
|
2016-12-20 12:58:37 -05:00
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
2015-11-16 11:40:01 -05:00
|
|
|
*
|
2016-10-20 22:09:36 -04:00
|
|
|
* PHP version 7
|
2016-08-30 10:01:18 -04:00
|
|
|
*
|
2017-01-06 23:34:56 -05:00
|
|
|
* @package AnimeListClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2017-01-11 10:30:53 -05:00
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
2017-01-06 23:34:56 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 4.0
|
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Model;
|
2016-12-20 12:58:37 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\AnimeWatchingStatus;
|
2016-12-21 12:46:20 -05:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
2016-10-20 22:32:17 -04:00
|
|
|
use Aviat\Ion\Json;
|
2015-06-26 16:39:10 -04:00
|
|
|
|
2015-05-22 12:36:26 -04:00
|
|
|
/**
|
|
|
|
* Model for handling requests dealing with the anime list
|
|
|
|
*/
|
2015-09-14 10:54:50 -04:00
|
|
|
class Anime extends API {
|
2015-10-01 16:01:23 -04:00
|
|
|
|
|
|
|
// Display constants
|
|
|
|
const WATCHING = 'Watching';
|
|
|
|
const PLAN_TO_WATCH = 'Plan to Watch';
|
|
|
|
const DROPPED = 'Dropped';
|
|
|
|
const ON_HOLD = 'On Hold';
|
|
|
|
const COMPLETED = 'Completed';
|
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
/**
|
|
|
|
* Map of API status constants to display constants
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $const_map = [
|
|
|
|
AnimeWatchingStatus::WATCHING => self::WATCHING,
|
|
|
|
AnimeWatchingStatus::PLAN_TO_WATCH => self::PLAN_TO_WATCH,
|
|
|
|
AnimeWatchingStatus::ON_HOLD => self::ON_HOLD,
|
|
|
|
AnimeWatchingStatus::DROPPED => self::DROPPED,
|
|
|
|
AnimeWatchingStatus::COMPLETED => self::COMPLETED,
|
|
|
|
];
|
|
|
|
|
2016-12-22 21:36:23 -05:00
|
|
|
/**
|
|
|
|
* Anime constructor.
|
|
|
|
* @param ContainerInterface $container
|
|
|
|
*/
|
2016-12-21 12:46:20 -05:00
|
|
|
public function __construct(ContainerInterface $container) {
|
|
|
|
parent::__construct($container);
|
|
|
|
|
2016-12-22 21:36:23 -05:00
|
|
|
$this->kitsuModel = $container->get('kitsu-model');
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2015-05-22 12:36:26 -04:00
|
|
|
/**
|
|
|
|
* Get a category out of the full list
|
|
|
|
*
|
2015-06-09 18:18:53 -04:00
|
|
|
* @param string $status
|
2015-05-22 12:36:26 -04:00
|
|
|
* @return array
|
|
|
|
*/
|
2017-01-05 13:41:32 -05:00
|
|
|
public function getList($status)
|
2015-05-22 12:36:26 -04:00
|
|
|
{
|
2016-12-22 21:36:23 -05:00
|
|
|
$data = $this->kitsuModel->getAnimeList($status);
|
2017-01-05 13:41:32 -05:00
|
|
|
$this->sortByName($data, 'anime');
|
2015-05-22 12:36:26 -04:00
|
|
|
|
|
|
|
$output = [];
|
2015-10-05 16:54:25 -04:00
|
|
|
$output[$this->const_map[$status]] = $data;
|
2015-05-22 12:36:26 -04:00
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2015-06-24 16:01:35 -04:00
|
|
|
/**
|
2017-01-16 13:49:51 -05:00
|
|
|
* Get information about an anime from its slug
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2017-01-16 13:49:51 -05:00
|
|
|
* @param string $slug
|
2015-06-24 16:01:35 -04:00
|
|
|
* @return array
|
|
|
|
*/
|
2017-01-16 13:49:51 -05:00
|
|
|
public function getAnime($slug)
|
2017-01-05 13:41:32 -05:00
|
|
|
{
|
2017-01-16 13:49:51 -05:00
|
|
|
return $this->kitsuModel->getAnime($slug);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAnimeById($anime_id)
|
|
|
|
{
|
|
|
|
return $this->kitsuModel->getAnimeById($anime_id);
|
2017-01-05 13:41:32 -05:00
|
|
|
}
|
|
|
|
|
2017-01-06 21:39:01 -05:00
|
|
|
/**
|
|
|
|
* Search for anime by name
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function search($name)
|
|
|
|
{
|
|
|
|
// $raw = $this->kitsuModel->search('anime', $name);
|
|
|
|
return $this->kitsuModel->search('anime', $name);
|
|
|
|
}
|
|
|
|
|
2017-01-05 13:41:32 -05:00
|
|
|
/**
|
|
|
|
* Get information about a specific list item
|
|
|
|
* for editing/updating that item
|
|
|
|
*
|
|
|
|
* @param string $itemId
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getLibraryItem(string $itemId): array
|
|
|
|
{
|
|
|
|
return $this->kitsuModel->getListItem($itemId);
|
|
|
|
}
|
|
|
|
|
2017-01-10 12:35:46 -05:00
|
|
|
public function createLibraryItem(array $data): bool
|
|
|
|
{
|
|
|
|
return $this->kitsuModel->createListItem($data);
|
|
|
|
}
|
|
|
|
|
2017-01-05 13:41:32 -05:00
|
|
|
/**
|
2017-01-06 21:39:01 -05:00
|
|
|
* Update a list entry
|
2017-01-05 13:41:32 -05:00
|
|
|
*
|
2017-01-06 21:39:01 -05:00
|
|
|
* @param array $data
|
2017-01-05 13:41:32 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
2017-01-06 21:39:01 -05:00
|
|
|
public function updateLibraryItem(array $data): array
|
2015-06-24 16:01:35 -04:00
|
|
|
{
|
2017-01-06 21:39:01 -05:00
|
|
|
return $this->kitsuModel->updateListItem($data);
|
2015-06-24 16:01:35 -04:00
|
|
|
}
|
2017-01-09 20:36:48 -05:00
|
|
|
|
|
|
|
public function deleteLibraryItem($id): bool
|
|
|
|
{
|
|
|
|
return $this->kitsuModel->deleteListItem($id);
|
|
|
|
}
|
2015-05-22 12:36:26 -04:00
|
|
|
}
|
|
|
|
// End of AnimeModel.php
|