2014-05-26 19:45:10 +02:00
|
|
|
<?php
|
|
|
|
class PlanetLibreBridge extends BridgeAbstract{
|
2015-11-04 10:47:21 +01:00
|
|
|
|
2016-08-04 12:04:29 +02:00
|
|
|
public function loadMetadatas(){
|
2015-11-04 10:47:21 +01:00
|
|
|
$this->maintainer = "pit-fgfjiudghdf";
|
|
|
|
$this->name = "PlanetLibre";
|
|
|
|
$this->uri = "http://www.planet-libre.org";
|
|
|
|
$this->description = "Returns the 5 newest posts from PlanetLibre (full text)";
|
|
|
|
}
|
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function PlanetLibreExtractContent($url){
|
2016-08-21 20:08:18 +02:00
|
|
|
$html2 = $this->getSimpleHTMLDOM($url);
|
2016-08-04 12:04:29 +02:00
|
|
|
$text = $html2->find('div[class="post-text"]', 0)->innertext;
|
|
|
|
return $text;
|
|
|
|
}
|
2016-08-04 12:02:27 +02:00
|
|
|
|
2016-08-04 12:04:29 +02:00
|
|
|
public function collectData(array $param){
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://www.planet-libre.org/') or $this->returnServerError('Could not request PlanetLibre.');
|
2016-08-04 12:04:29 +02:00
|
|
|
$limit = 0;
|
|
|
|
foreach($html->find('div.post') as $element) {
|
|
|
|
if($limit < 5) {
|
|
|
|
$item = new \Item();
|
|
|
|
$item->title = $element->find('h1', 0)->plaintext;
|
|
|
|
$item->uri = $element->find('a', 0)->href;
|
|
|
|
$item->timestamp = strtotime(str_replace('/', '-', $element->find('div[class="post-date"]', 0)->plaintext));
|
|
|
|
$item->content = $this->PlanetLibreExtractContent($item->uri);
|
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-26 19:45:10 +02:00
|
|
|
|
2016-08-04 12:04:29 +02:00
|
|
|
public function getCacheDuration(){
|
|
|
|
return 3600*2; // 1 hour
|
|
|
|
}
|
2014-05-26 19:45:10 +02:00
|
|
|
}
|