2017-02-07 13:11:42 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2017-02-07 13:11:42 -05:00
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2017-02-07 13:11:42 -05:00
|
|
|
*
|
2020-04-10 15:39:39 -04:00
|
|
|
* PHP version 7.4
|
2017-02-07 13:11:42 -05:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2017-02-07 13:11:42 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2020-01-08 15:39:49 -05:00
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
2017-02-07 13:11:42 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-04-10 15:39:39 -04:00
|
|
|
* @version 5
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-02-07 13:11:42 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu;
|
|
|
|
|
2020-07-28 17:46:18 -04:00
|
|
|
use Amp\Http\Client\Request;
|
|
|
|
use Amp\Http\Client\Response;
|
|
|
|
use Aviat\AnimeClient\API\Anilist;
|
2020-07-28 16:11:13 -04:00
|
|
|
use Aviat\Ion\Di\ContainerAware;
|
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
2020-05-08 19:18:10 -04:00
|
|
|
|
2020-07-28 17:46:18 -04:00
|
|
|
use Aviat\Ion\Json;
|
|
|
|
use function Amp\Promise\wait;
|
|
|
|
use function Aviat\AnimeClient\getResponse;
|
2020-07-28 16:11:13 -04:00
|
|
|
use const Aviat\AnimeClient\USER_AGENT;
|
2020-05-08 19:18:10 -04:00
|
|
|
|
2017-12-08 22:32:00 -05:00
|
|
|
use Aviat\AnimeClient\API\APIRequestBuilder;
|
2017-02-07 13:11:42 -05:00
|
|
|
|
2018-08-08 10:12:45 -04:00
|
|
|
final class KitsuRequestBuilder extends APIRequestBuilder {
|
2020-05-08 19:18:10 -04:00
|
|
|
use ContainerAware;
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-02-07 13:11:42 -05:00
|
|
|
/**
|
|
|
|
* The base url for api requests
|
|
|
|
* @var string $base_url
|
|
|
|
*/
|
2020-07-28 16:11:13 -04:00
|
|
|
protected string $baseUrl = 'https://kitsu.io/api/graphql';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Valid HTTP request methods
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected array $validMethods = ['POST'];
|
2017-02-07 13:11:42 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HTTP headers to send with every request
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2020-04-10 16:35:01 -04:00
|
|
|
protected array $defaultHeaders = [
|
2020-07-28 16:11:13 -04:00
|
|
|
'User-Agent' => USER_AGENT,
|
|
|
|
'Accept' => 'application/json',
|
|
|
|
'Content-Type' => 'application/json',
|
2017-02-07 13:11:42 -05:00
|
|
|
];
|
2020-05-08 19:18:10 -04:00
|
|
|
|
|
|
|
public function __construct(ContainerInterface $container)
|
|
|
|
{
|
|
|
|
$this->setContainer($container);
|
|
|
|
}
|
2020-07-28 17:46:18 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a request object
|
|
|
|
* @param string $url
|
|
|
|
* @param array $options
|
|
|
|
* @return Request
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function setUpRequest(string $url, array $options = []): Request
|
|
|
|
{
|
|
|
|
/* $config = $this->getContainer()->get('config');
|
|
|
|
$anilistConfig = $config->get('anilist'); */
|
|
|
|
|
|
|
|
$request = $this->newRequest('POST', $url);
|
|
|
|
|
|
|
|
// You can only authenticate the request if you
|
|
|
|
// actually have an access_token saved
|
|
|
|
/* if ($config->has(['anilist', 'access_token']))
|
|
|
|
{
|
|
|
|
$request = $request->setAuth('bearer', $anilistConfig['access_token']);
|
|
|
|
} */
|
|
|
|
|
|
|
|
if (array_key_exists('form_params', $options))
|
|
|
|
{
|
|
|
|
$request = $request->setFormFields($options['form_params']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('query', $options))
|
|
|
|
{
|
|
|
|
$request = $request->setQuery($options['query']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('body', $options))
|
|
|
|
{
|
|
|
|
$request = $request->setJsonBody($options['body']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('headers', $options))
|
|
|
|
{
|
|
|
|
$request = $request->setHeaders($options['headers']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $request->getFullRequest();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run a GraphQL API query
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param array $variables
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function runQuery(string $name, array $variables = []): array
|
|
|
|
{
|
|
|
|
$file = realpath(__DIR__ . "/GraphQL/Queries/{$name}.graphql");
|
|
|
|
if ( ! file_exists($file))
|
|
|
|
{
|
|
|
|
throw new LogicException('GraphQL query file does not exist.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// $query = str_replace(["\t", "\n"], ' ', file_get_contents($file));
|
|
|
|
$query = file_get_contents($file);
|
|
|
|
$body = [
|
|
|
|
'query' => $query
|
|
|
|
];
|
|
|
|
|
|
|
|
if ( ! empty($variables))
|
|
|
|
{
|
|
|
|
$body['variables'] = [];
|
|
|
|
foreach($variables as $key => $val)
|
|
|
|
{
|
|
|
|
$body['variables'][$key] = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->postRequest([
|
|
|
|
'body' => $body
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @param array $variables
|
|
|
|
* @return Request
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function mutateRequest (string $name, array $variables = []): Request
|
|
|
|
{
|
|
|
|
$file = realpath(__DIR__ . "/GraphQL/Mutations/{$name}.graphql");
|
|
|
|
if (!file_exists($file))
|
|
|
|
{
|
|
|
|
throw new LogicException('GraphQL mutation file does not exist.');
|
|
|
|
}
|
|
|
|
|
|
|
|
// $query = str_replace(["\t", "\n"], ' ', file_get_contents($file));
|
|
|
|
$query = file_get_contents($file);
|
|
|
|
|
|
|
|
$body = [
|
|
|
|
'query' => $query
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!empty($variables)) {
|
|
|
|
$body['variables'] = [];
|
|
|
|
foreach ($variables as $key => $val)
|
|
|
|
{
|
|
|
|
$body['variables'][$key] = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->setUpRequest(Anilist::BASE_URL, [
|
|
|
|
'body' => $body,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @param array $variables
|
|
|
|
* @return array
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function mutate (string $name, array $variables = []): array
|
|
|
|
{
|
|
|
|
$request = $this->mutateRequest($name, $variables);
|
|
|
|
$response = $this->getResponseFromRequest($request);
|
|
|
|
|
|
|
|
return Json::decode(wait($response->getBody()->buffer()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make a request
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @param array $options
|
|
|
|
* @return Response
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
private function getResponse(string $url, array $options = []): Response
|
|
|
|
{
|
|
|
|
$logger = NULL;
|
|
|
|
if ($this->getContainer())
|
|
|
|
{
|
|
|
|
$logger = $this->container->getLogger('anilist-request');
|
|
|
|
}
|
|
|
|
|
|
|
|
$request = $this->setUpRequest($url, $options);
|
|
|
|
$response = getResponse($request);
|
|
|
|
|
|
|
|
$logger->debug('Anilist response', [
|
|
|
|
'status' => $response->getStatus(),
|
|
|
|
'reason' => $response->getReason(),
|
|
|
|
'body' => $response->getBody(),
|
|
|
|
'headers' => $response->getHeaders(),
|
|
|
|
'requestHeaders' => $request->getHeaders(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
private function getResponseFromRequest(Request $request): Response
|
|
|
|
{
|
|
|
|
$logger = NULL;
|
|
|
|
if ($this->getContainer())
|
|
|
|
{
|
|
|
|
$logger = $this->container->getLogger('anilist-request');
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = getResponse($request);
|
|
|
|
|
|
|
|
$logger->debug('Anilist response', [
|
|
|
|
'status' => $response->getStatus(),
|
|
|
|
'reason' => $response->getReason(),
|
|
|
|
'body' => $response->getBody(),
|
|
|
|
'headers' => $response->getHeaders(),
|
|
|
|
'requestHeaders' => $request->getHeaders(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove some boilerplate for post requests
|
|
|
|
*
|
|
|
|
* @param array $options
|
|
|
|
* @return array
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
protected function postRequest(array $options = []): array
|
|
|
|
{
|
|
|
|
$response = $this->getResponse($this->baseUrl, $options);
|
|
|
|
$validResponseCodes = [200, 201];
|
|
|
|
|
|
|
|
$logger = NULL;
|
|
|
|
if ($this->getContainer())
|
|
|
|
{
|
|
|
|
$logger = $this->container->getLogger('kitsu-request');
|
|
|
|
$logger->debug('Kitsu response', [
|
|
|
|
'status' => $response->getStatus(),
|
|
|
|
'reason' => $response->getReason(),
|
|
|
|
'body' => $response->getBody(),
|
|
|
|
'headers' => $response->getHeaders(),
|
|
|
|
//'requestHeaders' => $request->getHeaders(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! \in_array($response->getStatus(), $validResponseCodes, TRUE))
|
|
|
|
{
|
|
|
|
if ($logger !== NULL)
|
|
|
|
{
|
|
|
|
$logger->warning('Non 200 response for POST api call', (array)$response->getBody());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dump(wait($response->getBody()->buffer()));
|
|
|
|
|
|
|
|
return Json::decode(wait($response->getBody()->buffer()));
|
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
}
|