2016-12-20 12:55:43 -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
|
|
|
|
*
|
|
|
|
* @package AnimeListClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2017-01-11 10:30:53 -05:00
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
2016-12-20 12:55:43 -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:30:53 -05:00
|
|
|
*/namespace Aviat\AnimeClient\API\Kitsu\Transformer;
|
2016-12-20 12:55:43 -05:00
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu;
|
2016-12-20 12:55:43 -05:00
|
|
|
use Aviat\Ion\Transformer\AbstractTransformer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transformer for anime list
|
|
|
|
*/
|
|
|
|
class AnimeListTransformer 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)
|
|
|
|
{
|
2016-12-21 12:46:20 -05:00
|
|
|
/* ?><pre><?= print_r($item, TRUE) ?></pre><?php
|
2017-01-03 20:29:43 -05:00
|
|
|
// die(); */
|
2017-01-05 22:24:45 -05:00
|
|
|
$anime = $item['anime']['attributes'] ?? $item['anime'];
|
|
|
|
$genres = $item['genres'] ?? [];
|
2016-12-20 12:55:43 -05:00
|
|
|
|
2016-12-21 12:46:20 -05:00
|
|
|
$rating = (int) 2 * $item['attributes']['rating'];
|
2016-12-20 12:55:43 -05:00
|
|
|
|
2017-01-10 21:13:44 -05:00
|
|
|
$total_episodes = array_key_exists('episodeCount', $anime) && (int) $anime['episodeCount'] !== 0
|
2017-01-05 22:24:45 -05:00
|
|
|
? (int) $anime['episodeCount']
|
2016-12-20 12:55:43 -05:00
|
|
|
: '-';
|
|
|
|
|
|
|
|
return [
|
|
|
|
'id' => $item['id'],
|
|
|
|
'episodes' => [
|
2016-12-21 12:46:20 -05:00
|
|
|
'watched' => $item['attributes']['progress'],
|
2016-12-20 12:55:43 -05:00
|
|
|
'total' => $total_episodes,
|
2017-01-05 22:24:45 -05:00
|
|
|
'length' => $anime['episodeLength'],
|
2016-12-20 12:55:43 -05:00
|
|
|
],
|
|
|
|
'airing' => [
|
2017-01-06 21:39:01 -05:00
|
|
|
'status' => Kitsu::getAiringStatus($anime['startDate'], $anime['endDate']),
|
2017-01-05 22:24:45 -05:00
|
|
|
'started' => $anime['startDate'],
|
|
|
|
'ended' => $anime['endDate']
|
2016-12-20 12:55:43 -05:00
|
|
|
],
|
|
|
|
'anime' => [
|
2017-01-05 22:24:45 -05:00
|
|
|
'age_rating' => $anime['ageRating'],
|
|
|
|
'titles' => Kitsu::filterTitles($anime),
|
|
|
|
'slug' => $anime['slug'],
|
|
|
|
'url' => $anime['url'] ?? '',
|
|
|
|
'type' => $this->string($anime['showType'])->upperCaseFirst()->__toString(),
|
|
|
|
'image' => $anime['posterImage']['small'],
|
2016-12-22 21:36:23 -05:00
|
|
|
'genres' => $genres,
|
2016-12-20 12:55:43 -05:00
|
|
|
],
|
2016-12-21 12:46:20 -05:00
|
|
|
'watching_status' => $item['attributes']['status'],
|
|
|
|
'notes' => $item['attributes']['notes'],
|
|
|
|
'rewatching' => (bool) $item['attributes']['reconsuming'],
|
|
|
|
'rewatched' => (int) $item['attributes']['reconsumeCount'],
|
2016-12-22 21:36:23 -05:00
|
|
|
'user_rating' => ($rating === 0) ? '-' : $rating,
|
2016-12-21 12:46:20 -05:00
|
|
|
'private' => (bool) $item['attributes']['private'] ?? false,
|
2016-12-20 12:55:43 -05:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert transformed data to
|
|
|
|
* api response format
|
|
|
|
*
|
|
|
|
* @param array $item Transformed library item
|
|
|
|
* @return array API library item
|
|
|
|
*/
|
|
|
|
public function untransform($item)
|
|
|
|
{
|
|
|
|
// Messy mapping of boolean values to their API string equivalents
|
2017-01-06 21:39:01 -05:00
|
|
|
$privacy = 'false';
|
2016-12-20 12:55:43 -05:00
|
|
|
if (array_key_exists('private', $item) && $item['private'])
|
|
|
|
{
|
2017-01-06 21:39:01 -05:00
|
|
|
$privacy = 'true';
|
2016-12-20 12:55:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$rewatching = 'false';
|
|
|
|
if (array_key_exists('rewatching', $item) && $item['rewatching'])
|
|
|
|
{
|
|
|
|
$rewatching = 'true';
|
|
|
|
}
|
|
|
|
|
2017-01-06 21:39:01 -05:00
|
|
|
$untransformed = [
|
2016-12-20 12:55:43 -05:00
|
|
|
'id' => $item['id'],
|
2017-01-06 21:39:01 -05:00
|
|
|
'data' => [
|
|
|
|
'status' => $item['watching_status'],
|
|
|
|
'rating' => $item['user_rating'] / 2,
|
|
|
|
'reconsuming' => $rewatching,
|
|
|
|
'reconsumeCount' => $item['rewatched'],
|
|
|
|
'notes' => $item['notes'],
|
|
|
|
'progress' => $item['episodes_watched'],
|
|
|
|
'private' => $privacy
|
|
|
|
]
|
2016-12-20 12:55:43 -05:00
|
|
|
];
|
2017-01-06 21:39:01 -05:00
|
|
|
|
|
|
|
if ((int) $untransformed['data']['rating'] === 0)
|
|
|
|
{
|
|
|
|
unset($untransformed['data']['rating']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $untransformed;
|
2016-12-20 12:55:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// End of AnimeListTransformer.php
|