Add: Se coucher moins bête Bridge

This commit is contained in:
Henri Rebecq 2013-08-19 11:30:03 +10:00
parent f3dd80d73f
commit 7202427fe5

36
bridges/ScmbBridge.php Normal file
View File

@ -0,0 +1,36 @@
<?php
/**
* RssBridgeSeCoucherMoinsBete
* Returns the newest anecdotes
*
* @name Se Coucher Moins Bête Bridge
* @description Returns the newest anecdotes
*/
class ScmbBridge extends BridgeAbstract{
public function collectData(array $param){
$html = '';
$html = file_get_html('http://secouchermoinsbete.fr/') or $this->returnError('Could not request Se Coucher Moins Bete.', 404);
foreach($html->find('article') as $article) {
$item = new \Item();
$item->uri = 'http://secouchermoinsbete.fr'.$article->find('p.summary a',0)->href;
$item->title = $article->find('header h1 a',0)->innertext;
$article->find('span.read-more',0)->outertext=''; // remove text "En savoir plus" from anecdote content
$item->content = $article->find('p.summary a',0)->innertext;
$this->items[] = $item;
}
}
public function getName(){
return 'Se Coucher Moins Bête Bridge';
}
public function getURI(){
return 'http://secouchermoinsbete.fr/';
}
public function getCacheDuration(){
return 21600; // 6 hours
}
}