2016-10-20 22:09:36 -04:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
2016-12-20 12:58:37 -05:00
|
|
|
* 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
|
|
|
*
|
2016-12-20 12:58:37 -05:00
|
|
|
* @package AnimeListClient
|
2016-08-30 10:01:18 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2016 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2016-12-20 12:58:37 -05:00
|
|
|
* @version 4.0
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2015-06-16 11:11:35 -04:00
|
|
|
*/
|
2016-01-04 16:58:33 -05:00
|
|
|
|
2015-09-14 19:54:34 -04:00
|
|
|
namespace Aviat\AnimeClient\Model;
|
2015-09-14 10:54:50 -04:00
|
|
|
|
2016-12-20 12:58:37 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\MangaReadingStatus;
|
|
|
|
use Aviat\AnimeClient\API\Kitsu\Transformer;
|
2017-01-03 21:06:49 -05:00
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
2016-10-20 22:09:36 -04:00
|
|
|
use Aviat\Ion\Json;
|
|
|
|
use GuzzleHttp\Cookie\SetCookie;
|
|
|
|
use RuntimeException;
|
2015-06-16 11:11:35 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Model for handling requests dealing with the manga list
|
|
|
|
*/
|
2015-09-14 10:54:50 -04:00
|
|
|
class Manga extends API {
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
const READING = 'Reading';
|
|
|
|
const PLAN_TO_READ = 'Plan to Read';
|
|
|
|
const DROPPED = 'Dropped';
|
|
|
|
const ON_HOLD = 'On Hold';
|
|
|
|
const COMPLETED = 'Completed';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Map API constants to display constants
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $const_map = [
|
|
|
|
MangaReadingStatus::READING => self::READING,
|
|
|
|
MangaReadingStatus::PLAN_TO_READ => self::PLAN_TO_READ,
|
|
|
|
MangaReadingStatus::ON_HOLD => self::ON_HOLD,
|
|
|
|
MangaReadingStatus::DROPPED => self::DROPPED,
|
|
|
|
MangaReadingStatus::COMPLETED => self::COMPLETED
|
|
|
|
];
|
|
|
|
|
2017-01-03 21:06:49 -05:00
|
|
|
public function __construct(ContainerInterface $container)
|
|
|
|
{
|
|
|
|
parent::__construct($container);
|
|
|
|
|
|
|
|
$this->kitsuModel = $container->get('kitsu-model');
|
|
|
|
}
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2016-02-09 20:12:39 -05:00
|
|
|
/**
|
|
|
|
* Make an authenticated manga API call
|
|
|
|
*
|
|
|
|
* @param string $type - the HTTP verb
|
|
|
|
* @param string $url
|
|
|
|
* @param string|null $json
|
|
|
|
* @return array
|
|
|
|
*/
|
2016-10-20 22:09:36 -04:00
|
|
|
protected function _manga_api_call(string $type, string $url, $json = NULL): array
|
2016-02-02 11:34:03 -05:00
|
|
|
{
|
|
|
|
$token = $this->container->get('auth')
|
|
|
|
->get_auth_token();
|
|
|
|
|
|
|
|
// Set the token cookie, with the authentication token
|
|
|
|
// from the auth class.
|
|
|
|
$cookieJar = $this->cookieJar;
|
|
|
|
$cookie_data = new SetCookie([
|
|
|
|
'Name' => 'token',
|
|
|
|
'Value' => $token,
|
|
|
|
'Domain' => 'hummingbird.me'
|
|
|
|
]);
|
|
|
|
$cookieJar->setCookie($cookie_data);
|
|
|
|
|
2016-02-02 21:28:32 -05:00
|
|
|
$config = [
|
|
|
|
'cookies' => $cookieJar
|
|
|
|
];
|
|
|
|
|
|
|
|
if ( ! is_null($json))
|
|
|
|
{
|
|
|
|
$config['json'] = $json;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $this->client->request(strtoupper($type), $url, $config);
|
2016-02-02 11:34:03 -05:00
|
|
|
|
|
|
|
return [
|
|
|
|
'statusCode' => $result->getStatusCode(),
|
|
|
|
'body' => $result->getBody()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2015-06-24 16:01:35 -04:00
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
/**
|
|
|
|
* Get a category out of the full list
|
|
|
|
*
|
|
|
|
* @param string $status
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_list($status)
|
|
|
|
{
|
2017-01-03 21:06:49 -05:00
|
|
|
$data = $this->kitsuModel->getMangaList($status);
|
|
|
|
return $this->map_by_status($data)[$status];
|
|
|
|
/*$data = $this->cache->get($this, '_get_list_from_api');
|
|
|
|
return ($status !== 'All') ? $data[$status] : $data;*/
|
2015-10-05 16:54:25 -04:00
|
|
|
}
|
|
|
|
|
2015-06-16 11:11:35 -04:00
|
|
|
|
2016-04-14 17:51:00 -04:00
|
|
|
/**
|
|
|
|
* Get the details of a manga
|
|
|
|
*
|
|
|
|
* @param string $manga_id
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_manga($manga_id)
|
|
|
|
{
|
|
|
|
$raw = $this->_manga_api_call('get', "manga/{$manga_id}.json");
|
|
|
|
return Json::decode($raw['body'], TRUE);
|
|
|
|
}
|
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
/**
|
|
|
|
* Map transformed anime data to be organized by reading status
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function map_by_status($data)
|
|
|
|
{
|
|
|
|
$output = [
|
|
|
|
self::READING => [],
|
|
|
|
self::PLAN_TO_READ => [],
|
|
|
|
self::ON_HOLD => [],
|
|
|
|
self::DROPPED => [],
|
|
|
|
self::COMPLETED => [],
|
2015-06-16 11:11:35 -04:00
|
|
|
];
|
|
|
|
|
2016-07-27 13:18:52 -04:00
|
|
|
$util = $this->container->get('util');
|
|
|
|
|
2015-10-06 10:24:48 -04:00
|
|
|
foreach ($data as &$entry)
|
2015-06-16 11:11:35 -04:00
|
|
|
{
|
2017-01-03 21:06:49 -05:00
|
|
|
/*$entry['manga']['image'] = $util->get_cached_image(
|
2016-01-06 15:44:40 -05:00
|
|
|
$entry['manga']['image'],
|
|
|
|
$entry['manga']['slug'],
|
|
|
|
'manga'
|
2017-01-03 21:06:49 -05:00
|
|
|
);*/
|
2015-10-05 16:54:25 -04:00
|
|
|
$key = $this->const_map[$entry['reading_status']];
|
|
|
|
$output[$key][] = $entry;
|
2015-06-16 11:11:35 -04:00
|
|
|
}
|
|
|
|
|
2016-04-12 13:41:03 -04:00
|
|
|
foreach($output as &$val)
|
|
|
|
{
|
|
|
|
$this->sort_by_name($val, 'manga');
|
|
|
|
}
|
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
return $output;
|
2015-06-16 11:11:35 -04:00
|
|
|
}
|
|
|
|
|
2015-09-21 09:48:15 -04:00
|
|
|
/**
|
|
|
|
* Combine the two manga lists into one
|
|
|
|
* @param array $raw_data
|
|
|
|
* @return array
|
|
|
|
*/
|
2016-10-20 22:09:36 -04:00
|
|
|
private function zipperLists($raw_data)
|
2015-09-21 09:48:15 -04:00
|
|
|
{
|
2015-11-04 16:36:54 -05:00
|
|
|
return (new Transformer\MangaListsZipper($raw_data))->transform();
|
2015-09-21 09:48:15 -04:00
|
|
|
}
|
2015-06-16 11:11:35 -04:00
|
|
|
}
|
2015-10-05 16:54:25 -04:00
|
|
|
// End of MangaModel.php
|