forked from blallo/rss-bridge
a4b9611e66
- Do not add spaces after opening or before closing parenthesis // Wrong if( !is_null($var) ) { ... } // Right if(!is_null($var)) { ... } - Add space after closing parenthesis // Wrong if(true){ ... } // Right if(true) { ... } - Add body into new line - Close body in new line // Wrong if(true) { ... } // Right if(true) { ... } Notice: Spaces after keywords are not detected: // Wrong (not detected) // -> space after 'if' and missing space after 'else' if (true) { ... } else{ ... } // Right if(true) { ... } else { ... }
38 lines
1,015 B
PHP
38 lines
1,015 B
PHP
<?php
|
|
class PlanetLibreBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'pit-fgfjiudghdf';
|
|
const NAME = 'PlanetLibre';
|
|
const URI = 'http://www.planet-libre.org';
|
|
const DESCRIPTION = 'Returns the 5 newest posts from PlanetLibre (full text)';
|
|
|
|
private function extractContent($url){
|
|
$html2 = getSimpleHTMLDOM($url);
|
|
$text = $html2->find('div[class="post-text"]', 0)->innertext;
|
|
return $text;
|
|
}
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or 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->extractContent($item['uri']);
|
|
$this->items[] = $item;
|
|
$limit++;
|
|
}
|
|
}
|
|
}
|
|
}
|