]> git.wh0rd.org - tt-rss.git/blobdiff - classes/feeditem/atom.php
fix previous to not crash if document first child is not a DOMElement or whatever
[tt-rss.git] / classes / feeditem / atom.php
index 489c5b148e62f14f00de571492f93e5425f54acd..8c3e0f8a748b029b8c81b9df86cce89269efabdd 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 class FeedItem_Atom extends FeedItem_Common {
+       const NS_XML = "http://www.w3.org/XML/1998/namespace";
+
        function get_id() {
                $id = $this->elem->getElementsByTagName("id")->item(0);
 
@@ -16,8 +18,21 @@ class FeedItem_Atom extends FeedItem_Common {
                if ($updated) {
                        return strtotime($updated->nodeValue);
                }
+
+               $published = $this->elem->getElementsByTagName("published")->item(0);
+
+               if ($published) {
+                       return strtotime($published->nodeValue);
+               }
+
+               $date = $this->xpath->query("dc:date", $this->elem)->item(0);
+
+               if ($date) {
+                       return strtotime($date->nodeValue);
+               }
        }
 
+
        function get_link() {
                $links = $this->elem->getElementsByTagName("link");
 
@@ -26,8 +41,13 @@ class FeedItem_Atom extends FeedItem_Common {
                                (!$link->hasAttribute("rel")
                                        || $link->getAttribute("rel") == "alternate"
                                        || $link->getAttribute("rel") == "standout")) {
+                               $base = $this->xpath->evaluate("string(ancestor-or-self::*[@xml:base][1]/@xml:base)", $link);
+
+                               if ($base)
+                                       return rewrite_relative_url($base, trim($link->getAttribute("href")));
+                               else
+                                       return trim($link->getAttribute("href"));
 
-                               return $link->getAttribute("href");
                        }
                }
        }
@@ -36,7 +56,7 @@ class FeedItem_Atom extends FeedItem_Common {
                $title = $this->elem->getElementsByTagName("title")->item(0);
 
                if ($title) {
-                       return $title->nodeValue;
+                       return trim($title->nodeValue);
                }
        }
 
@@ -46,11 +66,17 @@ class FeedItem_Atom extends FeedItem_Common {
                if ($content) {
                        if ($content->hasAttribute('type')) {
                                if ($content->getAttribute('type') == 'xhtml') {
-                                       return $this->doc->saveXML($content->firstChild->nextSibling);
+                                       for ($i = 0; $i < $content->childNodes->length; $i++) {
+                                               $child = $content->childNodes->item($i);
+
+                                               if ($child->hasChildNodes()) {
+                                                       return $this->doc->saveHTML($child);
+                                               }
+                                       }
                                }
                        }
 
-                       return $content->nodeValue;
+                       return $this->subtree_or_text($content);
                }
        }
 
@@ -60,11 +86,17 @@ class FeedItem_Atom extends FeedItem_Common {
                if ($content) {
                        if ($content->hasAttribute('type')) {
                                if ($content->getAttribute('type') == 'xhtml') {
-                                       return $this->doc->saveXML($content->firstChild->nextSibling);
+                                       for ($i = 0; $i < $content->childNodes->length; $i++) {
+                                               $child = $content->childNodes->item($i);
+
+                                               if ($child->hasChildNodes()) {
+                                                       return $this->doc->saveHTML($child);
+                                               }
+                                       }
                                }
                        }
 
-                       return $content->nodeValue;
+                       return $this->subtree_or_text($content);
                }
 
        }
@@ -75,13 +107,13 @@ class FeedItem_Atom extends FeedItem_Common {
 
                foreach ($categories as $cat) {
                        if ($cat->hasAttribute("term"))
-                               array_push($cats, $cat->getAttribute("term"));
+                               array_push($cats, trim($cat->getAttribute("term")));
                }
 
                $categories = $this->xpath->query("dc:subject", $this->elem);
 
                foreach ($categories as $cat) {
-                       array_push($cats, $cat->nodeValue);
+                       array_push($cats, trim($cat->nodeValue));
                }
 
                return $cats;
@@ -114,6 +146,51 @@ class FeedItem_Atom extends FeedItem_Common {
                        $enc->type = $enclosure->getAttribute("type");
                        $enc->link = $enclosure->getAttribute("url");
                        $enc->length = $enclosure->getAttribute("length");
+                       $enc->height = $enclosure->getAttribute("height");
+                       $enc->width = $enclosure->getAttribute("width");
+
+                       $desc = $this->xpath->query("media:description", $enclosure)->item(0);
+                       if ($desc) $enc->title = strip_tags($desc->nodeValue);
+
+                       array_push($encs, $enc);
+               }
+
+
+               $enclosures = $this->xpath->query("media:group", $this->elem);
+
+               foreach ($enclosures as $enclosure) {
+                       $enc = new FeedEnclosure();
+
+                       $content = $this->xpath->query("media:content", $enclosure)->item(0);
+
+                       if ($content) {
+                               $enc->type = $content->getAttribute("type");
+                               $enc->link = $content->getAttribute("url");
+                               $enc->length = $content->getAttribute("length");
+                               $enc->height = $content->getAttribute("height");
+                               $enc->width = $content->getAttribute("width");
+
+                               $desc = $this->xpath->query("media:description", $content)->item(0);
+                               if ($desc) {
+                                       $enc->title = strip_tags($desc->nodeValue);
+                               } else {
+                                       $desc = $this->xpath->query("media:description", $enclosure)->item(0);
+                                       if ($desc) $enc->title = strip_tags($desc->nodeValue);
+                               }
+
+                               array_push($encs, $enc);
+                       }
+               }
+
+               $enclosures = $this->xpath->query("media:thumbnail", $this->elem);
+
+               foreach ($enclosures as $enclosure) {
+                       $enc = new FeedEnclosure();
+
+                       $enc->type = "image/generic";
+                       $enc->link = $enclosure->getAttribute("url");
+                       $enc->height = $enclosure->getAttribute("height");
+                       $enc->width = $enclosure->getAttribute("width");
 
                        array_push($encs, $enc);
                }
@@ -121,5 +198,18 @@ class FeedItem_Atom extends FeedItem_Common {
                return $encs;
        }
 
+       function get_language() {
+               $lang = $this->elem->getAttributeNS(self::NS_XML, "lang");
+
+               if (!empty($lang)) {
+                       return $lang;
+               } else {
+                       // Fall back to the language declared on the feed, if any.
+                       foreach ($this->doc->childNodes as $child) {
+                               if (method_exists($child, "getAttributeNS")) {
+                                       return $child->getAttributeNS(self::NS_XML, "lang");
+                               }
+                       }
+               }
+       }
 }
-?>