[PlanetLibre] Fix indentation and remove empty lines

This commit is contained in:
logmanoriginal 2016-08-04 12:04:29 +02:00
parent 77f326e377
commit 2913f86684

View file

@ -1,46 +1,43 @@
<?php <?php
class PlanetLibreBridge extends BridgeAbstract{ class PlanetLibreBridge extends BridgeAbstract{
public function loadMetadatas() { public function loadMetadatas(){
$this->maintainer = "pit-fgfjiudghdf"; $this->maintainer = "pit-fgfjiudghdf";
$this->name = "PlanetLibre"; $this->name = "PlanetLibre";
$this->uri = "http://www.planet-libre.org"; $this->uri = "http://www.planet-libre.org";
$this->description = "Returns the 5 newest posts from PlanetLibre (full text)"; $this->description = "Returns the 5 newest posts from PlanetLibre (full text)";
$this->update = "2016-08-04"; $this->update = "2016-08-04";
} }
function PlanetLibreExtractContent($url) { function PlanetLibreExtractContent($url){
$html2 = $this->file_get_html($url); $html2 = $this->file_get_html($url);
$text = $html2->find('div[class="post-text"]', 0)->innertext; $text = $html2->find('div[class="post-text"]', 0)->innertext;
return $text; return $text;
} }
public function collectData(array $param){ public function collectData(array $param){
$html = $this->file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404); $html = $this->file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404);
$limit = 0; $limit = 0;
foreach($html->find('div.post') as $element) { foreach($html->find('div.post') as $element) {
if($limit < 5) { if($limit < 5) {
$item = new \Item(); $item = new \Item();
$item->title = $element->find('h1', 0)->plaintext; $item->title = $element->find('h1', 0)->plaintext;
$item->uri = $element->find('a', 0)->href; $item->uri = $element->find('a', 0)->href;
$item->timestamp = strtotime(str_replace('/', '-', $element->find('div[class="post-date"]', 0)->plaintext)); $item->timestamp = strtotime(str_replace('/', '-', $element->find('div[class="post-date"]', 0)->plaintext));
$item->content = $this->PlanetLibreExtractContent($item->uri); $item->content = $this->PlanetLibreExtractContent($item->uri);
$this->items[] = $item; $this->items[] = $item;
$limit++; $limit++;
} }
} }
}
} public function getName(){
public function getName(){ return 'PlanetLibre';
return 'PlanetLibre'; }
} public function getURI(){
public function getURI(){ return 'http://www.planet-libre.org/';
return 'http://www.planet-libre.org/'; }
} public function getCacheDuration(){
public function getCacheDuration(){ return 3600*2; // 1 hour
return 3600*2; // 1 hour }
}
} }