]> git.wh0rd.org - tt-rss.git/blob - classes/feeditem/atom.php
support disabling of e-mail digests entirely
[tt-rss.git] / classes / feeditem / atom.php
1 <?php
2 class FeedItem_Atom extends FeedItem_Common {
3 const NS_XML = "http://www.w3.org/XML/1998/namespace";
4
5 function get_id() {
6 $id = $this->elem->getElementsByTagName("id")->item(0);
7
8 if ($id) {
9 return $id->nodeValue;
10 } else {
11 return $this->get_link();
12 }
13 }
14
15 function get_date() {
16 $updated = $this->elem->getElementsByTagName("updated")->item(0);
17
18 if ($updated) {
19 return strtotime($updated->nodeValue);
20 }
21
22 $published = $this->elem->getElementsByTagName("published")->item(0);
23
24 if ($published) {
25 return strtotime($published->nodeValue);
26 }
27
28 $date = $this->xpath->query("dc:date", $this->elem)->item(0);
29
30 if ($date) {
31 return strtotime($date->nodeValue);
32 }
33 }
34
35
36 function get_link() {
37 $links = $this->elem->getElementsByTagName("link");
38
39 foreach ($links as $link) {
40 if ($link && $link->hasAttribute("href") &&
41 (!$link->hasAttribute("rel")
42 || $link->getAttribute("rel") == "alternate"
43 || $link->getAttribute("rel") == "standout")) {
44 $base = $this->xpath->evaluate("string(ancestor-or-self::*[@xml:base][1]/@xml:base)", $link);
45
46 if ($base)
47 return rewrite_relative_url($base, trim($link->getAttribute("href")));
48 else
49 return trim($link->getAttribute("href"));
50
51 }
52 }
53 }
54
55 function get_title() {
56 $title = $this->elem->getElementsByTagName("title")->item(0);
57
58 if ($title) {
59 return trim($title->nodeValue);
60 }
61 }
62
63 function get_content() {
64 $content = $this->elem->getElementsByTagName("content")->item(0);
65
66 if ($content) {
67 if ($content->hasAttribute('type')) {
68 if ($content->getAttribute('type') == 'xhtml') {
69 for ($i = 0; $i < $content->childNodes->length; $i++) {
70 $child = $content->childNodes->item($i);
71
72 if ($child->hasChildNodes()) {
73 return $this->doc->saveHTML($child);
74 }
75 }
76 }
77 }
78
79 return $this->subtree_or_text($content);
80 }
81 }
82
83 function get_description() {
84 $content = $this->elem->getElementsByTagName("summary")->item(0);
85
86 if ($content) {
87 if ($content->hasAttribute('type')) {
88 if ($content->getAttribute('type') == 'xhtml') {
89 for ($i = 0; $i < $content->childNodes->length; $i++) {
90 $child = $content->childNodes->item($i);
91
92 if ($child->hasChildNodes()) {
93 return $this->doc->saveHTML($child);
94 }
95 }
96 }
97 }
98
99 return $this->subtree_or_text($content);
100 }
101
102 }
103
104 function get_categories() {
105 $categories = $this->elem->getElementsByTagName("category");
106 $cats = array();
107
108 foreach ($categories as $cat) {
109 if ($cat->hasAttribute("term"))
110 array_push($cats, trim($cat->getAttribute("term")));
111 }
112
113 $categories = $this->xpath->query("dc:subject", $this->elem);
114
115 foreach ($categories as $cat) {
116 array_push($cats, trim($cat->nodeValue));
117 }
118
119 return $cats;
120 }
121
122 function get_enclosures() {
123 $links = $this->elem->getElementsByTagName("link");
124
125 $encs = array();
126
127 foreach ($links as $link) {
128 if ($link && $link->hasAttribute("href") && $link->hasAttribute("rel")) {
129 if ($link->getAttribute("rel") == "enclosure") {
130 $enc = new FeedEnclosure();
131
132 $enc->type = $link->getAttribute("type");
133 $enc->link = $link->getAttribute("href");
134 $enc->length = $link->getAttribute("length");
135
136 array_push($encs, $enc);
137 }
138 }
139 }
140
141 $encs = array_merge($encs, parent::get_enclosures());
142
143 return $encs;
144 }
145
146 function get_language() {
147 $lang = $this->elem->getAttributeNS(self::NS_XML, "lang");
148
149 if (!empty($lang)) {
150 return $lang;
151 } else {
152 // Fall back to the language declared on the feed, if any.
153 foreach ($this->doc->childNodes as $child) {
154 if (method_exists($child, "getAttributeNS")) {
155 return $child->getAttributeNS(self::NS_XML, "lang");
156 }
157 }
158 }
159 }
160 }