From 852d4ac89084edbee98df89ab066266cd9df63c9 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 1 May 2013 20:30:52 +0400 Subject: [PATCH] support RDF-XML feeds --- classes/feedparser.php | 34 ++++++++++++++++++++++++++++++++-- include/rssfuncs.php | 8 +++++--- 2 files changed, 37 insertions(+), 5 deletions(-) diff --git a/classes/feedparser.php b/classes/feedparser.php index eabbb5b2..8cb736a8 100644 --- a/classes/feedparser.php +++ b/classes/feedparser.php @@ -28,12 +28,16 @@ class FeedParser { $xpath = new DOMXPath($this->doc); $xpath->registerNamespace('atom', 'http://www.w3.org/2005/Atom'); $xpath->registerNamespace('media', 'http://search.yahoo.com/mrss/'); + $xpath->registerNamespace('rdf', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'); $this->xpath = $xpath; - $root = $xpath->query("(//atom:feed|//channel)")->item(0); + $root = $xpath->query("(//atom:feed|//channel|//rdf:rdf|//rdf:RDF)")->item(0); if ($root) { - switch ($root->tagName) { + switch (mb_strtolower($root->tagName)) { + case "rdf:rdf": + $this->type = $this::FEED_RDF; + break; case "channel": $this->type = $this::FEED_RSS; break; @@ -88,7 +92,33 @@ class FeedParser { } break; + case $this::FEED_RDF: + $xpath->registerNamespace('rssfake', 'http://purl.org/rss/1.0/'); + + $title = $xpath->query("//rssfake:channel/rssfake:title")->item(0); + + if ($title) { + $this->title = $title->nodeValue; + } + + $link = $xpath->query("//rssfake:channel/rssfake:link")->item(0); + + if ($link) { + $this->link = $link->nodeValue; + } + + $articles = $xpath->query("//rssfake:item"); + + foreach ($articles as $article) { + array_push($this->items, new FeedItem_RSS($article, $this->doc, $this->xpath)); + } + + break; + } + } else { + $this->error = "Unknown/unsupported feed type"; + return; } } diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 22915469..57e63b87 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -448,10 +448,12 @@ $feed_title = db_escape_string($rss->get_title()); - _debug("registering title: $feed_title", $debug_enabled); + if ($feed_title) { + _debug("registering title: $feed_title", $debug_enabled); - db_query("UPDATE ttrss_feeds SET - title = '$feed_title' WHERE id = '$feed'"); + db_query("UPDATE ttrss_feeds SET + title = '$feed_title' WHERE id = '$feed'"); + } } if ($site_url && $orig_site_url != $site_url) { -- 2.39.5