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-04-10 15:39:39 -04: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>
|
2020-01-08 15:39:49 -05:00
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
2017-01-06 23:34:56 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-04-10 15:39:39 -04:00
|
|
|
* @version 5
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-01-11 10:34:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\API;
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2017-03-01 22:07:51 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Enum\AnimeAiringStatus;
|
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';
|
2017-01-05 13:41:32 -05:00
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
/**
|
|
|
|
* Determine whether an anime is airing, finished airing, or has not yet aired
|
|
|
|
*
|
|
|
|
* @param string $startDate
|
|
|
|
* @param string $endDate
|
|
|
|
* @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
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
/**
|
2017-01-13 16:53:56 -05:00
|
|
|
* Get the name and logo for the streaming service of the current link
|
2017-01-05 22:24:45 -05:00
|
|
|
*
|
2017-01-13 16:53:56 -05:00
|
|
|
* @param string $hostname
|
|
|
|
* @return array
|
2017-01-05 22:24:45 -05:00
|
|
|
*/
|
2017-02-17 10:55:17 -05:00
|
|
|
protected static function getServiceMetaData(string $hostname = NULL): array
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2018-10-17 14:33:16 -04:00
|
|
|
$hostname = str_replace('www.', '', $hostname);
|
|
|
|
|
2018-10-17 14:20:07 -04:00
|
|
|
$serviceMap = [
|
2018-10-17 14:33:16 -04:00
|
|
|
'amazon.com' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Amazon Prime',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/amazon.svg',
|
|
|
|
],
|
2018-10-17 14:33:16 -04:00
|
|
|
'crunchyroll.com' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Crunchyroll',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/crunchyroll.svg',
|
|
|
|
],
|
2018-10-17 14:33:16 -04:00
|
|
|
'daisuki.net' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Daisuki',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/daisuki.svg'
|
|
|
|
],
|
2018-10-17 14:33:16 -04:00
|
|
|
'funimation.com' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Funimation',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/funimation.svg',
|
|
|
|
],
|
2018-10-17 14:33:16 -04:00
|
|
|
'hidive.com' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Hidive',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/hidive.svg',
|
|
|
|
],
|
2018-10-17 14:33:16 -04:00
|
|
|
'hulu.com' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Hulu',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/hulu.svg',
|
|
|
|
],
|
|
|
|
'tubitv.com' => [
|
|
|
|
'name' => 'TubiTV',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/tubitv.svg',
|
|
|
|
],
|
2018-10-17 14:33:16 -04:00
|
|
|
'viewster.com' => [
|
2018-10-17 14:20:07 -04:00
|
|
|
'name' => 'Viewster',
|
|
|
|
'link' => TRUE,
|
|
|
|
'image' => 'streaming-logos/viewster.svg'
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
if (array_key_exists($hostname, $serviceMap))
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2018-10-17 14:20:07 -04:00
|
|
|
return $serviceMap[$hostname];
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2018-10-17 14:20:07 -04:00
|
|
|
|
|
|
|
// 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',
|
|
|
|
];
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
/**
|
2017-01-13 16:53:56 -05:00
|
|
|
* Reorganize streaming links
|
2017-01-05 22:24:45 -05:00
|
|
|
*
|
2017-01-13 16:53:56 -05:00
|
|
|
* @param array $included
|
2017-01-05 22:24:45 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
2017-01-13 16:53:56 -05:00
|
|
|
public static function parseStreamingLinks(array $included): array
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2018-08-10 20:10:19 -04:00
|
|
|
if (
|
|
|
|
( ! array_key_exists('streamingLinks', $included)) ||
|
|
|
|
count($included['streamingLinks']) === 0
|
|
|
|
)
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2017-01-13 16:53:56 -05:00
|
|
|
return [];
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
$links = [];
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
foreach ($included['streamingLinks'] as $streamingLink)
|
|
|
|
{
|
2018-08-10 20:10:19 -04:00
|
|
|
$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);
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
$links[] = [
|
|
|
|
'meta' => static::getServiceMetaData($host),
|
|
|
|
'link' => $streamingLink['url'],
|
|
|
|
'subs' => $streamingLink['subs'],
|
|
|
|
'dubs' => $streamingLink['dubs']
|
|
|
|
];
|
|
|
|
}
|
2018-11-09 10:38:35 -05:00
|
|
|
|
2020-04-21 19:22:56 -04:00
|
|
|
usort($links, fn ($a, $b) => $a['meta']['name'] <=> $b['meta']['name']);
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
return $links;
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-25 13:37:39 -05:00
|
|
|
/**
|
|
|
|
* Reorganize streaming links for the current list item
|
|
|
|
*
|
|
|
|
* @param array $included
|
2017-02-17 10:55:17 -05:00
|
|
|
* @param string $animeId
|
2017-01-25 13:37:39 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function parseListItemStreamingLinks(array $included, string $animeId): array
|
|
|
|
{
|
|
|
|
// Anime lists have a different structure to search through
|
|
|
|
if (array_key_exists('anime', $included) && ! array_key_exists('streamingLinks', $included))
|
|
|
|
{
|
|
|
|
$links = [];
|
|
|
|
$anime = $included['anime'][$animeId];
|
|
|
|
|
|
|
|
if (count($anime['relationships']['streamingLinks']) > 0)
|
|
|
|
{
|
2018-08-10 20:10:19 -04:00
|
|
|
return static::parseStreamingLinks($anime['relationships']);
|
2017-01-25 13:37:39 -05:00
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-25 13:37:39 -05:00
|
|
|
return $links;
|
|
|
|
}
|
2017-02-08 15:48:20 -05:00
|
|
|
|
2017-01-27 15:41:52 -05:00
|
|
|
return [];
|
2017-01-25 13:37:39 -05:00
|
|
|
}
|
2017-01-05 22:24:45 -05:00
|
|
|
|
2020-05-06 09:08:27 -04:00
|
|
|
/**
|
|
|
|
* Get the list of titles
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function getTitles(array $data): array
|
|
|
|
{
|
|
|
|
$raw = array_unique([
|
|
|
|
$data['canonicalTitle'],
|
|
|
|
...array_values($data['titles']),
|
2020-05-06 10:12:49 -04:00
|
|
|
...array_values($data['abbreviatedTitles'] ?? []),
|
2020-05-06 09:08:27 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
return array_diff($raw,[$data['canonicalTitle']]);
|
|
|
|
}
|
|
|
|
|
2017-01-05 22:24:45 -05:00
|
|
|
/**
|
2017-01-13 16:53:56 -05:00
|
|
|
* Filter out duplicate and very similar names from
|
2017-01-05 22:24:45 -05:00
|
|
|
*
|
2017-01-13 16:53:56 -05:00
|
|
|
* @param array $data The 'attributes' section of the api data response
|
|
|
|
* @return array List of alternate titles
|
2017-01-05 22:24:45 -05:00
|
|
|
*/
|
2017-01-13 16:53:56 -05:00
|
|
|
public static function filterTitles(array $data): array
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2017-01-13 16:53:56 -05:00
|
|
|
// The 'canonical' title is always returned
|
|
|
|
$valid = [$data['canonicalTitle']];
|
2017-01-05 22:24:45 -05:00
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
if (array_key_exists('titles', $data))
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2017-01-13 16:53:56 -05:00
|
|
|
foreach($data['titles'] as $alternateTitle)
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
2017-01-13 16:53:56 -05:00
|
|
|
if (self::titleIsUnique($alternateTitle, $valid))
|
|
|
|
{
|
|
|
|
$valid[] = $alternateTitle;
|
|
|
|
}
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-13 16:53:56 -05:00
|
|
|
return $valid;
|
2017-01-05 22:24:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if an alternate title is unique enough to list
|
|
|
|
*
|
|
|
|
* @param string $title
|
|
|
|
* @param array $existingTitles
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-02-17 10:55:17 -05:00
|
|
|
private static function titleIsUnique(string $title = NULL, array $existingTitles = []): bool
|
2017-01-05 22:24:45 -05:00
|
|
|
{
|
|
|
|
if (empty($title))
|
|
|
|
{
|
2017-02-17 10:55:17 -05:00
|
|
|
return FALSE;
|
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
|
|
|
}
|