Merge pull request #324 from LogMANOriginal/PlanetLibreBridge

Planet libre bridge
This commit is contained in:
Mitsu 2016-08-04 13:00:38 +02:00 committed by GitHub
commit 559471de8a

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 = "2014-05-26"; $this->update = "2016-08-04";
} }
public function collectData(array $param){ function PlanetLibreExtractContent($url){
$html2 = $this->file_get_html($url);
$text = $html2->find('div[class="post-text"]', 0)->innertext;
return $text;
}
function PlanetLibreExtractContent($url) { public function collectData(array $param){
$html2 = $this->file_get_html($url); $html = $this->file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404);
$text = $html2->find('div[class="post-text"]', 0)->innertext; $limit = 0;
return $text; foreach($html->find('div.post') as $element) {
} if($limit < 5) {
$html = $this->file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404); $item = new \Item();
$limit = 0; $item->title = $element->find('h1', 0)->plaintext;
foreach($html->find('div.post') as $element) { $item->uri = $element->find('a', 0)->href;
if($limit < 5) { $item->timestamp = strtotime(str_replace('/', '-', $element->find('div[class="post-date"]', 0)->plaintext));
$item = new \Item(); $item->content = $this->PlanetLibreExtractContent($item->uri);
$item->title = $element->find('h1', 0)->plaintext; $this->items[] = $item;
$item->uri = $element->find('a', 0)->href; $limit++;
$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(){
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 }
}
} }