2016-12-21 12:46:20 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2016-12-21 12:46:20 -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>
|
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
|
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;
|
2016-12-21 12:46:20 -05:00
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
use const Aviat\AnimeClient\SESSION_SEGMENT;
|
|
|
|
|
|
|
|
use function Amp\wait;
|
|
|
|
|
2017-02-14 15:29:13 -05:00
|
|
|
use Amp\Artax\{Client, Request};
|
2017-01-05 13:41:32 -05:00
|
|
|
use Aviat\AnimeClient\AnimeClient;
|
2017-04-05 13:01:51 -04:00
|
|
|
use Aviat\AnimeClient\API\{FailedResponseException, Kitsu as K};
|
2016-12-22 21:36:23 -05:00
|
|
|
use Aviat\Ion\Json;
|
2016-12-21 12:46:20 -05:00
|
|
|
|
|
|
|
trait KitsuTrait {
|
2017-02-07 13:27:41 -05:00
|
|
|
|
2017-02-07 13:11:42 -05:00
|
|
|
/**
|
|
|
|
* The request builder for the MAL API
|
2017-03-20 19:08:33 -04:00
|
|
|
* @var KitsuRequestBuilder
|
2017-02-07 13:11:42 -05:00
|
|
|
*/
|
|
|
|
protected $requestBuilder;
|
2017-02-07 13:27:41 -05:00
|
|
|
|
2017-02-07 13:11:42 -05:00
|
|
|
/**
|
|
|
|
* Set the request builder object
|
|
|
|
*
|
|
|
|
* @param KitsuRequestBuilder $requestBuilder
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public function setRequestBuilder($requestBuilder): self
|
|
|
|
{
|
|
|
|
$this->requestBuilder = $requestBuilder;
|
|
|
|
return $this;
|
|
|
|
}
|
2017-01-06 21:39:01 -05:00
|
|
|
|
2016-12-21 12:46:20 -05:00
|
|
|
/**
|
2017-02-08 15:48:20 -05:00
|
|
|
* Create a request object
|
2016-12-22 21:36:23 -05:00
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $url
|
|
|
|
* @param array $options
|
2017-02-14 15:29:13 -05:00
|
|
|
* @return \Amp\Artax\Request
|
2016-12-22 21:36:23 -05:00
|
|
|
*/
|
2017-02-14 15:29:13 -05:00
|
|
|
public function setUpRequest(string $type, string $url, array $options = []): Request
|
2016-12-22 21:36:23 -05:00
|
|
|
{
|
2017-02-08 15:48:20 -05:00
|
|
|
$request = $this->requestBuilder->newRequest($type, $url);
|
2016-12-22 21:36:23 -05:00
|
|
|
|
2017-01-09 20:36:48 -05:00
|
|
|
$sessionSegment = $this->getContainer()
|
|
|
|
->get('session')
|
2017-02-08 15:48:20 -05:00
|
|
|
->getSegment(SESSION_SEGMENT);
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2017-03-22 11:41:25 -04:00
|
|
|
$cache = $this->getContainer()->get('cache');
|
|
|
|
$cacheItem = $cache->getItem('kitsu-auth-token');
|
|
|
|
$token = null;
|
|
|
|
|
|
|
|
|
2017-02-17 11:37:22 -05:00
|
|
|
if ($sessionSegment->get('auth_token') !== NULL && $url !== K::AUTH_URL)
|
2017-01-09 20:36:48 -05:00
|
|
|
{
|
|
|
|
$token = $sessionSegment->get('auth_token');
|
2017-03-22 12:28:19 -04:00
|
|
|
if ( ! $cacheItem->isHit())
|
|
|
|
{
|
|
|
|
$cacheItem->set($token);
|
|
|
|
$cacheItem->save();
|
|
|
|
}
|
2017-03-22 11:41:25 -04:00
|
|
|
}
|
|
|
|
else if ($sessionSegment->get('auth_token') === NULL && $cacheItem->isHit())
|
|
|
|
{
|
|
|
|
$token = $cacheItem->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! is_null($token))
|
|
|
|
{
|
2017-02-08 15:48:20 -05:00
|
|
|
$request = $request->setAuth('bearer', $token);
|
|
|
|
}
|
2017-03-22 11:41:25 -04:00
|
|
|
|
2017-02-09 20:10:13 -05:00
|
|
|
if (array_key_exists('form_params', $options))
|
|
|
|
{
|
|
|
|
$request->setFormFields($options['form_params']);
|
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
|
|
|
if (array_key_exists('query', $options))
|
|
|
|
{
|
|
|
|
$request->setQuery($options['query']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('body', $options))
|
|
|
|
{
|
|
|
|
$request->setJsonBody($options['body']);
|
2017-01-05 13:41:32 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
return $request->getFullRequest();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make a request
|
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $url
|
|
|
|
* @param array $options
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
private function getResponse(string $type, string $url, array $options = [])
|
|
|
|
{
|
|
|
|
$request = $this->setUpRequest($type, $url, $options);
|
2016-12-22 21:36:23 -05:00
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
$response = wait((new Client)->request($request));
|
2017-01-09 20:36:48 -05:00
|
|
|
|
2017-02-04 15:18:34 -05:00
|
|
|
return $response;
|
2017-01-06 21:39:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-08 15:48:20 -05:00
|
|
|
* Make a request
|
2017-01-06 21:39:01 -05:00
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $url
|
|
|
|
* @param array $options
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function request(string $type, string $url, array $options = []): array
|
|
|
|
{
|
2017-02-17 11:37:22 -05:00
|
|
|
$logger = NULL;
|
2017-01-06 21:39:01 -05:00
|
|
|
if ($this->getContainer())
|
|
|
|
{
|
2017-02-07 13:11:42 -05:00
|
|
|
$logger = $this->container->getLogger('kitsu-request');
|
2017-01-06 21:39:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$response = $this->getResponse($type, $url, $options);
|
2016-12-22 21:36:23 -05:00
|
|
|
|
2017-02-17 11:37:22 -05:00
|
|
|
if ((int) $response->getStatus() > 299 OR (int) $response->getStatus() < 200)
|
2016-12-22 21:36:23 -05:00
|
|
|
{
|
|
|
|
if ($logger)
|
|
|
|
{
|
2017-04-05 13:01:51 -04:00
|
|
|
$logger->warning('Non 200 response for api call', (array)$response);
|
2016-12-22 21:36:23 -05:00
|
|
|
}
|
2017-04-05 13:01:51 -04:00
|
|
|
|
|
|
|
throw new FailedResponseException('Failed to get the proper response from the API');
|
2016-12-22 21:36:23 -05:00
|
|
|
}
|
|
|
|
|
2017-03-20 19:08:33 -04:00
|
|
|
return Json::decode($response->getBody(), TRUE);
|
2016-12-22 21:36:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove some boilerplate for get requests
|
|
|
|
*
|
2017-02-17 11:37:22 -05:00
|
|
|
* @param mixed ...$args
|
2016-12-22 21:36:23 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getRequest(...$args): array
|
|
|
|
{
|
|
|
|
return $this->request('GET', ...$args);
|
|
|
|
}
|
|
|
|
|
2017-01-06 21:39:01 -05:00
|
|
|
/**
|
|
|
|
* Remove some boilerplate for patch requests
|
|
|
|
*
|
2017-02-17 11:37:22 -05:00
|
|
|
* @param mixed ...$args
|
2017-01-06 21:39:01 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function patchRequest(...$args): array
|
|
|
|
{
|
|
|
|
return $this->request('PATCH', ...$args);
|
|
|
|
}
|
|
|
|
|
2016-12-22 21:36:23 -05:00
|
|
|
/**
|
2017-01-03 20:29:43 -05:00
|
|
|
* Remove some boilerplate for post requests
|
2016-12-22 21:36:23 -05:00
|
|
|
*
|
2017-02-17 11:37:22 -05:00
|
|
|
* @param mixed ...$args
|
2016-12-22 21:36:23 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function postRequest(...$args): array
|
|
|
|
{
|
2017-02-17 11:37:22 -05:00
|
|
|
$logger = NULL;
|
2017-01-06 21:39:01 -05:00
|
|
|
if ($this->getContainer())
|
|
|
|
{
|
2017-02-07 13:11:42 -05:00
|
|
|
$logger = $this->container->getLogger('kitsu-request');
|
2017-01-06 21:39:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$response = $this->getResponse('POST', ...$args);
|
|
|
|
$validResponseCodes = [200, 201];
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
if ( ! in_array((int) $response->getStatus(), $validResponseCodes))
|
2017-01-06 21:39:01 -05:00
|
|
|
{
|
|
|
|
if ($logger)
|
|
|
|
{
|
2017-02-04 15:18:34 -05:00
|
|
|
$logger->warning('Non 201 response for POST api call', $response->getBody());
|
2017-01-06 21:39:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return JSON::decode($response->getBody(), TRUE);
|
2016-12-22 21:36:23 -05:00
|
|
|
}
|
2017-01-03 20:29:43 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove some boilerplate for delete requests
|
|
|
|
*
|
2017-02-17 11:37:22 -05:00
|
|
|
* @param mixed ...$args
|
2017-01-06 21:39:01 -05:00
|
|
|
* @return bool
|
2017-01-03 20:29:43 -05:00
|
|
|
*/
|
2017-01-06 21:39:01 -05:00
|
|
|
protected function deleteRequest(...$args): bool
|
2017-01-03 20:29:43 -05:00
|
|
|
{
|
2017-01-06 21:39:01 -05:00
|
|
|
$response = $this->getResponse('DELETE', ...$args);
|
2017-02-08 15:48:20 -05:00
|
|
|
return ((int) $response->getStatus() === 204);
|
2017-01-03 20:29:43 -05:00
|
|
|
}
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|