2014-05-26 19:45:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RssBridgePlanetLibre
|
|
|
|
* Returns the 5 newest posts from PlanetLibre (full text)
|
|
|
|
*
|
|
|
|
* @name PlanetLibre
|
2014-05-31 11:46:54 +02:00
|
|
|
* @homepage http://www.planet-libre.org
|
2014-05-26 19:45:10 +02:00
|
|
|
* @description Returns the 5 newest posts from PlanetLibre (full text)
|
|
|
|
* @maintainer pit-fgfjiudghdf
|
|
|
|
* @update 2014-05-26
|
|
|
|
*/
|
|
|
|
class PlanetLibreBridge extends BridgeAbstract{
|
|
|
|
public function collectData(array $param){
|
2014-05-31 11:46:54 +02:00
|
|
|
|
2014-05-26 19:45:10 +02:00
|
|
|
function PlanetLibreExtractContent($url) {
|
|
|
|
$html2 = file_get_html($url);
|
2014-05-31 11:46:54 +02:00
|
|
|
$text = $html2->find('div[class="post-text"]', 0)->innertext;
|
2014-05-26 19:45:10 +02:00
|
|
|
return $text;
|
|
|
|
}
|
2014-05-31 11:46:54 +02:00
|
|
|
$html = file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404);
|
2014-05-26 19:45:10 +02:00
|
|
|
$limit = 0;
|
2014-05-31 11:46:54 +02:00
|
|
|
foreach($html->find('div.post') as $element) {
|
2014-05-26 19:45:10 +02:00
|
|
|
if($limit < 5) {
|
|
|
|
$item = new \Item();
|
2014-05-31 11:46:54 +02:00
|
|
|
$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));
|
2014-05-26 19:45:10 +02:00
|
|
|
$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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|