forked from blallo/rss-bridge
46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
class PlanetLibreBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
|
|
$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)";
|
|
$this->update = "2014-05-26";
|
|
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
|
|
function PlanetLibreExtractContent($url) {
|
|
$html2 = file_get_html($url);
|
|
$text = $html2->find('div[class="post-text"]', 0)->innertext;
|
|
return $text;
|
|
}
|
|
$html = file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404);
|
|
$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 = PlanetLibreExtractContent($item->uri);
|
|
$this->items[] = $item;
|
|
$limit++;
|
|
}
|
|
}
|
|
|
|
}
|
|
public function getName(){
|
|
return 'PlanetLibre';
|
|
}
|
|
public function getURI(){
|
|
return 'http://www.planet-libre.org/';
|
|
}
|
|
public function getCacheDuration(){
|
|
return 3600*2; // 1 hour
|
|
}
|
|
}
|
|
|