4.1 Beta...ish #12

Merged
timw4mail merged 88 commits from develop into master 2018-11-05 13:15:59 -05:00
Showing only changes of commit f243dd4583 - Show all commits

View File

@ -66,74 +66,62 @@ final class Kitsu {
*/ */
protected static function getServiceMetaData(string $hostname = NULL): array protected static function getServiceMetaData(string $hostname = NULL): array
{ {
switch($hostname) $serviceMap = [
{ 'www.amazon.com' => [
case 'www.amazon.com':
return [
'name' => 'Amazon Prime', 'name' => 'Amazon Prime',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/amazon.svg', 'image' => 'streaming-logos/amazon.svg',
]; ],
'www.crunchyroll.com' => [
case 'www.crunchyroll.com':
return [
'name' => 'Crunchyroll', 'name' => 'Crunchyroll',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/crunchyroll.svg', 'image' => 'streaming-logos/crunchyroll.svg',
]; ],
'www.daisuki.net' => [
case 'www.daisuki.net':
return [
'name' => 'Daisuki', 'name' => 'Daisuki',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/daisuki.svg' 'image' => 'streaming-logos/daisuki.svg'
]; ],
'wwww.funimation.com' => [
case 'www.funimation.com':
return [
'name' => 'Funimation', 'name' => 'Funimation',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/funimation.svg', 'image' => 'streaming-logos/funimation.svg',
]; ],
'www.hidive.com' => [
case 'www.hidive.com':
return [
'name' => 'Hidive', 'name' => 'Hidive',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/hidive.svg', 'image' => 'streaming-logos/hidive.svg',
]; ],
'www.hulu.com' => [
case 'www.hulu.com':
return [
'name' => 'Hulu', 'name' => 'Hulu',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/hulu.svg', 'image' => 'streaming-logos/hulu.svg',
]; ],
'tubitv.com' => [
case 'tubitv.com':
return [
'name' => 'TubiTV', 'name' => 'TubiTV',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/tubitv.svg', 'image' => 'streaming-logos/tubitv.svg',
]; ],
'www.viewster.com' => [
case 'www.viewster.com':
return [
'name' => 'Viewster', 'name' => 'Viewster',
'link' => TRUE, 'link' => TRUE,
'image' => 'streaming-logos/viewster.svg' 'image' => 'streaming-logos/viewster.svg'
],
]; ];
if (array_key_exists($hostname, $serviceMap))
{
return $serviceMap[$hostname];
}
// Default to Netflix, because the API links are broken, // Default to Netflix, because the API links are broken,
// and there's no other real identifier for Netflix // and there's no other real identifier for Netflix
default:
return [ return [
'name' => 'Netflix', 'name' => 'Netflix',
'link' => FALSE, 'link' => FALSE,
'image' => 'streaming-logos/netflix.svg', 'image' => 'streaming-logos/netflix.svg',
]; ];
} }
}
/** /**
* Reorganize streaming links * Reorganize streaming links