2017-01-05 13:41:32 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
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\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};
|
2017-01-05 13:41:32 -05:00
|
|
|
use Aviat\Ion\Transformer\AbstractTransformer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transformer for anime description page
|
|
|
|
*/
|
|
|
|
class AnimeTransformer extends AbstractTransformer {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert raw api response to a more
|
|
|
|
* logical and workable structure
|
|
|
|
*
|
|
|
|
* @param array $item API library item
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform($item)
|
|
|
|
{
|
2017-01-12 15:41:20 -05:00
|
|
|
$item['included'] = JsonAPI::organizeIncludes($item['included']);
|
|
|
|
$item['genres'] = array_column($item['included']['genres'], 'name') ?? [];
|
2017-01-05 13:41:32 -05:00
|
|
|
sort($item['genres']);
|
2017-01-13 16:53:56 -05:00
|
|
|
|
|
|
|
$titles = Kitsu::filterTitles($item);
|
2017-01-05 13:41:32 -05:00
|
|
|
|
|
|
|
return [
|
2017-01-16 13:49:51 -05:00
|
|
|
'slug' => $item['slug'],
|
2017-01-13 16:53:56 -05:00
|
|
|
'title' => $titles[0],
|
|
|
|
'titles' => $titles,
|
2017-01-05 22:24:45 -05:00
|
|
|
'status' => Kitsu::getAiringStatus($item['startDate'], $item['endDate']),
|
2017-01-05 13:41:32 -05:00
|
|
|
'cover_image' => $item['posterImage']['small'],
|
2017-01-13 16:53:56 -05:00
|
|
|
'show_type' => $this->string($item['showType'])->upperCaseFirst()->__toString(),
|
2017-01-05 13:41:32 -05:00
|
|
|
'episode_count' => $item['episodeCount'],
|
|
|
|
'episode_length' => $item['episodeLength'],
|
|
|
|
'synopsis' => $item['synopsis'],
|
|
|
|
'age_rating' => $item['ageRating'],
|
|
|
|
'age_rating_guide' => $item['ageRatingGuide'],
|
|
|
|
'url' => "https://kitsu.io/anime/{$item['slug']}",
|
|
|
|
'genres' => $item['genres'],
|
2017-01-13 16:53:56 -05:00
|
|
|
'streaming_links' => Kitsu::parseStreamingLinks($item['included'])
|
2017-01-05 13:41:32 -05:00
|
|
|
];
|
|
|
|
}
|
2016-12-22 21:36:23 -05:00
|
|
|
}
|