2 require_once("include/html2bbcode.php");
3 require_once("include/items.php");
6 * @brief Read a RSS/RDF/Atom feed and create an item entry for it
8 * @param string $xml The feed data
9 * @param array $importer The user record of the importer
10 * @param array $contact The contact record of the feed
11 * @param string $hub Unused dummy value for compatibility reasons
12 * @param bool $simulate If enabled, no data is imported
14 * @return array In simulation mode it returns the header and the first item
16 function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
21 logger("Import Atom/RSS feed '".$contact["name"]."' (Contact ".$contact["id"].") for user ".$importer["uid"], LOGGER_DEBUG);
23 logger("Test Atom/RSS feed", LOGGER_DEBUG);
26 logger('XML is empty.', LOGGER_DEBUG);
30 $doc = new DOMDocument();
32 $xpath = new DomXPath($doc);
33 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
34 $xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");
35 $xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/");
36 $xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
37 $xpath->registerNamespace('rss', "http://purl.org/rss/1.0/");
38 $xpath->registerNamespace('media', "http://search.yahoo.com/mrss/");
39 $xpath->registerNamespace('poco', NAMESPACE_POCO);
44 if ($xpath->query('/rdf:RDF/rss:channel')->length > 0) {
45 $author["author-link"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:link/text()')->item(0)->nodeValue;
46 $author["author-name"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:title/text()')->item(0)->nodeValue;
48 if ($author["author-name"] == "") {
49 $author["author-name"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:description/text()')->item(0)->nodeValue;
51 $entries = $xpath->query('/rdf:RDF/rss:item');
55 if ($xpath->query('/atom:feed')->length > 0) {
56 $alternate = $xpath->query("atom:link[@rel='alternate']")->item(0)->attributes;
57 if (is_object($alternate)) {
58 foreach($alternate AS $attributes) {
59 if ($attributes->name == "href") {
60 $author["author-link"] = $attributes->textContent;
65 if ($author["author-link"] == "") {
66 $author["author-link"] = $author["author-id"];
68 if ($author["author-link"] == "") {
69 $self = $xpath->query("atom:link[@rel='self']")->item(0)->attributes;
70 if (is_object($self)) {
71 foreach($self AS $attributes) {
72 if ($attributes->name == "href") {
73 $author["author-link"] = $attributes->textContent;
79 if ($author["author-link"] == "") {
80 $author["author-link"] = $xpath->evaluate('/atom:feed/atom:id/text()')->item(0)->nodeValue;
82 $author["author-avatar"] = $xpath->evaluate('/atom:feed/atom:logo/text()')->item(0)->nodeValue;
84 $author["author-name"] = $xpath->evaluate('/atom:feed/atom:title/text()')->item(0)->nodeValue;
86 if ($author["author-name"] == "") {
87 $author["author-name"] = $xpath->evaluate('/atom:feed/atom:subtitle/text()')->item(0)->nodeValue;
89 if ($author["author-name"] == "") {
90 $author["author-name"] = $xpath->evaluate('/atom:feed/atom:author/atom:name/text()')->item(0)->nodeValue;
92 $value = $xpath->evaluate('atom:author/poco:displayName/text()')->item(0)->nodeValue;
94 $author["author-name"] = $value;
97 $author["author-id"] = $xpath->evaluate('/atom:feed/atom:author/atom:uri/text()')->item(0)->nodeValue;
99 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()')->item(0)->nodeValue;
101 $author["author-nick"] = $value;
103 $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
105 $author["author-location"] = $value;
107 $value = $xpath->evaluate('atom:author/poco:note/text()')->item(0)->nodeValue;
109 $author["author-about"] = $value;
113 $author["edited"] = $author["created"] = $xpath->query('/atom:feed/atom:updated/text()')->item(0)->nodeValue;
115 $author["app"] = $xpath->evaluate('/atom:feed/atom:generator/text()')->item(0)->nodeValue;
117 $entries = $xpath->query('/atom:feed/atom:entry');
121 if ($xpath->query('/rss/channel')->length > 0) {
122 $author["author-link"] = $xpath->evaluate('/rss/channel/link/text()')->item(0)->nodeValue;
124 $author["author-name"] = $xpath->evaluate('/rss/channel/title/text()')->item(0)->nodeValue;
125 $author["author-avatar"] = $xpath->evaluate('/rss/channel/image/url/text()')->item(0)->nodeValue;
127 if ($author["author-name"] == "") {
128 $author["author-name"] = $xpath->evaluate('/rss/channel/copyright/text()')->item(0)->nodeValue;
130 if ($author["author-name"] == "") {
131 $author["author-name"] = $xpath->evaluate('/rss/channel/description/text()')->item(0)->nodeValue;
133 $author["edited"] = $author["created"] = $xpath->query('/rss/channel/pubDate/text()')->item(0)->nodeValue;
135 $author["app"] = $xpath->evaluate('/rss/channel/generator/text()')->item(0)->nodeValue;
137 $entries = $xpath->query('/rss/channel/item');
141 $author["author-link"] = $contact["url"];
143 if ($author["author-name"] == "") {
144 $author["author-name"] = $contact["name"];
146 $author["author-avatar"] = $contact["thumb"];
148 $author["owner-link"] = $contact["url"];
149 $author["owner-name"] = $contact["name"];
150 $author["owner-avatar"] = $contact["thumb"];
154 $header["uid"] = $importer["uid"];
155 $header["network"] = NETWORK_FEED;
156 $header["type"] = "remote";
158 $header["origin"] = 0;
159 $header["gravity"] = GRAVITY_PARENT;
160 $header["private"] = 2;
161 $header["verb"] = ACTIVITY_POST;
162 $header["object-type"] = ACTIVITY_OBJ_NOTE;
164 $header["contact-id"] = $contact["id"];
166 if (!strlen($contact["notify"])) {
167 // one way feed - no remote comment ability
168 $header["last-child"] = 0;
171 if (!is_object($entries)) {
172 logger("There are no entries in this feed.", LOGGER_DEBUG);
178 $entrylist = array();
180 foreach ($entries AS $entry) {
181 $entrylist[] = $entry;
183 foreach (array_reverse($entrylist) AS $entry) {
184 $item = array_merge($header, $author);
186 $alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
187 if (!is_object($alternate)) {
188 $alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
190 if (is_object($alternate)) {
191 foreach($alternate AS $attributes) {
192 if ($attributes->name == "href") {
193 $item["plink"] = $attributes->textContent;
197 if ($item["plink"] == "") {
198 $item["plink"] = $xpath->evaluate('link/text()', $entry)->item(0)->nodeValue;
200 if ($item["plink"] == "") {
201 $item["plink"] = $xpath->evaluate('rss:link/text()', $entry)->item(0)->nodeValue;
203 $item["plink"] = original_url($item["plink"]);
205 $item["uri"] = $xpath->evaluate('atom:id/text()', $entry)->item(0)->nodeValue;
207 if ($item["uri"] == "") {
208 $item["uri"] = $xpath->evaluate('guid/text()', $entry)->item(0)->nodeValue;
210 if ($item["uri"] == "") {
211 $item["uri"] = $item["plink"];
213 $item["parent-uri"] = $item["uri"];
216 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')",
217 intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN));
219 logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
224 $item["title"] = $xpath->evaluate('atom:title/text()', $entry)->item(0)->nodeValue;
226 if ($item["title"] == "") {
227 $item["title"] = $xpath->evaluate('title/text()', $entry)->item(0)->nodeValue;
229 if ($item["title"] == "") {
230 $item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue;
232 $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
234 if ($published == "") {
235 $published = $xpath->query('pubDate/text()', $entry)->item(0)->nodeValue;
237 if ($published == "") {
238 $published = $xpath->query('dc:date/text()', $entry)->item(0)->nodeValue;
240 $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
242 if ($updated == "") {
243 $updated = $published;
245 if ($published != "") {
246 $item["created"] = $published;
248 if ($updated != "") {
249 $item["edited"] = $updated;
251 $creator = $xpath->query('author/text()', $entry)->item(0)->nodeValue;
253 if ($creator == "") {
254 $creator = $xpath->query('atom:author/atom:name/text()', $entry)->item(0)->nodeValue;
256 if ($creator == "") {
257 $creator = $xpath->query('dc:creator/text()', $entry)->item(0)->nodeValue;
259 if ($creator != "") {
260 $item["author-name"] = $creator;
262 if ($pubDate != "") {
263 $item["edited"] = $item["created"] = $pubDate;
265 $creator = $xpath->query('dc:creator/text()', $entry)->item(0)->nodeValue;
267 if ($creator != "") {
268 $item["author-name"] = $creator;
271 // <category>Ausland</category>
272 // <media:thumbnail width="152" height="76" url="http://www.taz.de/picture/667875/192/14388767.jpg"/>
274 $attachments = array();
276 $enclosures = $xpath->query("enclosure", $entry);
277 foreach ($enclosures AS $enclosure) {
283 foreach ($enclosure->attributes AS $attributes) {
284 if ($attributes->name == "url") {
285 $href = $attributes->textContent;
286 } elseif ($attributes->name == "length") {
287 $length = $attributes->textContent;
288 } elseif ($attributes->name == "type") {
289 $type = $attributes->textContent;
292 if (strlen($item["attach"])) {
293 $item["attach"] .= ',';
296 $attachments[] = array("link" => $href, "type" => $type, "length" => $length);
298 $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'"[/attach]';
301 if ($contact["fetch_further_information"]) {
304 // Handle enclosures and treat them as preview picture
305 foreach ($attachments AS $attachment) {
306 if ($attachment["type"] == "image/jpeg") {
307 $preview = $attachment["link"];
311 $item["body"] = $item["title"].add_page_info($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_blacklist"]);
312 $item["tag"] = add_page_keywords($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_blacklist"]);
314 $item["object-type"] = ACTIVITY_OBJ_BOOKMARK;
315 unset($item["attach"]);
317 $body = trim($xpath->evaluate('atom:content/text()', $entry)->item(0)->nodeValue);
320 $body = trim($xpath->evaluate('content:encoded/text()', $entry)->item(0)->nodeValue);
323 $body = trim($xpath->evaluate('description/text()', $entry)->item(0)->nodeValue);
326 $body = trim($xpath->evaluate('atom:summary/text()', $entry)->item(0)->nodeValue);
328 // remove the content of the title if it is identically to the body
329 // This helps with auto generated titles e.g. from tumblr
330 if (title_is_body($item["title"], $body)) {
333 $item["body"] = html2bbcode($body);
337 logger("Stored feed: ".print_r($item, true), LOGGER_DEBUG);
339 $notify = item_is_remote_self($contact, $item);
341 // Distributed items should have a well formatted URI.
342 // Additionally we have to avoid conflicts with identical URI between imported feeds and these items.
345 unset($item['parent-uri']);
348 $id = item_store($item, false, $notify);
350 logger("Feed for contact ".$contact["url"]." stored under id ".$id);
360 return array("header" => $author, "items" => $items);