2014-05-26 19:45:10 +02:00
|
|
|
<?php
|
|
|
|
class PlanetLibreBridge extends BridgeAbstract{
|
2015-11-04 10:47:21 +01:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "pit-fgfjiudghdf";
|
|
|
|
const NAME = "PlanetLibre";
|
|
|
|
const URI = "http://www.planet-libre.org";
|
|
|
|
const DESCRIPTION = "Returns the 5 newest posts from PlanetLibre (full text)";
|
2015-11-04 10:47:21 +01:00
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function PlanetLibreExtractContent($url){
|
2016-09-25 23:22:33 +02:00
|
|
|
$html2 = 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-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-09-25 23:22:33 +02:00
|
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
|
|
or 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) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$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']);
|
2016-08-04 12:04:29 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-26 19:45:10 +02:00
|
|
|
}
|