HummingBirdAnimeClient/src/AnimeClient/API/Kitsu/ListItem.php

165 lines
3.5 KiB
PHP
Raw Normal View History

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
*
2021-02-04 11:57:01 -05:00
* PHP version 8
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>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
2017-01-06 23:34:56 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\API\Kitsu;
2016-12-21 12:46:20 -05:00
2020-03-11 16:26:17 -04:00
use Amp\Http\Client\Request;
use Aviat\AnimeClient\API\AbstractListItem;
use Aviat\AnimeClient\Types\FormItemData;
use Aviat\Ion\Di\ContainerAware;
2016-12-21 12:46:20 -05:00
2019-12-09 14:34:23 -05:00
use Throwable;
/**
* CRUD operations for Kitsu list items
*/
final class ListItem extends AbstractListItem
{
use ContainerAware;
2020-08-06 09:39:12 -04:00
use RequestBuilderTrait;
2016-12-21 12:46:20 -05:00
2019-12-09 14:34:23 -05:00
/**
* @throws Throwable
*/
public function create(array $data): Request
{
return $this->requestBuilder->mutateRequest('CreateLibraryItem', [
'id' => $data['id'],
'status' => strtoupper($data['status']),
'type' => strtoupper($data['type']),
'userId' => $data['user_id'],
]);
}
public function createFull(array $data): Request
2018-11-09 10:38:35 -05:00
{
$body = [
'data' => [
'type' => 'libraryEntries',
'attributes' => [
'status' => $data['status'],
'progress' => $data['progress'] ?? 0,
],
'relationships' => [
'user' => [
'data' => [
'id' => $data['user_id'],
'type' => 'users',
],
],
'media' => [
'data' => [
'id' => $data['id'],
'type' => $data['type'],
],
],
],
],
];
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'];
}
$authHeader = $this->getAuthHeader();
$request = $this->requestBuilder->newRequest('POST', 'library-entries');
2020-05-08 19:18:10 -04:00
if ($authHeader !== NULL)
{
$request = $request->setHeader('Authorization', $authHeader);
}
return $request->setJsonBody($body)
->getFullRequest();
2016-12-21 12:46:20 -05:00
}
2019-12-09 14:34:23 -05:00
/**
* @throws Throwable
*/
public function delete(string $id): Request
2016-12-21 12:46:20 -05:00
{
return $this->requestBuilder->mutateRequest('DeleteLibraryItem', [
'id' => $id,
]);
2016-12-21 12:46:20 -05:00
}
2019-12-09 14:34:23 -05:00
/**
* @throws Throwable
* @return mixed[]
2019-12-09 14:34:23 -05:00
*/
2016-12-21 12:46:20 -05:00
public function get(string $id): array
{
2020-08-24 13:07:47 -04:00
return $this->requestBuilder->runQuery('GetLibraryItem', [
'id' => $id,
]);
2016-12-21 12:46:20 -05:00
}
/**
* Increase the progress on the medium by 1
*/
public function increment(string $id, FormItemData $data): Request
{
return $this->requestBuilder->mutateRequest('IncrementLibraryItem', [
'id' => $id,
'progress' => $data->progress,
]);
}
2019-12-09 14:34:23 -05:00
/**
* @throws Throwable
*/
public function update(string $id, FormItemData $data): Request
2016-12-21 12:46:20 -05:00
{
// Data to always send
$updateData = [
'id' => $id,
'notes' => $data['notes'],
'private' => (bool) $data['private'],
'reconsumeCount' => (int) $data['reconsumeCount'],
'reconsuming' => (bool) $data['reconsuming'],
'status' => strtoupper($data['status']),
];
// Only send these variables if they have a value
if ($data['progress'] !== NULL)
{
$updateData['progress'] = (int) $data['progress'];
}
if ($data['ratingTwenty'] !== NULL)
{
$updateData['ratingTwenty'] = (int) $data['ratingTwenty'];
}
return $this->requestBuilder->mutateRequest('UpdateLibraryItem', $updateData);
2016-12-21 12:46:20 -05:00
}
2020-05-08 19:18:10 -04:00
private function getAuthHeader(): ?string
{
2020-05-08 19:18:10 -04:00
$auth = $this->getContainer()->get('auth');
$token = $auth->getAuthToken();
if ( ! empty($token))
{
return "bearer {$token}";
}
2020-05-08 19:18:10 -04:00
return NULL;
}
}