2016-09-14 13:32:34 +02:00
|
|
|
<?php
|
|
|
|
class GizmodoBridge extends FeedExpander {
|
|
|
|
|
|
|
|
const MAINTAINER = "polopollo";
|
|
|
|
const NAME = "Gizmodo";
|
|
|
|
const URI = "http://gizmodo.com/";
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 1800; // 30min
|
2016-09-14 13:32:34 +02:00
|
|
|
const DESCRIPTION = "Returns the newest posts from Gizmodo (full text).";
|
|
|
|
|
|
|
|
protected function parseItem($item){
|
|
|
|
$item = parent::parseItem($item);
|
|
|
|
|
2016-09-25 23:22:33 +02:00
|
|
|
$articleHTMLContent = getSimpleHTMLDOMCached($item['uri']);
|
2016-09-14 13:32:34 +02:00
|
|
|
if(!$articleHTMLContent){
|
|
|
|
$text = 'Could not load '.$item['uri'];
|
|
|
|
}else{
|
|
|
|
$text = $articleHTMLContent->find('div.entry-content', 0)->innertext;
|
|
|
|
foreach($articleHTMLContent->find('pagespeed_iframe') as $element) {
|
|
|
|
$text .= '<p>link to a iframe (could be a video): <a href="'.$element->src.'">'.$element->src.'</a></p><br>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$text = strip_tags($text, '<p><b><a><blockquote><img><em>');
|
|
|
|
}
|
|
|
|
|
|
|
|
$item['content'] = $text;
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData(){
|
|
|
|
$this->collectExpandableDatas('http://feeds.gawker.com/gizmodo/full');
|
|
|
|
}
|
|
|
|
}
|