79 lines
2.4 KiB
PHP
79 lines
2.4 KiB
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* Hummingbird Anime List Client
|
|
*
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
|
*
|
|
* PHP version 7
|
|
*
|
|
* @package HummingbirdAnimeClient
|
|
* @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://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
*/
|
|
|
|
namespace Aviat\AnimeClient\API;
|
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\{
|
|
AnimeWatchingStatus as KAWS,
|
|
MangaReadingStatus as KMRS
|
|
};
|
|
use Aviat\AnimeClient\API\MAL\Enum\{AnimeWatchingStatus, MangaReadingStatus};
|
|
|
|
/**
|
|
* Constants and mappings for the My Anime List API
|
|
*/
|
|
class MAL {
|
|
const AUTH_URL = 'https://myanimelist.net/api/account/verify_credentials.xml';
|
|
const BASE_URL = 'https://myanimelist.net/api/';
|
|
|
|
const KITSU_MAL_WATCHING_STATUS_MAP = [
|
|
KAWS::WATCHING => AnimeWatchingStatus::WATCHING,
|
|
KAWS::COMPLETED => AnimeWatchingStatus::COMPLETED,
|
|
KAWS::ON_HOLD => AnimeWatchingStatus::ON_HOLD,
|
|
KAWS::DROPPED => AnimeWatchingStatus::DROPPED,
|
|
KAWS::PLAN_TO_WATCH => AnimeWatchingStatus::PLAN_TO_WATCH
|
|
];
|
|
|
|
const MAL_KITSU_WATCHING_STATUS_MAP = [
|
|
1 => KAWS::WATCHING,
|
|
2 => KAWS::COMPLETED,
|
|
3 => KAWS::ON_HOLD,
|
|
4 => KAWS::DROPPED,
|
|
6 => KAWS::PLAN_TO_WATCH
|
|
];
|
|
|
|
public static function getIdToWatchingStatusMap()
|
|
{
|
|
return [
|
|
1 => AnimeWatchingStatus::WATCHING,
|
|
2 => AnimeWatchingStatus::COMPLETED,
|
|
3 => AnimeWatchingStatus::ON_HOLD,
|
|
4 => AnimeWatchingStatus::DROPPED,
|
|
6 => AnimeWatchingStatus::PLAN_TO_WATCH,
|
|
'watching' => AnimeWatchingStatus::WATCHING,
|
|
'completed' => AnimeWatchingStatus::COMPLETED,
|
|
'onhold' => AnimeWatchingStatus::ON_HOLD,
|
|
'dropped' => AnimeWatchingStatus::DROPPED,
|
|
'plantowatch' => AnimeWatchingStatus::PLAN_TO_WATCH
|
|
];
|
|
}
|
|
|
|
public static function getIdToReadingStatusMap()
|
|
{
|
|
return [
|
|
1 => MangaReadingStatus::READING,
|
|
2 => MangaReadingStatus::COMPLETED,
|
|
3 => MangaReadingStatus::ON_HOLD,
|
|
4 => MangaReadingStatus::DROPPED,
|
|
6 => MangaReadingStatus::PLAN_TO_READ,
|
|
'reading' => MangaReadingStatus::READING,
|
|
'completed' => MangaReadingStatus::COMPLETED,
|
|
'onhold' => MangaReadingStatus::ON_HOLD,
|
|
'dropped' => MangaReadingStatus::DROPPED,
|
|
'plantoread' => MangaReadingStatus::PLAN_TO_READ
|
|
];
|
|
}
|
|
} |