mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 15:06:53 +00:00
Add: Se coucher moins bête Bridge
This commit is contained in:
parent
f3dd80d73f
commit
7202427fe5
36
bridges/ScmbBridge.php
Normal file
36
bridges/ScmbBridge.php
Normal 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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user