2016-08-27 21:03:26 +02:00
|
|
|
<?php
|
|
|
|
class Arte7Bridge extends BridgeAbstract{
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "mitsukarenai";
|
|
|
|
public $name = "Arte +7";
|
|
|
|
public $uri = "http://www.arte.tv/";
|
|
|
|
public $description = "Returns newest videos from ARTE +7";
|
|
|
|
public $parameters = array(
|
|
|
|
'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'
|
2015-11-03 15:36:19 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'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'
|
|
|
|
)
|
|
|
|
)
|
2016-08-22 01:25:56 +02:00
|
|
|
)
|
|
|
|
);
|
2015-11-03 15:36:19 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2016-08-28 11:50:01 +02:00
|
|
|
switch($this->queriedContext){
|
|
|
|
case 'Catégorie (Français)':
|
|
|
|
$category=$this->getInput('catfr');
|
|
|
|
$lang='fr';
|
|
|
|
break;
|
|
|
|
case 'Catégorie (Allemand)':
|
|
|
|
$category=$this->getInput('catde');
|
|
|
|
$lang='de';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = $this->uri.'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 = json_decode($input, TRUE);
|
2014-05-26 00:30:46 +02:00
|
|
|
|
2015-10-30 11:26:49 +01:00
|
|
|
foreach($input_json['videos'] as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = str_replace("autoplay=1", "", $element['url']);
|
|
|
|
$item['id'] = $element['id'];
|
2015-10-30 11:26:49 +01:00
|
|
|
$hack_broadcast_time = $element['rights_end'];
|
|
|
|
$hack_broadcast_time = strtok($hack_broadcast_time, 'T');
|
|
|
|
$hack_broadcast_time = strtok('T');
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = strtotime($element['scheduled_on'].'T'.$hack_broadcast_time);
|
|
|
|
$item['title'] = $element['title'];
|
2015-10-30 11:26:49 +01:00
|
|
|
if (!empty($element['subtitle']))
|
2016-08-22 18:55:59 +02:00
|
|
|
$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>';
|
2014-05-26 00:30:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 1800; // 30 minutes
|
|
|
|
}
|
|
|
|
}
|