HummingBirdAnimeClient/src/AnimeClient/Model/Manga.php

129 lines
2.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
*
2020-12-10 17:06:50 -05:00
* PHP version 7.4+
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>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
2017-01-06 23:34:56 -05: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\Model;
2017-03-28 14:36:23 -04:00
use Aviat\AnimeClient\API\{
Enum\MangaReadingStatus\Title,
Mapping\MangaReadingStatus,
};
2018-08-08 13:05:38 -04:00
use Aviat\AnimeClient\Types\{
MangaPage
};
2019-12-09 14:34:23 -05:00
/**
* Model for handling requests dealing with the manga list
*/
2018-08-08 13:05:38 -04:00
class Manga extends API {
use MediaTrait;
2017-03-01 21:52:30 -05:00
protected string $type = 'manga';
/**
* Get a category out of the full list
*
* @param string $status
* @return array
*/
2020-10-21 18:52:12 -04:00
public function getList(string $status): array
{
2017-03-07 18:41:51 -05:00
if ($status === 'All')
{
$data = $this->kitsuModel->getFullOrganizedMangaList();
foreach($data as &$section)
{
$this->sortByName($section, 'manga');
}
2018-08-22 13:43:04 -04:00
return $data;
2017-03-07 18:41:51 -05:00
}
2017-03-28 14:36:23 -04:00
2017-03-01 21:52:30 -05:00
$APIstatus = MangaReadingStatus::TITLE_TO_KITSU[$status];
$data = $this->mapByStatus($this->kitsuModel->getMangaList($APIstatus));
$this->sortByName($data[$status], 'manga');
2018-08-08 13:05:38 -04:00
return $data[$status];
}
2016-04-14 17:51:00 -04:00
/**
* Get the details of a manga
*
* @param string $manga_id
2018-08-08 13:05:38 -04:00
* @return MangaPage
2016-04-14 17:51:00 -04:00
*/
2020-10-21 18:52:12 -04:00
public function getManga(string $manga_id): MangaPage
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
}
/**
* Get the details of a random manga
*
* @return MangaPage
*/
public function getRandomManga(): MangaPage
{
return $this->kitsuModel->getRandomManga();
}
/**
* Get anime by its kitsu id
*
* @param string $animeId
2018-08-08 13:05:38 -04:00
* @return MangaPage
*/
2018-08-08 13:05:38 -04:00
public function getMangaById(string $animeId): MangaPage
{
return $this->kitsuModel->getMangaById($animeId);
}
2020-04-21 19:22:56 -04:00
/**
* Get recent reading history
*
* @return array
*/
public function getHistory(): array
{
return $this->kitsuModel->getMangaHistory();
}
/**
* Map transformed anime data to be organized by reading status
*
* @param array $data
* @return array
*/
2018-02-02 09:50:58 -05:00
private function mapByStatus(array $data): array
{
$output = [
2017-03-01 21:52:30 -05:00
Title::READING => [],
Title::PLAN_TO_READ => [],
Title::ON_HOLD => [],
Title::DROPPED => [],
Title::COMPLETED => [],
];
2020-10-21 18:52:12 -04:00
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;
}
2018-08-08 13:05:38 -04:00
unset($entry);
return $output;
}
}
// End of MangaModel.php