fix PlanetLibre

This commit is contained in:
Mitsukarenai 2014-05-31 11:46:54 +02:00
parent 237886feb6
commit 6b2742b067

View file

@ -4,31 +4,27 @@
* Returns the 5 newest posts from PlanetLibre (full text) * Returns the 5 newest posts from PlanetLibre (full text)
* *
* @name PlanetLibre * @name PlanetLibre
* @homepage http://www.www.planet-libre.org * @homepage http://www.planet-libre.org
* @description Returns the 5 newest posts from PlanetLibre (full text) * @description Returns the 5 newest posts from PlanetLibre (full text)
* @maintainer pit-fgfjiudghdf * @maintainer pit-fgfjiudghdf
* @update 2014-05-26 * @update 2014-05-26
*/ */
class PlanetLibreBridge extends BridgeAbstract{ class PlanetLibreBridge extends BridgeAbstract{
public function collectData(array $param){ public function collectData(array $param){
function PlanetLibreStripCDATA($string) {
$string = str_replace('<![CDATA[', '', $string);
$string = str_replace(']]>', '', $string);
return $string;
}
function PlanetLibreExtractContent($url) { function PlanetLibreExtractContent($url) {
$html2 = file_get_html($url); $html2 = 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;
} }
$html = file_get_html('http://www.planet-libre.org/rss10.php') or $this->returnError('Could not request PlanetLibre.', 404); $html = file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404);
$limit = 0; $limit = 0;
foreach($html->find('item') as $element) { foreach($html->find('div.post') as $element) {
if($limit < 5) { if($limit < 5) {
$item = new \Item(); $item = new \Item();
$item->title = PlanetLibreStripCDATA($element->find('title', 0)->innertext); $item->title = $element->find('h1', 0)->plaintext;
$item->uri = PlanetLibreStripCDATA($element->find('guid', 0)->plaintext); $item->uri = $element->find('a', 0)->href;
$item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); $item->timestamp = strtotime(str_replace('/', '-', $element->find('div[class="post-date"]', 0)->plaintext));
$item->content = PlanetLibreExtractContent($item->uri); $item->content = PlanetLibreExtractContent($item->uri);
$this->items[] = $item; $this->items[] = $item;
$limit++; $limit++;