2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class CopieDoubleBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-03 23:28:44 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "superbaillot.net";
|
|
|
|
$this->name = "CopieDouble";
|
|
|
|
$this->uri = "http://www.copie-double.com/";
|
|
|
|
$this->description = "CopieDouble";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
public function collectData(array $param){
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://www.copie-double.com/') or $this->returnServerError('Could not request CopieDouble.');
|
2014-05-26 00:30:46 +02:00
|
|
|
$table = $html->find('table table', 2);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
foreach($table->find('tr') as $element)
|
|
|
|
{
|
|
|
|
$td = $element->find('td', 0);
|
|
|
|
$cpt++;
|
|
|
|
if($td->class == "couleur_1")
|
|
|
|
{
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$title = $td->innertext;
|
|
|
|
$pos = strpos($title, "<a");
|
|
|
|
$title = substr($title, 0, $pos);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['title'] = $title;
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
|
|
|
elseif(strpos($element->innertext, "/images/suivant.gif") === false)
|
|
|
|
{
|
|
|
|
$a=$element->find("a", 0);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['uri'] = "http://www.copie-double.com" . $a->href;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
$content = str_replace('src="/', 'src="http://www.copie-double.com/',$element->find("td", 0)->innertext);
|
|
|
|
$content = str_replace('href="/', 'href="http://www.copie-double.com/',$content);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $content;
|
2014-05-26 00:30:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 14400; // 4 hours
|
|
|
|
}
|
|
|
|
}
|