HummingBirdAnimeClient/src/Model/Anime.php

220 lines
4.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
*
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-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
2017-01-06 23:34:56 -05:00
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 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://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Model;
2017-02-20 13:37:08 -05:00
use Aviat\AnimeClient\API\ParallelAPIRequest;
2017-03-01 22:07:51 -05:00
use Aviat\AnimeClient\API\Mapping\AnimeWatchingStatus;
use Aviat\AnimeClient\Types\{
Anime as AnimeType,
AnimeFormItem,
2018-08-08 11:18:57 -04:00
AnimeListItem
};
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
*/
2018-08-08 13:05:38 -04:00
class Anime extends API {
2017-02-17 10:55:17 -05:00
/**
* Model for making requests to Kitsu API
*
2017-02-22 14:46:35 -05:00
* @var \Aviat\AnimeClient\API\Kitsu\Model
2017-02-17 10:55:17 -05:00
*/
2017-02-04 15:18:34 -05:00
protected $kitsuModel;
2017-02-17 10:55:17 -05:00
/**
* Model for making requests to MAL API
*
2017-02-22 14:46:35 -05:00
* @var \Aviat\AnimeClient\API\MAL\Model
2017-02-17 10:55:17 -05:00
*/
2017-02-04 15:18:34 -05:00
protected $malModel;
/**
* Anime constructor.
2017-02-17 10:55:17 -05:00
*
* @param ContainerInterface $container
*/
2017-03-01 22:07:51 -05:00
public function __construct(ContainerInterface $container)
2017-02-17 10:55:17 -05:00
{
$this->kitsuModel = $container->get('kitsu-model');
2017-02-04 15:18:34 -05:00
$this->malModel = $container->get('mal-model');
2017-03-28 14:36:23 -04:00
$config = $container->get('config');
2017-02-04 15:18:34 -05:00
$this->useMALAPI = $config->get(['use_mal_api']) === TRUE;
2016-12-21 12:46:20 -05:00
}
2015-05-22 12:36:26 -04:00
/**
* Get a category out of the full list
*
* @param string $status
2015-05-22 12:36:26 -04:00
* @return array
*/
public function getList($status): array
2015-05-22 12:36:26 -04:00
{
$data = $this->kitsuModel->getAnimeList($status);
$this->sortByName($data, 'anime');
2015-05-22 12:36:26 -04:00
2017-03-01 22:07:51 -05:00
$key = AnimeWatchingStatus::KITSU_TO_TITLE[$status];
2015-05-22 12:36:26 -04:00
$output = [];
2017-03-01 22:07:51 -05:00
$output[$key] = $data;
2015-05-22 12:36:26 -04:00
return $output;
}
/**
* Get data for the 'all' anime page
*
* @return array
*/
public function getAllLists(): array
2017-03-07 17:51:08 -05:00
{
$data = $this->kitsuModel->getFullOrganizedAnimeList();
foreach($data as $section => &$list)
{
$this->sortByName($list, 'anime');
}
return $data;
}
/**
2017-01-16 13:49:51 -05:00
* Get information about an anime from its slug
*
2017-01-16 13:49:51 -05:00
* @param string $slug
* @return AnimeType
*/
public function getAnime(string $slug): AnimeType
{
2017-01-16 13:49:51 -05:00
return $this->kitsuModel->getAnime($slug);
}
2017-02-04 15:18:34 -05:00
/**
* Get anime by its kitsu id
*
* @param string $animeId
* @return array
*/
public function getAnimeById(string $animeId): array
2017-01-16 13:49:51 -05:00
{
return $this->kitsuModel->getAnimeById($animeId);
}
/**
* Search for anime by name
*
* @param string $name
* @return array
*/
public function search(string $name): array
{
return $this->kitsuModel->search('anime', $name);
}
/**
* Get information about a specific list item
* for editing/updating that item
*
* @param string $itemId
* @return AnimeListItem
*/
public function getLibraryItem(string $itemId): AnimeListItem
{
return $this->kitsuModel->getListItem($itemId);
}
2017-02-04 15:18:34 -05:00
/**
* Add an anime to your list
*
* @param array $data
* @return bool
*/
public function createLibraryItem(array $data): bool
{
2017-02-20 13:37:08 -05:00
$requester = new ParallelAPIRequest();
2017-02-04 15:18:34 -05:00
if ($this->useMALAPI)
{
$malData = $data;
$malId = $this->kitsuModel->getMalIdForAnime($malData['id']);
if ($malId !== NULL)
2017-02-04 15:18:34 -05:00
{
$malData['id'] = $malId;
2017-02-20 13:37:08 -05:00
$requester->addRequest($this->malModel->createListItem($malData), 'mal');
2017-02-04 15:18:34 -05:00
}
}
2017-03-01 22:07:51 -05:00
2017-02-20 13:37:08 -05:00
$requester->addRequest($this->kitsuModel->createListItem($data), 'kitsu');
2017-02-04 15:18:34 -05:00
$results = $requester->makeRequests();
return count($results) > 0;
}
/**
* Update a list entry
*
* @param AnimeFormItem $data
* @return array
*/
public function updateLibraryItem(AnimeFormItem $data): array
{
2017-03-01 22:07:51 -05:00
$requester = new ParallelAPIRequest();
2017-02-04 15:18:34 -05:00
if ($this->useMALAPI)
{
2017-02-20 13:37:08 -05:00
$requester->addRequest($this->malModel->updateListItem($data), 'mal');
2017-02-04 15:18:34 -05:00
}
2017-02-20 13:37:08 -05:00
$requester->addRequest($this->kitsuModel->updateListItem($data), 'kitsu');
$results = $requester->makeRequests();
$body = Json::decode($results['kitsu']);
$statusCode = array_key_exists('error', $body) ? 400: 200;
2017-03-01 22:07:51 -05:00
return [
'body' => Json::decode($results['kitsu']),
'statusCode' => $statusCode
];
}
2017-02-04 15:18:34 -05:00
/**
* Delete a list entry
*
* @param string $id
* @param string|null $malId
* @return bool
*/
2017-02-17 10:55:17 -05:00
public function deleteLibraryItem(string $id, string $malId = NULL): bool
{
2017-02-20 13:37:08 -05:00
$requester = new ParallelAPIRequest();
if ($this->useMALAPI && $malId !== NULL)
2017-02-04 15:18:34 -05:00
{
2017-02-20 13:37:08 -05:00
$requester->addRequest($this->malModel->deleteListItem($malId), 'MAL');
2017-02-04 15:18:34 -05:00
}
2017-02-20 13:37:08 -05:00
$requester->addRequest($this->kitsuModel->deleteListItem($id), 'kitsu');
$results = $requester->makeRequests();
return count($results) > 0;
}
2017-03-07 17:51:08 -05:00
}