2014-07-14 19:12:01 +02:00
|
|
|
<?php
|
|
|
|
class GizmodoFRBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "polopollo";
|
|
|
|
const NAME = "GizmodoFR";
|
|
|
|
const URI = "http://www.gizmodo.fr/";
|
|
|
|
const DESCRIPTION = "Returns the 15 newest posts from GizmodoFR (full text).";
|
2015-11-03 23:28:44 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2014-07-14 19:12:01 +02:00
|
|
|
|
|
|
|
function GizmodoFRExtractContent($url) {
|
2016-07-08 19:06:35 +02:00
|
|
|
$articleHTMLContent = $this->getSimpleHTMLDOM($url);
|
2016-08-29 00:22:54 +02:00
|
|
|
if(!$articleHTMLContent){
|
|
|
|
return 'Could not load '.$url;
|
|
|
|
}
|
2014-07-14 19:12:01 +02:00
|
|
|
$text = $articleHTMLContent->find('div.entry-thumbnail', 0)->innertext;
|
|
|
|
$text = $text.$articleHTMLContent->find('div.entry-excerpt', 0)->innertext;
|
|
|
|
$text = $text.$articleHTMLContent->find('div.entry-content', 0)->innertext;
|
|
|
|
foreach($articleHTMLContent->find('pagespeed_iframe') as $element) {
|
2014-07-14 20:12:52 +02:00
|
|
|
$text = $text.'<p>link to a iframe (could be a video): <a href="'.$element->src.'">'.$element->src.'</a></p><br>';
|
2014-07-14 19:12:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$text = strip_tags($text, '<p><b><a><blockquote><img><em>');
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
$rssFeed = $this->getSimpleHTMLDOM(self::URI.'/feed')
|
|
|
|
or $this->returnServerError('Could not request '.self::URI.'/feed');
|
2014-07-14 19:12:01 +02:00
|
|
|
$limit = 0;
|
|
|
|
|
|
|
|
foreach($rssFeed->find('item') as $element) {
|
|
|
|
if($limit < 15) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['title'] = $element->find('title', 0)->innertext;
|
|
|
|
$item['uri'] = $element->find('guid', 0)->plaintext;
|
|
|
|
$item['timestamp'] = strtotime($element->find('pubDate', 0)->plaintext);
|
|
|
|
$item['content'] = GizmodoFRExtractContent($item['uri']);
|
2014-07-14 19:12:01 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 1800; // 30min
|
|
|
|
}
|
|
|
|
}
|