2018-08-10 20:10:19 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2018-08-10 20:10:19 -04:00
|
|
|
*
|
2019-12-03 15:17:25 -05:00
|
|
|
* PHP version 7.2
|
2018-08-10 20:10:19 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2019-12-06 09:16:35 -05:00
|
|
|
* @copyright 2015 - 2019 Timothy J. Warren
|
2018-08-10 20:10:19 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2019-12-06 09:16:35 -05:00
|
|
|
* @version 4.2
|
2018-08-10 20:10:19 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Anilist;
|
|
|
|
|
|
|
|
use const Aviat\AnimeClient\USER_AGENT;
|
|
|
|
|
|
|
|
use Aviat\AnimeClient\API\APIRequestBuilder;
|
|
|
|
|
|
|
|
final class AnilistRequestBuilder extends APIRequestBuilder {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The base url for api requests
|
|
|
|
* @var string $base_url
|
|
|
|
*/
|
2018-08-15 08:51:37 -04:00
|
|
|
protected $baseUrl = 'https://graphql.anilist.co';
|
|
|
|
|
2018-08-10 20:10:19 -04:00
|
|
|
/**
|
|
|
|
* Valid HTTP request methods
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $validMethods = ['POST'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HTTP headers to send with every request
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $defaultHeaders = [
|
|
|
|
'User-Agent' => USER_AGENT,
|
2018-08-15 08:51:37 -04:00
|
|
|
'Accept' => 'application/json',
|
|
|
|
'Content-Type' => 'application/json',
|
2018-08-10 20:10:19 -04:00
|
|
|
];
|
|
|
|
}
|