2013-12-16 17:51:49 +01:00
|
|
|
<?php
|
|
|
|
class ScmbBridge extends BridgeAbstract{
|
2015-11-05 12:20:11 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "Astalaseven";
|
|
|
|
public $name = "Se Coucher Moins Bête Bridge";
|
|
|
|
public $uri = "http://secouchermoinsbete.fr/";
|
|
|
|
public $description = "Returns the newest anecdotes.";
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2013-12-16 17:51:49 +01:00
|
|
|
$html = '';
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM('http://secouchermoinsbete.fr/') or $this->returnServerError('Could not request Se Coucher Moins Bete.');
|
|
|
|
|
2013-12-16 17:51:49 +01:00
|
|
|
foreach($html->find('article') as $article) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = 'http://secouchermoinsbete.fr'.$article->find('p.summary a',0)->href;
|
|
|
|
$item['title'] = $article->find('header h1 a',0)->innertext;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-12-16 17:51:49 +01:00
|
|
|
$article->find('span.read-more',0)->outertext=''; // remove text "En savoir plus" from anecdote content
|
|
|
|
$content = $article->find('p.summary a',0)->innertext;
|
|
|
|
$content =substr($content,0,strlen($content)-17); // remove superfluous spaces at the end
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2013-12-16 17:51:49 +01:00
|
|
|
// get publication date
|
|
|
|
$str_date = $article->find('time',0)->datetime;
|
|
|
|
list($date, $time) = explode(' ', $str_date);
|
|
|
|
list($y, $m, $d) = explode('-', $date);
|
|
|
|
list($h, $i) = explode(':', $time);
|
|
|
|
$timestamp = mktime($h,$i,0,$m,$d,$y);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = $timestamp;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $content;
|
2013-12-16 17:51:49 +01:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|