2017-01-05 13:41:32 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2017-01-05 13:41:32 -05:00
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2017-01-05 13:41:32 -05:00
|
|
|
*
|
2020-12-10 17:06:50 -05:00
|
|
|
* PHP version 7.4+
|
2017-01-05 13:41:32 -05:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2017-01-06 23:34:56 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2021-01-13 01:52:03 -05:00
|
|
|
* @copyright 2015 - 2021 Timothy J. Warren
|
2017-01-06 23:34:56 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
2020-08-26 15:22:14 -04:00
|
|
|
namespace Aviat\AnimeClient;
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2017-03-01 22:07:51 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\AnimeAiringStatus;
|
2020-07-29 17:51:58 -04:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\MangaPublishingStatus;
|
2017-01-05 22:24:45 -05:00
|
|
|
use DateTimeImmutable;
|
2017-01-05 13:41:32 -05:00
|
|
|
|
|
|
|
/**
|
2017-01-13 16:53:56 -05:00
|
|
|
* Data massaging helpers for the Kitsu API
|
2017-01-05 13:41:32 -05:00
|
|
|
*/
|
2018-08-08 10:12:45 -04:00
|
|
|
final class Kitsu {
|
2018-11-09 10:38:35 -05:00
|
|
|
public const AUTH_URL = 'https://kitsu.io/api/oauth/token';
|
|
|
|
public const AUTH_USER_ID_KEY = 'kitsu-auth-userid';
|
|
|
|
public const AUTH_TOKEN_CACHE_KEY = 'kitsu-auth-token';
|
|
|
|
public const AUTH_TOKEN_EXP_CACHE_KEY = 'kitsu-auth-token-expires';
|
|
|
|
public const AUTH_TOKEN_REFRESH_CACHE_KEY = 'kitsu-auth-token-refresh';
|
2020-05-08 19:15:21 -04:00
|
|
|
public const ANIME_HISTORY_LIST_CACHE_KEY = 'kitsu-anime-history-list';
|
|
|
|
public const MANGA_HISTORY_LIST_CACHE_KEY = 'kitsu-manga-history-list';
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2020-07-31 19:03:27 -04:00
|
|
|
public const GRAPHQL_ENDPOINT = 'https://kitsu.io/api/graphql';
|
|
|
|
|
2020-07-29 15:49:16 -04:00
|
|
|
public const SECONDS_IN_MINUTE = 60;
|
|
|
|
public const MINUTES_IN_HOUR = 60;
|
|
|
|
public const MINUTES_IN_DAY = 1440;
|
|
|
|
public const MINUTES_IN_YEAR = 525_600;
|
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
/**
|
|
|
|
* Determine whether an anime is airing, finished airing, or has not yet aired
|
|
|
|
*
|
2020-10-21 18:52:12 -04:00
|
|
|
* @param string|null $startDate
|
|
|
|
* @param string|null $endDate
|
2017-01-05 22:24:45 -05:00
|
|
|
* @return string
|
|
|
|
*/
|
2017-02-17 10:55:17 -05:00
|
|
|
public static function getAiringStatus(string $startDate = NULL, string $endDate = NULL): string
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
|
|
|
$startAirDate = new DateTimeImmutable($startDate ?? 'tomorrow');
|
2017-01-27 15:41:52 -05:00
|
|
|
$endAirDate = new DateTimeImmutable($endDate ?? 'next year');
|
2017-01-05 22:24:45 -05:00
|
|
|
$now = new DateTimeImmutable();
|
|
|
|
|
|
|
|
$isDoneAiring = $now > $endAirDate;
|
|
|
|
$isCurrentlyAiring = ($now > $startAirDate) && ! $isDoneAiring;
|
|
|
|
|
2018-10-19 10:40:11 -04:00
|
|
|
if ($isCurrentlyAiring)
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2018-10-19 10:40:11 -04:00
|
|
|
return AnimeAiringStatus::AIRING;
|
|
|
|
}
|
2017-01-05 22:24:45 -05:00
|
|
|
|
2018-10-19 10:40:11 -04:00
|
|
|
if ($isDoneAiring)
|
|
|
|
{
|
|
|
|
return AnimeAiringStatus::FINISHED_AIRING;
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2018-10-19 10:40:11 -04:00
|
|
|
|
|
|
|
return AnimeAiringStatus::NOT_YET_AIRED;
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2020-07-29 17:51:58 -04:00
|
|
|
public static function getPublishingStatus(string $kitsuStatus, string $startDate = NULL, string $endDate = NULL): string
|
|
|
|
{
|
|
|
|
$startPubDate = new DateTimeImmutable($startDate ?? 'tomorrow');
|
|
|
|
$endPubDate = new DateTimeImmutable($endDate ?? 'next year');
|
|
|
|
$now = new DateTimeImmutable();
|
|
|
|
|
|
|
|
$isDone = $now > $endPubDate;
|
|
|
|
$isCurrent = ($now > $startPubDate) && ! $isDone;
|
|
|
|
|
|
|
|
if ($kitsuStatus === 'CURRENT' || $isCurrent)
|
|
|
|
{
|
|
|
|
return MangaPublishingStatus::CURRENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($kitsuStatus === 'FINISHED' || $isDone)
|
|
|
|
{
|
|
|
|
return MangaPublishingStatus::FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MangaPublishingStatus::NOT_YET_PUBLISHED;
|
|
|
|
}
|
|
|
|
|
2020-08-24 15:20:07 -04:00
|
|
|
public static function mappingsToUrls(array $mappings, string $kitsuLink = ''): array
|
|
|
|
{
|
|
|
|
$output = [];
|
2020-09-10 15:36:34 -04:00
|
|
|
|
|
|
|
$urlMap = [
|
|
|
|
'ANIDB' => [
|
|
|
|
'key' => 'AniDB',
|
|
|
|
'url' => 'https://anidb.net/anime/{}',
|
|
|
|
],
|
|
|
|
'ANILIST_ANIME' => [
|
|
|
|
'key' => 'Anilist',
|
|
|
|
'url' => 'https://anilist.co/anime/{}/',
|
|
|
|
],
|
|
|
|
'ANILIST_MANGA' => [
|
|
|
|
'key' => 'Anilist',
|
|
|
|
'url' => 'https://anilist.co/anime/{}/',
|
|
|
|
],
|
|
|
|
'ANIMENEWSNETWORK' => [
|
|
|
|
'key' => 'AnimeNewsNetwork',
|
|
|
|
'url' => 'https://www.animenewsnetwork.com/encyclopedia/anime.php?id={}',
|
|
|
|
],
|
|
|
|
'MANGAUPDATES' => [
|
|
|
|
'key' => 'MangaUpdates',
|
|
|
|
'url' => 'https://www.mangaupdates.com/series.html?id={}',
|
|
|
|
],
|
|
|
|
'MYANIMELIST_ANIME' => [
|
|
|
|
'key' => 'MyAnimeList',
|
|
|
|
'url' => 'https://myanimelist.net/anime/{}',
|
|
|
|
],
|
|
|
|
'MYANIMELIST_CHARACTERS' => [
|
|
|
|
'key' => 'MyAnimeList',
|
|
|
|
'url' => 'https://myanimelist.net/character/{}',
|
|
|
|
],
|
|
|
|
'MYANIMELIST_MANGA' => [
|
|
|
|
'key' => 'MyAnimeList',
|
|
|
|
'url' => 'https://myanimelist.net/manga/{}',
|
|
|
|
],
|
|
|
|
'MYANIMELIST_PEOPLE' => [
|
|
|
|
'key' => 'MyAnimeList',
|
|
|
|
'url' => 'https://myanimelist.net/people/{}',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2020-08-24 15:20:07 -04:00
|
|
|
foreach ($mappings as $mapping)
|
|
|
|
{
|
2020-09-10 15:36:34 -04:00
|
|
|
if ( ! array_key_exists($mapping['externalSite'], $urlMap))
|
2020-08-24 15:20:07 -04:00
|
|
|
{
|
2020-09-10 15:36:34 -04:00
|
|
|
continue;
|
|
|
|
}
|
2020-08-24 15:20:07 -04:00
|
|
|
|
2020-09-10 15:36:34 -04:00
|
|
|
$uMap = $urlMap[$mapping['externalSite']];
|
|
|
|
$key = $uMap['key'];
|
|
|
|
$url = str_replace('{}', $mapping['externalId'], $uMap['url']);
|
2020-08-24 15:20:07 -04:00
|
|
|
|
|
|
|
|
2020-09-10 15:36:34 -04:00
|
|
|
$output[$key] = $url;
|
2020-08-24 15:20:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($kitsuLink !== '')
|
|
|
|
{
|
|
|
|
$output['Kitsu'] = $kitsuLink;
|
|
|
|
}
|
|
|
|
|
|
|
|
ksort($output);
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2020-08-17 10:45:17 -04:00
|
|
|
/**
|
|
|
|
* Reorganize streaming links
|
|
|
|
*
|
2020-08-24 13:09:43 -04:00
|
|
|
* @param array $nodes
|
2020-08-17 10:45:17 -04:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function parseStreamingLinks(array $nodes): array
|
|
|
|
{
|
|
|
|
if (count($nodes) === 0)
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$links = [];
|
|
|
|
|
|
|
|
foreach ($nodes as $streamingLink)
|
|
|
|
{
|
|
|
|
$url = $streamingLink['url'];
|
|
|
|
|
|
|
|
// 'Fix' links that start with the hostname,
|
|
|
|
// rather than a protocol
|
|
|
|
if (strpos($url, '//') === FALSE)
|
|
|
|
{
|
|
|
|
$url = '//' . $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
$host = parse_url($url, \PHP_URL_HOST);
|
|
|
|
|
|
|
|
$links[] = [
|
2020-12-10 15:59:37 -05:00
|
|
|
'meta' => self::getServiceMetaData($host),
|
2020-08-17 10:45:17 -04:00
|
|
|
'link' => $streamingLink['url'],
|
|
|
|
'subs' => $streamingLink['subs'],
|
|
|
|
'dubs' => $streamingLink['dubs']
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-12-10 15:59:37 -05:00
|
|
|
usort($links, static fn ($a, $b) => $a['meta']['name'] <=> $b['meta']['name']);
|
2020-08-17 10:45:17 -04:00
|
|
|
|
|
|
|
return $links;
|
|
|
|
}
|
|
|
|
|
2020-07-29 16:25:57 -04:00
|
|
|
/**
|
|
|
|
* Get the list of titles
|
|
|
|
*
|
|
|
|
* @param array $titles
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function getTitles(array $titles): array
|
|
|
|
{
|
|
|
|
$raw = array_unique([
|
|
|
|
$titles['canonical'],
|
|
|
|
...array_values($titles['localized']),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return array_diff($raw,[$titles['canonical']]);
|
|
|
|
}
|
|
|
|
|
2020-07-28 17:46:18 -04:00
|
|
|
/**
|
|
|
|
* Filter out duplicate and very similar titles from a GraphQL response
|
|
|
|
*
|
|
|
|
* @param array $titles
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function filterLocalizedTitles(array $titles): array
|
|
|
|
{
|
|
|
|
// The 'canonical' title is always considered
|
|
|
|
$valid = [$titles['canonical']];
|
|
|
|
|
|
|
|
foreach (['alternatives', 'localized'] as $search)
|
|
|
|
{
|
|
|
|
if (array_key_exists($search, $titles) && is_array($titles[$search]))
|
|
|
|
{
|
|
|
|
foreach($titles[$search] as $alternateTitle)
|
|
|
|
{
|
|
|
|
if (self::titleIsUnique($alternateTitle, $valid))
|
|
|
|
{
|
|
|
|
$valid[] = $alternateTitle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-25 15:11:08 -04:00
|
|
|
// Don't return the canonical title
|
2020-07-28 17:46:18 -04:00
|
|
|
array_shift($valid);
|
|
|
|
|
|
|
|
return $valid;
|
|
|
|
}
|
2020-05-18 12:52:32 -04:00
|
|
|
|
2020-08-17 16:36:55 -04:00
|
|
|
/**
|
|
|
|
* Filter out duplicate and very similar titles from a GraphQL response
|
|
|
|
*
|
|
|
|
* @param array $titles
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function getFilteredTitles(array $titles): array
|
|
|
|
{
|
|
|
|
// The 'canonical' title is always considered
|
|
|
|
$valid = [$titles['canonical']];
|
|
|
|
|
|
|
|
if (array_key_exists('localized', $titles) && is_array($titles['localized']))
|
|
|
|
{
|
|
|
|
foreach($titles['localized'] as $alternateTitle)
|
|
|
|
{
|
|
|
|
if (self::titleIsUnique($alternateTitle, $valid))
|
|
|
|
{
|
|
|
|
$valid[] = $alternateTitle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-25 15:11:08 -04:00
|
|
|
// Don't return the canonical title
|
2020-08-17 16:36:55 -04:00
|
|
|
array_shift($valid);
|
|
|
|
|
|
|
|
return $valid;
|
|
|
|
}
|
|
|
|
|
2020-05-18 12:52:32 -04:00
|
|
|
/**
|
|
|
|
* Get the name and logo for the streaming service of the current link
|
|
|
|
*
|
2020-09-10 15:36:34 -04:00
|
|
|
* @param string|null $hostname
|
2020-05-18 12:52:32 -04:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected static function getServiceMetaData(string $hostname = NULL): array
|
|
|
|
{
|
2020-12-10 15:59:37 -05:00
|
|
|
$hostname = str_replace('www.', '', $hostname ?? '');
|
2020-05-18 12:52:32 -04:00
|
|
|
|
|
|
|
$serviceMap = [
|
2020-09-10 15:36:34 -04:00
|
|
|
'animelab.com' => [
|
|
|
|
'name' => 'Animelab',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/animelab.svg',
|
|
|
|
],
|
2020-05-18 12:52:32 -04:00
|
|
|
'amazon.com' => [
|
|
|
|
'name' => 'Amazon Prime',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/amazon.svg',
|
|
|
|
],
|
|
|
|
'crunchyroll.com' => [
|
|
|
|
'name' => 'Crunchyroll',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/crunchyroll.svg',
|
|
|
|
],
|
|
|
|
'daisuki.net' => [
|
|
|
|
'name' => 'Daisuki',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/daisuki.svg'
|
|
|
|
],
|
|
|
|
'funimation.com' => [
|
|
|
|
'name' => 'Funimation',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/funimation.svg',
|
|
|
|
],
|
|
|
|
'hidive.com' => [
|
|
|
|
'name' => 'Hidive',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/hidive.svg',
|
|
|
|
],
|
|
|
|
'hulu.com' => [
|
|
|
|
'name' => 'Hulu',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/hulu.svg',
|
|
|
|
],
|
|
|
|
'tubitv.com' => [
|
|
|
|
'name' => 'TubiTV',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/tubitv.svg',
|
|
|
|
],
|
|
|
|
'viewster.com' => [
|
|
|
|
'name' => 'Viewster',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/viewster.svg'
|
|
|
|
],
|
2020-09-09 13:25:27 -04:00
|
|
|
'vrv.co' => [
|
|
|
|
'name' => 'VRV',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/vrv.svg',
|
|
|
|
]
|
2020-05-18 12:52:32 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
if (array_key_exists($hostname, $serviceMap))
|
|
|
|
{
|
|
|
|
return $serviceMap[$hostname];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default to Netflix, because the API links are broken,
|
|
|
|
// and there's no other real identifier for Netflix
|
|
|
|
return [
|
|
|
|
'name' => 'Netflix',
|
|
|
|
'link' => FALSE,
|
|
|
|
'image' => 'streaming-logos/netflix.svg',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-07-29 15:49:16 -04:00
|
|
|
/**
|
|
|
|
* Convert a time in seconds to a more human-readable format
|
|
|
|
*
|
|
|
|
* @param int $seconds
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function friendlyTime(int $seconds): string
|
|
|
|
{
|
|
|
|
// All the seconds left
|
|
|
|
$remSeconds = $seconds % self::SECONDS_IN_MINUTE;
|
|
|
|
$minutes = ($seconds - $remSeconds) / self::SECONDS_IN_MINUTE;
|
|
|
|
|
|
|
|
// Minutes short of a year
|
|
|
|
$years = (int)floor($minutes / self::MINUTES_IN_YEAR);
|
|
|
|
$minutes %= self::MINUTES_IN_YEAR;
|
|
|
|
|
|
|
|
// Minutes short of a day
|
|
|
|
$extraMinutes = $minutes % self::MINUTES_IN_DAY;
|
|
|
|
$days = ($minutes - $extraMinutes) / self::MINUTES_IN_DAY;
|
|
|
|
|
|
|
|
// Minutes short of an hour
|
|
|
|
$remMinutes = $extraMinutes % self::MINUTES_IN_HOUR;
|
|
|
|
$hours = ($extraMinutes - $remMinutes) / self::MINUTES_IN_HOUR;
|
|
|
|
|
|
|
|
$parts = [];
|
|
|
|
foreach ([
|
|
|
|
'year' => $years,
|
|
|
|
'day' => $days,
|
|
|
|
'hour' => $hours,
|
|
|
|
'minute' => $remMinutes,
|
|
|
|
'second' => $remSeconds
|
|
|
|
] as $label => $value)
|
|
|
|
{
|
|
|
|
if ($value === 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($value > 1)
|
|
|
|
{
|
|
|
|
$label .= 's';
|
|
|
|
}
|
|
|
|
|
|
|
|
$parts[] = "{$value} {$label}";
|
|
|
|
}
|
|
|
|
|
|
|
|
$last = array_pop($parts);
|
|
|
|
|
|
|
|
if (empty($parts))
|
|
|
|
{
|
|
|
|
return $last;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (count($parts) > 1)
|
|
|
|
? implode(', ', $parts) . ", and {$last}"
|
|
|
|
: "{$parts[0]}, {$last}";
|
|
|
|
}
|
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
/**
|
|
|
|
* Determine if an alternate title is unique enough to list
|
|
|
|
*
|
2020-12-11 15:37:55 -05:00
|
|
|
* @param string $title
|
2017-01-05 22:24:45 -05:00
|
|
|
* @param array $existingTitles
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-12-11 15:37:55 -05:00
|
|
|
private static function titleIsUnique(string $title = '', array $existingTitles = []): bool
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
|
|
|
foreach($existingTitles as $existing)
|
|
|
|
{
|
2017-04-07 16:58:08 -04:00
|
|
|
$isSubset = mb_substr_count($existing, $title) > 0;
|
2018-08-10 20:10:19 -04:00
|
|
|
$diff = levenshtein(mb_strtolower($existing), mb_strtolower($title));
|
2017-01-05 22:24:45 -05:00
|
|
|
|
2018-08-13 15:13:20 -04:00
|
|
|
if ($diff <= 4 || $isSubset || mb_strlen($title) > 45 || mb_strlen($existing) > 50)
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2017-02-17 10:55:17 -05:00
|
|
|
return FALSE;
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-17 10:55:17 -05:00
|
|
|
return TRUE;
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2017-01-05 13:41:32 -05:00
|
|
|
}
|