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 Amp\Artax\Request;
|
2016-12-21 12:46:20 -05:00
|
|
|
use Aviat\AnimeClient\API\AbstractListItem;
|
2017-01-06 21:39:01 -05:00
|
|
|
use Aviat\Ion\Di\ContainerAware;
|
|
|
|
use Aviat\Ion\Json;
|
|
|
|
use RuntimeException;
|
2016-12-21 12:46:20 -05:00
|
|
|
|
2017-01-06 21:39:01 -05:00
|
|
|
/**
|
|
|
|
* CRUD operations for Kitsu list items
|
|
|
|
*/
|
|
|
|
class ListItem extends AbstractListItem {
|
|
|
|
use ContainerAware;
|
2016-12-21 12:46:20 -05:00
|
|
|
use KitsuTrait;
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
private function getAuthHeader()
|
2017-01-06 21:39:01 -05:00
|
|
|
{
|
2017-03-28 16:52:27 -04:00
|
|
|
$cache = $this->getContainer()->get('cache');
|
|
|
|
$cacheItem = $cache->getItem('kitsu-auth-token');
|
2017-02-08 15:48:20 -05:00
|
|
|
$sessionSegment = $this->getContainer()
|
|
|
|
->get('session')
|
|
|
|
->getSegment(SESSION_SEGMENT);
|
|
|
|
|
2017-02-17 11:37:22 -05:00
|
|
|
if ( ! is_null($sessionSegment->get('auth_token')))
|
2017-02-08 15:48:20 -05:00
|
|
|
{
|
|
|
|
$token = $sessionSegment->get('auth_token');
|
|
|
|
return "bearer {$token}";
|
|
|
|
}
|
|
|
|
|
2017-03-28 16:52:27 -04:00
|
|
|
if ($cacheItem->isHit())
|
|
|
|
{
|
|
|
|
$token = $cacheItem->get();
|
|
|
|
return "bearer {$token}";
|
|
|
|
}
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
return FALSE;
|
2017-01-06 21:39:01 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
public function create(array $data): Request
|
2016-12-21 12:46:20 -05:00
|
|
|
{
|
2017-02-08 00:44:57 -05:00
|
|
|
$body = [
|
|
|
|
'data' => [
|
|
|
|
'type' => 'libraryEntries',
|
|
|
|
'attributes' => [
|
|
|
|
'status' => $data['status'],
|
|
|
|
'progress' => $data['progress'] ?? 0
|
|
|
|
],
|
|
|
|
'relationships' => [
|
|
|
|
'user' => [
|
|
|
|
'data' => [
|
|
|
|
'id' => $data['user_id'],
|
|
|
|
'type' => 'users'
|
|
|
|
]
|
2017-01-09 20:36:48 -05:00
|
|
|
],
|
2017-02-08 00:44:57 -05:00
|
|
|
'media' => [
|
|
|
|
'data' => [
|
|
|
|
'id' => $data['id'],
|
|
|
|
'type' => $data['type']
|
2017-01-10 12:35:46 -05:00
|
|
|
]
|
2017-01-09 20:36:48 -05:00
|
|
|
]
|
|
|
|
]
|
2017-02-08 00:44:57 -05:00
|
|
|
]
|
|
|
|
];
|
2017-02-08 15:48:20 -05:00
|
|
|
|
|
|
|
$authHeader = $this->getAuthHeader();
|
|
|
|
|
|
|
|
$request = $this->requestBuilder->newRequest('POST', 'library-entries');
|
|
|
|
|
|
|
|
if ($authHeader !== FALSE)
|
|
|
|
{
|
|
|
|
$request = $request->setHeader('Authorization', $authHeader);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $request->setJsonBody($body)
|
2017-02-08 00:44:57 -05:00
|
|
|
->getFullRequest();
|
2017-01-09 20:36:48 -05:00
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
// return ($response->getStatus() === 201);
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
public function delete(string $id): Request
|
2016-12-21 12:46:20 -05:00
|
|
|
{
|
2017-02-08 15:48:20 -05:00
|
|
|
$authHeader = $this->getAuthHeader();
|
|
|
|
$request = $this->requestBuilder->newRequest('DELETE', "library-entries/{$id}");
|
|
|
|
|
|
|
|
if ($authHeader !== FALSE)
|
|
|
|
{
|
|
|
|
$request = $request->setHeader('Authorization', $authHeader);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $request->getFullRequest();
|
|
|
|
|
|
|
|
// return ($response->getStatus() === 204);
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function get(string $id): array
|
|
|
|
{
|
2017-02-09 20:10:13 -05:00
|
|
|
$authHeader = $this->getAuthHeader();
|
|
|
|
|
2017-02-08 00:44:57 -05:00
|
|
|
$request = $this->requestBuilder->newRequest('GET', "library-entries/{$id}")
|
|
|
|
->setQuery([
|
|
|
|
'include' => 'media,media.genres,media.mappings'
|
2017-02-09 20:10:13 -05:00
|
|
|
]);
|
|
|
|
|
|
|
|
if ($authHeader !== FALSE)
|
|
|
|
{
|
|
|
|
$request = $request->setHeader('Authorization', $authHeader);
|
|
|
|
}
|
|
|
|
|
|
|
|
$request = $request->getFullRequest();
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-02-08 00:44:57 -05:00
|
|
|
$response = \Amp\wait((new \Amp\Artax\Client)->request($request));
|
|
|
|
return Json::decode($response->getBody());
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 15:48:20 -05:00
|
|
|
public function update(string $id, array $data): Request
|
2016-12-21 12:46:20 -05:00
|
|
|
{
|
2017-02-09 20:10:13 -05:00
|
|
|
$authHeader = $this->getAuthHeader();
|
2017-01-06 21:39:01 -05:00
|
|
|
$requestData = [
|
|
|
|
'data' => [
|
|
|
|
'id' => $id,
|
|
|
|
'type' => 'libraryEntries',
|
|
|
|
'attributes' => $data
|
|
|
|
]
|
|
|
|
];
|
2017-02-09 20:10:13 -05:00
|
|
|
|
|
|
|
$request = $this->requestBuilder->newRequest('PATCH', "library-entries/{$id}")
|
|
|
|
->setJsonBody($requestData);
|
|
|
|
|
|
|
|
if ($authHeader !== FALSE)
|
|
|
|
{
|
|
|
|
$request = $request->setHeader('Authorization', $authHeader);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $request->getFullRequest();
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
}
|