HummingBirdAnimeClient/src/Model/Manga.php

160 lines
3.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
*
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>
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
*/
namespace Aviat\AnimeClient\Model;
2017-03-01 21:52:30 -05:00
use Aviat\AnimeClient\API\Enum\MangaReadingStatus\Title;
use Aviat\AnimeClient\API\Mapping\MangaReadingStatus;
2017-01-03 21:06:49 -05:00
use Aviat\Ion\Di\ContainerInterface;
/**
* Model for handling requests dealing with the manga list
*/
class Manga 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
*/
protected $kitsuModel;
2017-03-01 21:52:30 -05:00
2017-02-22 14:46:35 -05:00
/**
* Model for making requests to MAL API
* @var \Aviat\AnimeClient\API\MAL\Model
*/
protected $malModel;
2017-02-17 10:55:17 -05:00
/**
* Constructor
*
* @param ContainerInterface $container
*/
2017-01-03 21:06:49 -05:00
public function __construct(ContainerInterface $container)
2017-01-04 13:16:58 -05:00
{
$this->kitsuModel = $container->get('kitsu-model');
2017-02-22 14:46:35 -05:00
$this->malModel = $container->get('mal-model');
2017-01-04 13:16:58 -05:00
}
/**
* Get a category out of the full list
*
* @param string $status
* @return array
*/
public function getList($status)
{
2017-03-01 21:52:30 -05:00
$APIstatus = MangaReadingStatus::TITLE_TO_KITSU[$status];
2017-01-04 13:16:58 -05:00
$data = $this->kitsuModel->getMangaList($APIstatus);
return $this->mapByStatus($data)[$status];
}
2016-04-14 17:51:00 -04:00
/**
* Get the details of a manga
*
* @param string $manga_id
* @return array
*/
public function getManga($manga_id)
2016-04-14 17:51:00 -04:00
{
2017-01-04 13:16:58 -05:00
return $this->kitsuModel->getManga($manga_id);
2016-04-14 17:51:00 -04:00
}
/**
* Create a new manga list item
*
* @param array $data
* @return bool
*/
public function createLibraryItem(array $data): bool
{
return $this->kitsuModel->createListItem($data);
}
/**
* 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);
}
/**
* Update a list entry
*
* @param array $data
* @return array
*/
public function updateLibraryItem(array $data): array
{
return $this->kitsuModel->updateListItem($data);
}
/**
* Remove a list entry
*
* @param string $itemId
* @return bool
*/
public function deleteLibraryItem(string $itemId): bool
{
return $this->kitsuModel->deleteListItem($itemId);
}
/**
* Search for anime by name
*
* @param string $name
* @return array
*/
public function search($name)
{
return $this->kitsuModel->search('manga', $name);
}
/**
* Map transformed anime data to be organized by reading status
*
* @param array $data
* @return array
*/
private function mapByStatus($data)
{
$output = [
2017-03-01 21:52:30 -05:00
Title::READING => [],
Title::PLAN_TO_READ => [],
Title::ON_HOLD => [],
Title::DROPPED => [],
Title::COMPLETED => [],
];
foreach ($data as &$entry) {
2017-03-01 21:52:30 -05:00
$statusMap = MangaReadingStatus::KITSU_TO_TITLE;
$key = $statusMap[$entry['reading_status']];
$output[$key][] = $entry;
}
foreach ($output as &$val) {
$this->sortByName($val, 'manga');
}
return $output;
}
}
// End of MangaModel.php