Rss-Bridge/bridges/TheOatMealBridge.php
Pierre Mazière 3bacb407fe [bridges] use parent::parseItems() instead of feed type specific method
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
2016-09-12 10:42:27 +02:00

31 lines
853 B
PHP

<?php
class TheOatmealBridge extends FeedExpander{
const MAINTAINER = "Riduidel";
const NAME = "The Oatmeal";
const URI = "http://theoatmeal.com/";
const DESCRIPTION = "Un petit site de dessins assez rigolos";
public function collectData(){
$this->collectExpandableDatas('http://feeds.feedburner.com/oatmealfeed');
}
protected function parseItem($newsItem) {
$item = parent::parseItem($newsItem);
$articlePage = $this->getSimpleHTMLDOMCached($item['uri']);
$content = $articlePage->find('#comic', 0);
if(is_null($content)) // load alternative
$content = $articlePage->find('#blog', 0);
if(!is_null($content))
$item['content'] = $content->innertext;
return $item;
}
public function getCacheDuration(){
return 7200; // 2h hours
}
}