HummingBirdAnimeClient/src/API/MAL/MALTrait.php

191 lines
4.1 KiB
PHP
Raw Normal View History

2017-01-12 15:41:20 -05:00
<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2017-01-12 15:41: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-12 15:41:20 -05:00
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
2017-01-12 15:41:20 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 4.0
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
2017-01-12 15:41:20 -05:00
*/
namespace Aviat\AnimeClient\API\MAL;
use function Amp\Promise\wait;
2017-01-12 15:41:20 -05:00
use Aviat\AnimeClient\API\{
HummingbirdClient,
2017-01-12 15:41:20 -05:00
MAL as M,
XML
};
trait MALTrait {
/**
* The request builder for the MAL API
* @var MALRequestBuilder
*/
protected $requestBuilder;
2017-01-12 15:41:20 -05:00
/**
* The base url for api requests
* @var string $base_url
*/
protected $baseUrl = M::BASE_URL;
/**
* HTTP headers to send with every request
*
* @var array
*/
protected $defaultHeaders = [
2017-02-04 15:18:34 -05:00
'Accept' => 'text/xml',
'Accept-Encoding' => 'gzip',
'Content-type' => 'application/x-www-form-urlencoded',
2017-01-12 15:41:20 -05:00
'User-Agent' => "Tim's Anime Client/4.0"
];
/**
* Set the request builder object
*
* @param MALRequestBuilder $requestBuilder
* @return self
*/
public function setRequestBuilder($requestBuilder): self
{
$this->requestBuilder = $requestBuilder;
return $this;
}
2017-01-12 15:41:20 -05:00
/**
* Create a request object
2017-01-12 15:41:20 -05:00
*
* @param string $type
* @param string $url
* @param array $options
* @return \Amp\Artax\Response
2017-01-12 15:41:20 -05:00
*/
public function setUpRequest(string $type, string $url, array $options = [])
2017-01-12 15:41:20 -05:00
{
$config = $this->container->get('config');
2017-02-04 15:18:34 -05:00
$request = $this->requestBuilder
->newRequest($type, $url)
->setBasicAuth($config->get(['mal','username']), $config->get(['mal','password']));
2017-02-04 15:18:34 -05:00
if (array_key_exists('query', $options))
2017-02-04 15:18:34 -05:00
{
$request = $request->setQuery($options['query']);
2017-02-04 15:18:34 -05:00
}
if (array_key_exists('body', $options))
{
$request = $request->setBody($options['body']);
2017-02-04 15:18:34 -05:00
}
return $request->getFullRequest();
}
2017-02-04 15:18:34 -05:00
/**
* Make a request
*
* @param string $type
* @param string $url
* @param array $options
* @return \Amp\Artax\Response
*/
private function getResponse(string $type, string $url, array $options = [])
{
2017-02-17 10:55:17 -05:00
$logger = NULL;
if ($this->getContainer())
{
$logger = $this->container->getLogger('mal-request');
}
$request = $this->setUpRequest($type, $url, $options);
$response = wait((new HummingbirdClient)->request($request));
2017-02-04 15:18:34 -05:00
$logger->debug('MAL api response', [
2017-02-04 15:18:34 -05:00
'status' => $response->getStatus(),
'reason' => $response->getReason(),
'body' => $response->getBody(),
'headers' => $response->getHeaders(),
'requestHeaders' => $request->getHeaders(),
2017-02-04 15:18:34 -05:00
]);
2017-01-12 15:41:20 -05:00
2017-02-04 15:18:34 -05:00
return $response;
2017-01-12 15:41:20 -05:00
}
/**
* Make a request
2017-01-12 15:41:20 -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 10:55:17 -05:00
$logger = NULL;
2017-01-12 15:41:20 -05:00
if ($this->getContainer())
{
$logger = $this->container->getLogger('mal-request');
2017-01-12 15:41:20 -05:00
}
$response = $this->getResponse($type, $url, $options);
2017-02-17 10:55:17 -05:00
if ((int) $response->getStatus() > 299 OR (int) $response->getStatus() < 200)
2017-01-12 15:41:20 -05:00
{
if ($logger)
{
2017-02-04 15:18:34 -05:00
$logger->warning('Non 200 response for api call', $response->getBody());
2017-01-12 15:41:20 -05:00
}
}
return XML::toArray(wait($response->getBody()));
2017-01-12 15:41:20 -05:00
}
/**
* Remove some boilerplate for get requests
*
2017-02-17 10:55:17 -05:00
* @param mixed ...$args
2017-01-12 15:41:20 -05:00
* @return array
*/
protected function getRequest(...$args): array
{
return $this->request('GET', ...$args);
}
/**
* Remove some boilerplate for post requests
*
2017-02-17 10:55:17 -05:00
* @param mixed ...$args
2017-01-12 15:41:20 -05:00
* @return array
*/
protected function postRequest(...$args): array
{
2017-02-17 10:55:17 -05:00
$logger = NULL;
2017-01-12 15:41:20 -05:00
if ($this->getContainer())
{
$logger = $this->container->getLogger('mal-request');
2017-01-12 15:41:20 -05:00
}
$response = $this->getResponse('POST', ...$args);
$validResponseCodes = [200, 201];
2017-02-01 09:53:02 -05:00
if ( ! in_array((int) $response->getStatus(), $validResponseCodes))
2017-01-12 15:41:20 -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-12 15:41:20 -05:00
}
}
2017-02-01 09:53:02 -05:00
return XML::toArray($response->getBody());
2017-01-12 15:41:20 -05:00
}
}