87 lines
2.2 KiB
PHP
87 lines
2.2 KiB
PHP
|
<?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\Command;
|
||
|
|
||
|
use Amp\Artax;
|
||
|
use Aviat\AnimeClient\API\Kitsu;
|
||
|
|
||
|
/**
|
||
|
* Clears the API Cache
|
||
|
*/
|
||
|
class SyncKitsuWithMal extends BaseCommand {
|
||
|
|
||
|
protected $kitsuModel;
|
||
|
|
||
|
public function getKitsuAnimeListPageCount()
|
||
|
{
|
||
|
$cacheItem = $this->cache->getItem(Kitsu::AUTH_TOKEN_CACHE_KEY);
|
||
|
|
||
|
$query = http_build_query([
|
||
|
'filter' => [
|
||
|
'user_id' => $this->kitsuModel->getUserIdByUsername(),
|
||
|
'media_type' => 'Anime'
|
||
|
],
|
||
|
'include' => 'anime,anime.genres,anime.mappings,anime.streamingLinks',
|
||
|
'page' => [
|
||
|
'limit' => 1
|
||
|
],
|
||
|
'sort' => '-updated_at'
|
||
|
]);
|
||
|
$request = (new Artax\Request)
|
||
|
->setUri("https://kitsu.io/api/edge/library-entries?{$query}")
|
||
|
->setProtocol('1.1')
|
||
|
->setAllHeaders([
|
||
|
'Accept' => 'application/vnd.api+json',
|
||
|
'Content-Type' => 'application/vnd.api+json',
|
||
|
'User-Agent' => "Tim's Anime Client/4.0"
|
||
|
]);
|
||
|
|
||
|
if ($cacheItem->isHit())
|
||
|
{
|
||
|
$token = $cacheItem->get();
|
||
|
$request->setHeader('Authorization', "bearer {$token}");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$this->echoBox("WARNING: NOT LOGGED IN\nSome data might be missing");
|
||
|
}
|
||
|
|
||
|
$response = \Amp\wait((new Artax\Client)->request($request));
|
||
|
|
||
|
$body = json_decode($response->getBody(), TRUE);
|
||
|
return $body['meta']['count'];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Run the image conversion script
|
||
|
*
|
||
|
* @param array $args
|
||
|
* @param array $options
|
||
|
* @return void
|
||
|
* @throws \ConsoleKit\ConsoleException
|
||
|
*/
|
||
|
public function execute(array $args, array $options = [])
|
||
|
{
|
||
|
$this->setContainer($this->setupContainer());
|
||
|
$this->setCache($this->container->get('cache'));
|
||
|
$this->kitsuModel = $this->container->get('kitsu-model');
|
||
|
|
||
|
$kitsuCount = $this->getKitsuAnimeListPageCount();
|
||
|
$this->echoBox("List item count: {$kitsuCount}");
|
||
|
}
|
||
|
}
|