HummingBirdAnimeClient/src/API/MAL/ListItem.php

75 lines
1.6 KiB
PHP
Raw Normal View History

2017-01-12 15:41: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
*
* @package AnimeListClient
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2015 - 2017 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 4.0
* @link https://github.com/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\API\MAL;
2017-02-01 09:53:02 -05:00
use Amp\Artax\FormBody;
use Aviat\AnimeClient\API\{
AbstractListItem,
XML
};
2017-01-12 15:41:20 -05:00
use Aviat\Ion\Di\ContainerAware;
/**
* CRUD operations for MAL list items
*/
2017-02-01 09:53:02 -05:00
class ListItem {
2017-01-12 15:41:20 -05:00
use ContainerAware;
use MALTrait;
2017-01-12 15:41:20 -05:00
public function create(array $data): bool
{
2017-02-01 09:53:02 -05:00
$id = $data['id'];
2017-02-04 15:18:34 -05:00
$createData = [
'id' => $id,
'data' => XML::toXML([
'entry' => $data['data']
])
];
2017-02-01 09:53:02 -05:00
$response = $this->getResponse('POST', "animelist/add/{$id}.xml", [
2017-02-04 15:18:34 -05:00
'body' => $this->fixBody((new FormBody)->addFields($createData))
2017-02-01 09:53:02 -05:00
]);
2017-02-04 15:18:34 -05:00
return $response->getBody() === 'Created';
2017-01-12 15:41:20 -05:00
}
public function delete(string $id): bool
{
2017-02-04 15:18:34 -05:00
$response = $this->getResponse('DELETE', "animelist/delete/{$id}.xml", [
'body' => $this->fixBody((new FormBody)->addField('id', $id))
2017-02-01 09:53:02 -05:00
]);
2017-02-04 15:18:34 -05:00
return $response->getBody() === 'Deleted';
2017-01-12 15:41:20 -05:00
}
public function get(string $id): array
{
return [];
}
2017-02-04 15:18:34 -05:00
public function update(string $id, array $data)
2017-01-12 15:41:20 -05:00
{
2017-02-04 15:18:34 -05:00
$xml = XML::toXML(['entry' => $data]);
2017-02-01 09:53:02 -05:00
$body = (new FormBody)
->addField('id', $id)
2017-02-04 15:18:34 -05:00
->addField('data', $xml);
return $this->getResponse('POST', "animelist/update/{$id}.xml", [
'body' => $this->fixBody($body)
2017-02-01 09:53:02 -05:00
]);
2017-01-12 15:41:20 -05:00
}
}