forked from blallo/rss-bridge
117031bf0f
This way, any BridgeAbstract method can now have access to these values, no only collectData Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
36 lines
1.1 KiB
PHP
36 lines
1.1 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)";
|
|
}
|
|
|
|
private function PlanetLibreExtractContent($url){
|
|
$html2 = $this->getSimpleHTMLDOM($url);
|
|
$text = $html2->find('div[class="post-text"]', 0)->innertext;
|
|
return $text;
|
|
}
|
|
|
|
public function collectData(){
|
|
$html = $this->getSimpleHTMLDOM('http://www.planet-libre.org/') or $this->returnServerError('Could not request PlanetLibre.');
|
|
$limit = 0;
|
|
foreach($html->find('div.post') as $element) {
|
|
if($limit < 5) {
|
|
$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']);
|
|
$this->items[] = $item;
|
|
$limit++;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 3600*2; // 1 hour
|
|
}
|
|
}
|