2016-12-21 12:46:20 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* PHP version 7
|
|
|
|
*
|
2017-01-06 23:34:56 -05:00
|
|
|
* @package AnimeListClient
|
|
|
|
* @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
|
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\Kitsu;
|
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 GuzzleHttp\Exception\ClientException;
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
|
|
|
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-01-06 21:39:01 -05:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->init();
|
|
|
|
}
|
|
|
|
|
2016-12-21 12:46:20 -05:00
|
|
|
public function create(array $data): bool
|
|
|
|
{
|
2017-01-10 12:35:46 -05:00
|
|
|
/*?><pre><?= print_r($data, TRUE) ?></pre><?php */
|
|
|
|
$response = $this->getResponse('POST', 'library-entries', [
|
|
|
|
'body' => Json::encode([
|
|
|
|
'data' => [
|
|
|
|
'type' => 'libraryEntries',
|
|
|
|
'attributes' => [
|
|
|
|
'status' => $data['status'],
|
|
|
|
'progress' => $data['progress'] ?? 0
|
2017-01-09 20:36:48 -05:00
|
|
|
],
|
2017-01-10 12:35:46 -05:00
|
|
|
'relationships' => [
|
|
|
|
'user' => [
|
|
|
|
'data' => [
|
|
|
|
'id' => $data['user_id'],
|
|
|
|
'type' => 'users'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'media' => [
|
|
|
|
'data' => [
|
|
|
|
'id' => $data['id'],
|
|
|
|
'type' => $data['type']
|
|
|
|
]
|
|
|
|
]
|
2017-01-09 20:36:48 -05:00
|
|
|
]
|
|
|
|
]
|
2017-01-10 12:35:46 -05:00
|
|
|
])
|
2017-01-09 20:36:48 -05:00
|
|
|
]);
|
|
|
|
|
|
|
|
return ($response->getStatusCode() === 201);
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function delete(string $id): bool
|
|
|
|
{
|
2017-01-09 20:36:48 -05:00
|
|
|
$response = $this->getResponse('DELETE', "library-entries/{$id}");
|
|
|
|
return ($response->getStatusCode() === 204);
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function get(string $id): array
|
|
|
|
{
|
2017-01-06 21:39:01 -05:00
|
|
|
return $this->getRequest("library-entries/{$id}", [
|
|
|
|
'query' => [
|
|
|
|
'include' => 'media'
|
|
|
|
]
|
|
|
|
]);
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
|
2017-01-06 21:39:01 -05:00
|
|
|
public function update(string $id, array $data): Response
|
2016-12-21 12:46:20 -05:00
|
|
|
{
|
2017-01-06 21:39:01 -05:00
|
|
|
$requestData = [
|
|
|
|
'data' => [
|
|
|
|
'id' => $id,
|
|
|
|
'type' => 'libraryEntries',
|
|
|
|
'attributes' => $data
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->getResponse('PATCH', "library-entries/{$id}", [
|
|
|
|
'body' => JSON::encode($requestData)
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $response;
|
2016-12-21 12:46:20 -05:00
|
|
|
}
|
|
|
|
}
|