2017-01-12 15:41:20 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2017-01-12 15:41: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-12 15:41:20 -05:00
|
|
|
* @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
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-12 15:41:20 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API\MAL;
|
|
|
|
|
2017-02-09 20:10:13 -05:00
|
|
|
use Amp\Artax\{FormBody, Request};
|
2017-02-01 09:53:02 -05:00
|
|
|
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;
|
2017-01-13 16:53:56 -05:00
|
|
|
use MALTrait;
|
2017-01-12 15:41:20 -05:00
|
|
|
|
2017-03-29 12:32:36 -04:00
|
|
|
/**
|
|
|
|
* Create a list item
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @param string $type
|
|
|
|
* @return Request
|
|
|
|
*/
|
|
|
|
public function create(array $data, string $type = 'anime'): Request
|
2017-01-12 15:41:20 -05:00
|
|
|
{
|
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-08 15:48:20 -05:00
|
|
|
$config = $this->container->get('config');
|
2017-02-08 00:44:57 -05:00
|
|
|
|
2017-03-29 12:32:36 -04:00
|
|
|
return $this->requestBuilder->newRequest('POST', "{$type}list/add/{$id}.xml")
|
2017-02-08 00:44:57 -05:00
|
|
|
->setFormFields($createData)
|
|
|
|
->setBasicAuth($config->get(['mal','username']), $config->get(['mal', 'password']))
|
2017-02-08 15:48:20 -05:00
|
|
|
->getFullRequest();
|
2017-01-12 15:41:20 -05:00
|
|
|
}
|
|
|
|
|
2017-03-29 12:32:36 -04:00
|
|
|
/**
|
|
|
|
* Delete a list item
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param string $type
|
|
|
|
* @return Request
|
|
|
|
*/
|
|
|
|
public function delete(string $id, string $type = 'anime'): Request
|
2017-01-12 15:41:20 -05:00
|
|
|
{
|
2017-02-08 15:48:20 -05:00
|
|
|
$config = $this->container->get('config');
|
|
|
|
|
2017-03-29 12:32:36 -04:00
|
|
|
return $this->requestBuilder->newRequest('DELETE', "{$type}list/delete/{$id}.xml")
|
2017-02-08 15:48:20 -05:00
|
|
|
->setFormFields([
|
|
|
|
'id' => $id
|
|
|
|
])
|
|
|
|
->setBasicAuth($config->get(['mal','username']), $config->get(['mal', 'password']))
|
|
|
|
->getFullRequest();
|
|
|
|
|
2017-02-14 15:29:13 -05:00
|
|
|
// return $response->getBody() === 'Deleted'
|
2017-01-12 15:41:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function get(string $id): array
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2017-03-29 12:32:36 -04:00
|
|
|
/**
|
|
|
|
* Update a list item
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param array $data
|
|
|
|
* @param string $type
|
|
|
|
* @return Request
|
|
|
|
*/
|
|
|
|
public function update(string $id, array $data, string $type = 'anime'): Request
|
2017-01-12 15:41:20 -05:00
|
|
|
{
|
2017-02-08 15:48:20 -05:00
|
|
|
$config = $this->container->get('config');
|
|
|
|
|
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);
|
|
|
|
|
2017-03-29 12:32:36 -04:00
|
|
|
return $this->requestBuilder->newRequest('POST', "{$type}list/update/{$id}.xml")
|
2017-02-08 15:48:20 -05:00
|
|
|
->setFormFields([
|
|
|
|
'id' => $id,
|
|
|
|
'data' => $xml
|
|
|
|
])
|
|
|
|
->setBasicAuth($config->get(['mal','username']), $config->get(['mal', 'password']))
|
|
|
|
->getFullRequest();
|
2017-01-12 15:41:20 -05:00
|
|
|
}
|
|
|
|
}
|