2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class AllocineFRBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "superbaillot.net";
|
|
|
|
const NAME = "Allo Cine Bridge";
|
|
|
|
const URI = "http://www.allocine.fr";
|
|
|
|
const DESCRIPTION = "Bridge for allocine.fr";
|
|
|
|
const PARAMETERS = array( array(
|
2016-08-27 21:03:26 +02:00
|
|
|
'category'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'category',
|
|
|
|
'type'=>'list',
|
|
|
|
'required'=>true,
|
|
|
|
'exampleValue'=>'Faux Raccord',
|
|
|
|
'title'=>'Select your category',
|
|
|
|
'values'=>array(
|
2016-08-27 21:03:26 +02:00
|
|
|
'Faux Raccord'=>'faux-raccord',
|
|
|
|
'Top 5'=>'top-5',
|
2016-08-28 01:38:43 +02:00
|
|
|
'Tueurs en Séries'=>'tueurs-en-serie'
|
2016-08-22 01:25:56 +02:00
|
|
|
)
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
));
|
2016-08-10 11:41:35 +02:00
|
|
|
|
2016-08-28 01:38:43 +02:00
|
|
|
public function getURI(){
|
2016-08-28 01:25:33 +02:00
|
|
|
switch($this->getInput('category')){
|
2016-08-28 01:38:43 +02:00
|
|
|
case 'faux-raccord':
|
|
|
|
$uri = 'http://www.allocine.fr/video/programme-12284/saison-24580/';
|
|
|
|
break;
|
|
|
|
case 'top-5':
|
|
|
|
$uri = 'http://www.allocine.fr/video/programme-12299/saison-22542/';
|
|
|
|
break;
|
|
|
|
case 'tueurs-en-serie':
|
|
|
|
$uri = 'http://www.allocine.fr/video/programme-12286/saison-22938/';
|
|
|
|
break;
|
2016-08-10 11:41:35 +02:00
|
|
|
}
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-28 01:38:43 +02:00
|
|
|
return $uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2016-08-30 11:23:55 +02:00
|
|
|
return self::NAME.' : '
|
2016-08-28 01:38:43 +02:00
|
|
|
.array_search(
|
|
|
|
$this->getInput('category'),
|
2016-08-30 11:23:55 +02:00
|
|
|
self::PARAMETERS[$this->queriedContext]['category']['values']
|
2016-08-28 01:38:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
|
|
|
|
$html = $this->getSimpleHTMLDOM($this->getURI())
|
|
|
|
or $this->returnServerError("Could not request ".$this->getURI()." !");
|
|
|
|
|
|
|
|
$category=array_search(
|
|
|
|
$this->getInput('category'),
|
2016-08-30 11:23:55 +02:00
|
|
|
self::PARAMETERS[$this->queriedContext]['category']['values']
|
2016-08-28 01:38:43 +02:00
|
|
|
);
|
2016-08-10 11:41:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
|
|
|
|
foreach($html->find('figure.media-meta-fig') as $element)
|
|
|
|
{
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2016-08-10 11:41:35 +02:00
|
|
|
$title = $element->find('div.titlebar h3.title a', 0);
|
2014-05-26 00:30:46 +02:00
|
|
|
$content = trim($element->innertext);
|
2016-08-10 11:41:35 +02:00
|
|
|
$figCaption = strpos($content, $category);
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
if($figCaption !== false)
|
|
|
|
{
|
2016-08-10 11:41:35 +02:00
|
|
|
$content = str_replace('src="/', 'src="http://www.allocine.fr/', $content);
|
|
|
|
$content = str_replace('href="/', 'href="http://www.allocine.fr/', $content);
|
|
|
|
$content = str_replace('src=\'/', 'src=\'http://www.allocine.fr/', $content);
|
|
|
|
$content = str_replace('href=\'/', 'href=\'http://www.allocine.fr/', $content);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $content;
|
|
|
|
$item['title'] = trim($title->innertext);
|
|
|
|
$item['uri'] = "http://www.allocine.fr" . $title->href;
|
2014-05-26 00:30:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 25200; // 7 hours
|
|
|
|
}
|
|
|
|
}
|