2015-12-11 11:51:27 +01:00
|
|
|
<?php
|
2016-08-27 21:03:26 +02:00
|
|
|
class FierPandaBridge extends BridgeAbstract {
|
2015-12-11 11:51:27 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "snroki";
|
|
|
|
public $name = "Fier Panda Bridge";
|
|
|
|
public $uri = "http://www.fier-panda.fr/";
|
|
|
|
public $description = "Returns latest articles from Fier Panda.";
|
2015-12-11 11:51:27 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-28 19:41:58 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request Fier Panda.');
|
2015-12-11 11:51:27 +01:00
|
|
|
|
|
|
|
foreach($html->find('div.container-content article') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $this->getURI().$element->find('a', 0)->href;
|
|
|
|
$item['title'] = trim($element->find('h2 a', 0)->innertext);
|
2015-12-11 11:51:27 +01:00
|
|
|
// Remove the link at the end of the article
|
|
|
|
$element->find('p a', 0)->outertext = '';
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $element->find('p', 0)->innertext;
|
2015-12-11 11:51:27 +01:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|