HummingBirdAnimeClient/src/API/MAL/ListItem.php

101 lines
2.5 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;
use Amp\Artax\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;
use MALTrait;
2017-01-12 15:41:20 -05:00
public function create(array $data): 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']
])
];
$config = $this->container->get('config');
return $this->requestBuilder->newRequest('POST', "animelist/add/{$id}.xml")
->setFormFields($createData)
->setBasicAuth($config->get(['mal','username']), $config->get(['mal', 'password']))
->getFullRequest();
/* $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): Request
2017-01-12 15:41:20 -05:00
{
$config = $this->container->get('config');
return $this->requestBuilder->newRequest('DELETE', "animelist/delete/{$id}.xml")
->setFormFields([
'id' => $id
])
->setBasicAuth($config->get(['mal','username']), $config->get(['mal', 'password']))
->getFullRequest();
/*$response = $this->getResponse('DELETE', "animelist/delete/{$id}.xml", [
2017-02-04 15:18:34 -05:00
'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 [];
}
public function update(string $id, array $data): Request
2017-01-12 15:41: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);
return $this->requestBuilder->newRequest('POST', "animelist/update/{$id}.xml")
->setFormFields([
'id' => $id,
'data' => $xml
])
->setBasicAuth($config->get(['mal','username']), $config->get(['mal', 'password']))
->getFullRequest();
/* return $this->getResponse('POST', "animelist/update/{$id}.xml", [
2017-02-04 15:18:34 -05:00
'body' => $this->fixBody($body)
]); */
2017-01-12 15:41:20 -05:00
}
}