Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PokemonTV] New complete bridge #2219

Merged
merged 3 commits into from
Sep 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 144 additions & 0 deletions bridges/PokemonTVBridge.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
<?php

class PokemonTVBridge extends BridgeAbstract {
const NAME = 'PokemonTV Bridge';
const URI = 'https://www.pokemon.com/';
const DESCRIPTION = 'Returns latest episodes from PokemonTV';
const MAINTAINER = 'Bockiii';
const CACHE_TIMEOUT = 3600;
const PARAMETERS = array( array(
'language' => array(
'name' => 'Language',
'type' => 'list',
'title' => 'Select your language',
'values' => array(
'Danish' => 'dk',
'Dutch' => 'nl',
'English (UK)' => 'uk',
'English (US)' => 'us',
'Finish' => 'fi',
'French' => 'fr',
'German' => 'de',
'Italian' => 'it',
'Latin America' => 'el',
'Norwegian' => 'no',
'Portoguese' => 'br',
'Russian' => 'ru',
'Spanish' => 'es',
'Swedish' => 'se'
),
'defaultValue' => 'English (US)'
),
'filtername' => array(
'name' => 'Series Name Filter',
'exampleValue' => 'Ultra',
'required' => false
),
'filterseason' => array(
'name' => 'Series Season Filter',
'exampleValue' => '5',
'required' => false
)
));

public function collectData(){
$link = 'https://www.pokemon.com/api/pokemontv/v2/channels/' . $this->getInput('language');

$html = getSimpleHTMLDOM($link)
or returnServerError('Could not request Channels for : ' . $link);
$parsed_json = json_decode($html);

$filtername = $this->getInput('filtername');
$filterseason = $this->getInput('filterseason');

foreach($parsed_json as $element) {
if(strlen($filtername) >= 1) {
if (!(stristr($element->{'channel_name'}, $filtername) !== false)) {
continue;
}
}
foreach($element->{'media'} as $mediaelement) {
if(strlen($filterseason) >= 1) {
if ($mediaelement->{'season'} != $filterseason) {
continue;
}
}
switch($element->{'media_type'}) {
case 'movie':
$itemtitle = $element->{'channel_name'};
break;
case 'episode':
$season = str_pad($mediaelement->{'season'}, 2, '0', STR_PAD_LEFT);
$episode = str_pad($mediaelement->{'episode'}, 2, '0', STR_PAD_LEFT);
$itemtitle = $element->{'channel_name'} . ' - S' . $season . 'E' . $episode;
break;
}
$streamurl = 'https://watch.pokemon.com/' . $this->getCountryCode() . '/#/player?id=' . $mediaelement->{'id'};
$item = array();
$item['uri'] = $streamurl;
$item['title'] = $itemtitle;
$item['timestamp'] = $mediaelement->{'last_modified'};
$item['content'] = '<h1>' . $itemtitle . ' ' . $mediaelement->{'title'}
. '</h1><br><br><a href="'
. $streamurl
. '"><img src="'
. $mediaelement->{'images'}->{'medium'}
. '" /></a><br><br>'
. $mediaelement->{'description'}
. '<br><br><a href="' . $mediaelement->{'offline_url'} . '">Download</a>';
$this->items[] = $item;
}
}
}

private function getCountryCode() {
switch($this->getInput('language')) {
case 'us':
return 'en-us';
break;
case 'de':
return 'de-de';
break;
case 'fr':
return 'fr-fr';
break;
case 'es':
return 'es-es';
break;
case 'el':
return 'es-xl';
break;
case 'it':
return 'it-it';
break;
case 'dk':
return 'da-dk';
break;
case 'fi':
return 'fi-fi';
break;
case 'br':
return 'pt-br';
break;
case 'uk':
return 'en-gb';
break;
case 'ru':
return 'ru-ru';
break;
case 'nl':
return 'nl-nl';
break;
case 'no':
return 'nb-no';
break;
case 'se':
return 'sv-se';
break;
}
}

public function getIcon() {
return 'https://assets.pokemon.com/static2/_ui/img/favicon.ico';
}
}