From 94ffb22fb057e0b07146c366503d0d396bcc8efe Mon Sep 17 00:00:00 2001 From: Nicolas Delsaux Date: Sun, 5 Jul 2015 15:24:06 +0200 Subject: [PATCH] un bridge The Oatmeal qui marche ... principalement pour les comics locaux (et pas pour explodingkittens) --- bridges/RssExpander.php | 4 ++-- bridges/TheOatMealBridge.php | 39 ++++++++++++++++++++++++++++-------- 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/bridges/RssExpander.php b/bridges/RssExpander.php index 07268ea1..e8b2476d 100644 --- a/bridges/RssExpander.php +++ b/bridges/RssExpander.php @@ -16,7 +16,7 @@ abstract class RssExpander extends HttpCachingBridgeAbstract{ if (empty($param['url'])) { $this->returnError('There is no $param[\'url\'] for this RSS expander', 404); } - // $this->message("Loading from ".$param['url']); +// $this->message("Loading from ".$param['url']); // Notice WE DO NOT use cache here on purpose : we want a fresh view of the RSS stream each time $rssContent = simplexml_load_file($param['url']) or $this->returnError('Could not request '.$param['url'], 404); // $this->message("loaded RSS from ".$param['url']); @@ -25,7 +25,7 @@ abstract class RssExpander extends HttpCachingBridgeAbstract{ $this->collect_RSS_2_0_data($rssContent); } - private function collect_RSS_2_0_data($rssContent) { + protected function collect_RSS_2_0_data($rssContent) { $rssContent = $rssContent->channel[0]; // $this->message("RSS content is ===========\n".var_export($rssContent, true)."==========="); $this->load_RSS_2_0_feed_data($rssContent); diff --git a/bridges/TheOatMealBridge.php b/bridges/TheOatMealBridge.php index 3e23f762..527af5f6 100644 --- a/bridges/TheOatMealBridge.php +++ b/bridges/TheOatMealBridge.php @@ -8,17 +8,33 @@ require_once 'bridges/RssExpander.php'; define("THE_OATMEAL", "http://theoatmeal.com/"); define("RSS", "http://feeds.feedburner.com/oatmealfeed"); -class TheOatmeal extends RssExpander{ +class TheOatmealBridge extends RssExpander{ public function collectData(array $param){ $param['url'] = RSS; parent::collectData($param); } - + + + /** + * Since the oatmeal produces a weird RSS feed, I have to fix it by loading the items separatly from the feed infos + */ + protected function collect_RSS_2_0_data($rssContent) { + $rssContent->registerXPathNamespace("dc", "http://purl.org/dc/elements/1.1/"); + $rssHeaderContent = $rssContent->channel[0]; +// $this->message("RSS content is ===========\n".var_export($rssHeaderContent, true)."==========="); + $this->load_RSS_2_0_feed_data($rssHeaderContent); + foreach($rssContent->item as $item) { + $this->message("parsing item ".var_export($item, true)); + $this->items[] = $this->parseRSSItem($item); + } + } + + protected function parseRSSItem($newsItem) { $item = new Item(); - $item->title = trim($newsItem->title); -// $this->message("browsing item ".var_export($newsItem, true)); + $item->title = trim($newsItem->title); + $this->message("browsing Oatmeal item ".var_export($newsItem, true)); if(empty($newsItem->guid)) { $item->uri = $newsItem->link; } else { @@ -32,12 +48,19 @@ class TheOatmeal extends RssExpander{ if($content==null) { $content = $articlePage->find('#blog'); } - $item->content = $newsItem->description; - $item->name = $newsItem->author; - $item->timestamp = $this->RSS_2_0_time_to_timestamp($newsItem); + $item->content = $content->innertext; + + $namespaces = $newsItem->getNameSpaces(true); + + $dc = $newsItem->children($namespaces['dc']); + $this->message("dc content is ".var_export($dc, true)); + $item->name = $dc->creator; + $item->timestamp = DateTime::createFromFormat(DateTime::ISO8601, $dc->date)->getTimestamp(); + $this->message("writtem by ".$item->name." on ".$item->timestamp); return $item; } + public function getCacheDuration(){ - return 7200; // 2h hours + return 1; // 2h hours } }