2017-01-05 13:41:32 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2017-01-05 13:41:32 -05:00
|
|
|
*
|
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
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
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2017-01-12 15:41:20 -05:00
|
|
|
use Aviat\AnimeClient\API\{JsonAPI, Kitsu};
|
2018-08-08 10:12:45 -04:00
|
|
|
use Aviat\AnimeClient\Types\Anime;
|
2017-01-05 13:41:32 -05:00
|
|
|
use Aviat\Ion\Transformer\AbstractTransformer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transformer for anime description page
|
|
|
|
*/
|
2018-08-08 10:12:45 -04:00
|
|
|
final class AnimeTransformer extends AbstractTransformer {
|
2017-01-05 13:41:32 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert raw api response to a more
|
|
|
|
* logical and workable structure
|
|
|
|
*
|
|
|
|
* @param array $item API library item
|
2018-08-08 10:12:45 -04:00
|
|
|
* @return Anime
|
2017-01-05 13:41:32 -05:00
|
|
|
*/
|
2018-08-08 10:12:45 -04:00
|
|
|
public function transform($item): Anime
|
2017-01-05 13:41:32 -05:00
|
|
|
{
|
2017-01-12 15:41:20 -05:00
|
|
|
$item['included'] = JsonAPI::organizeIncludes($item['included']);
|
2017-09-12 12:18:31 -04:00
|
|
|
$genres = $item['included']['categories'] ?? [];
|
|
|
|
$item['genres'] = array_column($genres, 'title') ?? [];
|
2017-01-05 13:41:32 -05:00
|
|
|
sort($item['genres']);
|
2017-04-13 11:15:16 -04:00
|
|
|
|
2018-08-10 20:10:19 -04:00
|
|
|
$title = $item['canonicalTitle'];
|
2018-08-20 13:01:16 -04:00
|
|
|
$titles = array_unique(array_diff($item['titles'], [$title]));
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2018-08-08 10:12:45 -04:00
|
|
|
return new Anime([
|
2018-01-31 10:55:20 -05:00
|
|
|
'age_rating' => $item['ageRating'],
|
|
|
|
'age_rating_guide' => $item['ageRatingGuide'],
|
2017-01-05 13:41:32 -05:00
|
|
|
'cover_image' => $item['posterImage']['small'],
|
|
|
|
'episode_count' => $item['episodeCount'],
|
|
|
|
'episode_length' => $item['episodeLength'],
|
2018-01-31 10:55:20 -05:00
|
|
|
'genres' => $item['genres'],
|
|
|
|
'id' => $item['id'],
|
|
|
|
'show_type' => $this->string($item['showType'])->upperCaseFirst()->__toString(),
|
|
|
|
'slug' => $item['slug'],
|
|
|
|
'status' => Kitsu::getAiringStatus($item['startDate'], $item['endDate']),
|
|
|
|
'streaming_links' => Kitsu::parseStreamingLinks($item['included']),
|
2017-01-05 13:41:32 -05:00
|
|
|
'synopsis' => $item['synopsis'],
|
2018-08-08 10:12:45 -04:00
|
|
|
'title' => $title,
|
2018-01-31 10:55:20 -05:00
|
|
|
'titles' => $titles,
|
|
|
|
'trailer_id' => $item['youtubeVideoId'],
|
2017-01-05 13:41:32 -05:00
|
|
|
'url' => "https://kitsu.io/anime/{$item['slug']}",
|
2018-08-08 10:12:45 -04:00
|
|
|
]);
|
2017-01-05 13:41:32 -05:00
|
|
|
}
|
2016-12-22 21:36:23 -05:00
|
|
|
}
|