forked from blallo/rss-bridge
fbf17beae8
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
93 lines
3.5 KiB
PHP
93 lines
3.5 KiB
PHP
<?php
|
|
class Arte7Bridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$this->maintainer = "mitsukarenai";
|
|
$this->name = "Arte +7";
|
|
$this->uri = "http://www.arte.tv/";
|
|
$this->description = "Returns newest videos from ARTE +7";
|
|
$this->parameters["Catégorie (Français)"] = array(
|
|
'catfr'=>array(
|
|
'type'=>'list',
|
|
'name'=>'Catégorie',
|
|
'values'=>array(
|
|
'Toutes les vidéos (français)'=>'toutes-les-videos',
|
|
'Actu & société'=>'actu-société',
|
|
'Séries & fiction'=>'séries-fiction',
|
|
'Cinéma'=>'cinéma',
|
|
'Arts & spectacles classiques'=>'arts-spectacles-classiques',
|
|
'Culture pop'=>'culture-pop',
|
|
'Découverte'=>'découverte',
|
|
'Histoire'=>'histoire',
|
|
'Junior'=>'junior'
|
|
|
|
)
|
|
)
|
|
);
|
|
|
|
$this->parameters["Catégorie (Allemand)"] = array(
|
|
'catde'=>array(
|
|
'type'=>'list',
|
|
'name'=>'Catégorie',
|
|
'values'=>array(
|
|
'Alle Videos (deutsch)'=>'alle-videos',
|
|
'Aktuelles & Gesellschaft'=>'aktuelles-gesellschaft',
|
|
'Fernsehfilme & Serien'=>'fernsehfilme-serien',
|
|
'Kino'=>'kino',
|
|
'Kunst & Kultur'=>'kunst-kultur',
|
|
'Popkultur & Alternativ'=>'popkultur-alternativ',
|
|
'Entdeckung'=>'entdeckung',
|
|
'Geschichte'=>'geschichte',
|
|
'Junior'=>'junior'
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
protected function extractVideoset($category='toutes-les-videos', $lang='fr'){
|
|
$url = 'http://www.arte.tv/guide/'.$lang.'/plus7/'.$category;
|
|
$input = $this->getContents($url) or die('Could not request ARTE.');
|
|
if(strpos($input, 'categoryVideoSet') !== FALSE){
|
|
$input = explode('categoryVideoSet: ', $input);
|
|
$input = explode('}},', $input[1]);
|
|
$input = $input[0].'}}';
|
|
}else{
|
|
$input = explode('videoSet: ', $input);
|
|
$input = explode('}]},', $input[1]);
|
|
$input = $input[0].'}]}';
|
|
}
|
|
$input = json_decode($input, TRUE);
|
|
return $input;
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
|
|
$category='toutes-les-videos'; $lang='fr';
|
|
if (!empty($param['catfr']))
|
|
$category=$param['catfr'];
|
|
if (!empty($param['catde']))
|
|
{ $category=$param['catde']; $lang='de'; }
|
|
$input_json = $this->extractVideoset($category, $lang);
|
|
|
|
foreach($input_json['videos'] as $element) {
|
|
$item = array();
|
|
$item['uri'] = str_replace("autoplay=1", "", $element['url']);
|
|
$item['id'] = $element['id'];
|
|
$hack_broadcast_time = $element['rights_end'];
|
|
$hack_broadcast_time = strtok($hack_broadcast_time, 'T');
|
|
$hack_broadcast_time = strtok('T');
|
|
$item['timestamp'] = strtotime($element['scheduled_on'].'T'.$hack_broadcast_time);
|
|
$item['title'] = $element['title'];
|
|
if (!empty($element['subtitle']))
|
|
$item['title'] = $element['title'].' | '.$element['subtitle'];
|
|
$item['duration'] = round((int)$element['duration']/60);
|
|
$item['content'] = $element['teaser'].'<br><br>'.$item['duration'].'min<br><a href="'.$item['uri'].'"><img src="' . $element['thumbnail_url'] . '" /></a>';
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 1800; // 30 minutes
|
|
}
|
|
}
|