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
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2016-12-21 12:46:20 -05:00
|
|
|
*
|
2020-04-10 15:39:39 -04:00
|
|
|
* PHP version 7.4
|
2016-12-21 12:46:20 -05:00
|
|
|
*
|
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>
|
2020-01-08 15:39:49 -05:00
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
2017-01-06 23:34:56 -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-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu;
|
2016-12-21 12:46:20 -05:00
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
use Aviat\Ion\Di\Exception\ContainerException;
|
|
|
|
use Aviat\Ion\Di\Exception\NotFoundException;
|
2017-02-08 15:48:20 -05:00
|
|
|
use const Aviat\AnimeClient\SESSION_SEGMENT;
|
|
|
|
|
2017-12-08 22:32:00 -05:00
|
|
|
use function Amp\Promise\wait;
|
2018-11-29 11:00:50 -05:00
|
|
|
use function Aviat\AnimeClient\getResponse;
|
2017-12-08 22:32:00 -05:00
|
|
|
|
2020-03-11 16:26:17 -04:00
|
|
|
use Amp\Http\Client\Request;
|
2020-01-15 12:35:37 -05:00
|
|
|
use Aviat\AnimeClient\API\AbstractListItem;
|
2018-08-09 11:34:02 -04:00
|
|
|
use Aviat\AnimeClient\Types\FormItemData;
|
2017-01-06 21:39:01 -05:00
|
|
|
use Aviat\Ion\Di\ContainerAware;
|
|
|
|
use Aviat\Ion\Json;
|
2016-12-21 12:46:20 -05:00
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
use Throwable;
|
|
|
|
|
2017-01-06 21:39:01 -05:00
|
|
|
/**
|
|
|
|
* CRUD operations for Kitsu list items
|
|
|
|
*/
|
2020-01-15 12:35:37 -05:00
|
|
|
final class ListItem extends AbstractListItem {
|
2017-01-06 21:39:01 -05:00
|
|
|
use ContainerAware;
|
2016-12-21 12:46:20 -05:00
|
|
|
use KitsuTrait;
|
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
/**
|
|
|
|
* @param array $data
|
|
|
|
* @return Request
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
2017-02-08 15:48:20 -05:00
|
|
|
public function create(array $data): Request
|
2018-11-09 10:38:35 -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
|
|
|
]
|
|
|
|
];
|
2018-11-09 10:38:35 -05:00
|
|
|
|
2018-09-26 22:31:04 -04:00
|
|
|
if (array_key_exists('notes', $data))
|
|
|
|
{
|
|
|
|
$body['data']['attributes']['notes'] = $data['notes'];
|
|
|
|
}
|
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();
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @return Request
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
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();
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @return array
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
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-12-08 22:32:00 -05:00
|
|
|
|
2017-02-08 00:44:57 -05:00
|
|
|
$request = $this->requestBuilder->newRequest('GET', "library-entries/{$id}")
|
|
|
|
->setQuery([
|
2018-10-19 09:30:27 -04:00
|
|
|
'include' => 'media,media.categories,media.mappings'
|
2017-02-09 20:10:13 -05:00
|
|
|
]);
|
2017-12-08 22:32:00 -05:00
|
|
|
|
2017-02-09 20:10:13 -05:00
|
|
|
if ($authHeader !== FALSE)
|
|
|
|
{
|
|
|
|
$request = $request->setHeader('Authorization', $authHeader);
|
|
|
|
}
|
2017-12-08 22:32:00 -05:00
|
|
|
|
2018-11-29 11:46:06 -05:00
|
|
|
$request = $request->getFullRequest();
|
2018-11-29 11:00:50 -05:00
|
|
|
$response = getResponse($request);
|
2020-03-11 16:26:17 -04:00
|
|
|
return Json::decode(wait($response->getBody()->buffer()));
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2018-09-20 10:41:28 -04:00
|
|
|
public function increment(string $id, FormItemData $data): Request
|
|
|
|
{
|
|
|
|
return $this->update($id, $data);
|
|
|
|
}
|
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @param FormItemData $data
|
|
|
|
* @return Request
|
|
|
|
* @throws Throwable
|
|
|
|
*/
|
2018-08-09 11:34:02 -04:00
|
|
|
public function update(string $id, FormItemData $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-12-08 22:32:00 -05:00
|
|
|
|
2020-04-24 14:14:52 -04:00
|
|
|
if (((int) $data->progress) === 0)
|
|
|
|
{
|
|
|
|
$data->progress = 0;
|
|
|
|
}
|
|
|
|
|
2017-02-09 20:10:13 -05:00
|
|
|
$request = $this->requestBuilder->newRequest('PATCH', "library-entries/{$id}")
|
|
|
|
->setJsonBody($requestData);
|
2017-12-08 22:32:00 -05:00
|
|
|
|
2017-02-09 20:10:13 -05:00
|
|
|
if ($authHeader !== FALSE)
|
|
|
|
{
|
|
|
|
$request = $request->setHeader('Authorization', $authHeader);
|
|
|
|
}
|
2017-12-08 22:32:00 -05:00
|
|
|
|
2017-02-09 20:10:13 -05:00
|
|
|
return $request->getFullRequest();
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
2018-08-08 10:12:45 -04:00
|
|
|
|
2019-12-06 15:46:56 -05:00
|
|
|
/**
|
2019-12-09 14:34:23 -05:00
|
|
|
* @return bool|string
|
|
|
|
* @throws ContainerException
|
|
|
|
* @throws NotFoundException
|
2019-12-06 15:46:56 -05:00
|
|
|
*/
|
2018-08-08 10:12:45 -04:00
|
|
|
private function getAuthHeader()
|
|
|
|
{
|
|
|
|
$cache = $this->getContainer()->get('cache');
|
|
|
|
$cacheItem = $cache->getItem('kitsu-auth-token');
|
|
|
|
$sessionSegment = $this->getContainer()
|
|
|
|
->get('session')
|
|
|
|
->getSegment(SESSION_SEGMENT);
|
|
|
|
|
|
|
|
if ($sessionSegment->get('auth_token') !== NULL) {
|
|
|
|
$token = $sessionSegment->get('auth_token');
|
|
|
|
return "bearer {$token}";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cacheItem->isHit()) {
|
|
|
|
$token = $cacheItem->get();
|
|
|
|
return "bearer {$token}";
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|