3 * @file include/ostatus.php
6 require_once("include/Contact.php");
7 require_once("include/threads.php");
8 require_once("include/html2bbcode.php");
9 require_once("include/bbcode.php");
10 require_once("include/items.php");
11 require_once("mod/share.php");
12 require_once("include/enotify.php");
13 require_once("include/socgraph.php");
14 require_once("include/Photo.php");
15 require_once("include/Scrape.php");
16 require_once("include/follow.php");
17 require_once("include/api.php");
18 require_once("mod/proxy.php");
19 require_once("include/xml.php");
22 * @brief This class contain functions for the OStatus protocol
26 const OSTATUS_DEFAULT_POLL_INTERVAL = 30; // given in minutes
27 const OSTATUS_DEFAULT_POLL_TIMEFRAME = 1440; // given in minutes
28 const OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS = 14400; // given in minutes
31 * @brief Fetches author data
33 * @param object $xpath The xpath object
34 * @param object $context The xml context of the author detals
35 * @param array $importer user record of the importing user
36 * @param array $contact Called by reference, will contain the fetched contact
37 * @param bool $onlyfetch Only fetch the header without updating the contact entries
39 * @return array Array of author related entries for the item
41 private function fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
44 $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
45 $author["author-name"] = $xpath->evaluate('atom:author/atom:name/text()', $context)->item(0)->nodeValue;
47 $aliaslink = $author["author-link"];
49 $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
50 if (is_object($alternate))
51 foreach($alternate AS $attributes)
52 if ($attributes->name == "href")
53 $author["author-link"] = $attributes->textContent;
55 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
56 intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
57 dbesc(normalise_link($aliaslink)), dbesc(NETWORK_STATUSNET));
60 $author["contact-id"] = $r[0]["id"];
62 $author["contact-id"] = $contact["id"];
64 $avatarlist = array();
65 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
66 foreach($avatars AS $avatar) {
69 foreach($avatar->attributes AS $attributes) {
70 if ($attributes->name == "href")
71 $href = $attributes->textContent;
72 if ($attributes->name == "width")
73 $width = $attributes->textContent;
75 if (($width > 0) AND ($href != ""))
76 $avatarlist[$width] = $href;
78 if (count($avatarlist) > 0) {
80 $author["author-avatar"] = current($avatarlist);
83 $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
84 if ($displayname != "")
85 $author["author-name"] = $displayname;
87 $author["owner-name"] = $author["author-name"];
88 $author["owner-link"] = $author["author-link"];
89 $author["owner-avatar"] = $author["author-avatar"];
91 // Only update the contacts if it is an OStatus contact
92 if ($r AND !$onlyfetch AND ($contact["network"] == NETWORK_OSTATUS)) {
93 // Update contact data
95 $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
97 $contact["notify"] = $value;
99 $value = $xpath->evaluate('atom:author/uri/text()', $context)->item(0)->nodeValue;
101 $contact["alias"] = $value;
103 $value = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
105 $contact["name"] = $value;
107 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
109 $contact["nick"] = $value;
111 $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue;
113 $contact["about"] = html2bbcode($value);
115 $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
117 $contact["location"] = $value;
119 if (($contact["name"] != $r[0]["name"]) OR ($contact["nick"] != $r[0]["nick"]) OR ($contact["about"] != $r[0]["about"]) OR
120 ($contact["alias"] != $r[0]["alias"]) OR ($contact["location"] != $r[0]["location"])) {
122 logger("Update contact data for contact ".$contact["id"], LOGGER_DEBUG);
124 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `alias` = '%s', `about` = '%s', `location` = '%s', `name-date` = '%s' WHERE `id` = %d",
125 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["alias"]),
126 dbesc($contact["about"]), dbesc($contact["location"]),
127 dbesc(datetime_convert()), intval($contact["id"]));
129 poco_check($contact["url"], $contact["name"], $contact["network"], $author["author-avatar"], $contact["about"], $contact["location"],
130 "", "", "", datetime_convert(), 2, $contact["id"], $contact["uid"]);
133 if (isset($author["author-avatar"]) AND ($author["author-avatar"] != $r[0]['avatar'])) {
134 logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
136 update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
139 $contact["generation"] = 2;
140 $contact["photo"] = $author["author-avatar"];
141 update_gcontact($contact);
148 * @brief Fetches author data from a given XML string
150 * @param string $xml The XML
151 * @param array $importer user record of the importing user
153 * @return array Array of author related entries for the item
155 public static function salmon_author($xml, $importer) {
160 $doc = new DOMDocument();
161 @$doc->loadXML($xml);
163 $xpath = new DomXPath($doc);
164 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
165 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
166 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
167 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
168 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
169 $xpath->registerNamespace('poco', NAMESPACE_POCO);
170 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
171 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
173 $entries = $xpath->query('/atom:entry');
175 foreach ($entries AS $entry) {
177 $author = self::fetchauthor($xpath, $entry, $importer, $contact, true);
183 * @brief Imports an XML string containing OStatus elements
185 * @param string $xml The XML
186 * @param array $importer user record of the importing user
188 * @param array $hub Called by reference, returns the fetched hub data
190 public static function import($xml,$importer,&$contact, &$hub) {
191 /// @todo this function is too long. It has to be split in many parts
193 logger("Import OStatus message", LOGGER_DEBUG);
198 //$tempfile = tempnam(get_temppath(), "import");
199 //file_put_contents($tempfile, $xml);
201 $doc = new DOMDocument();
202 @$doc->loadXML($xml);
204 $xpath = new DomXPath($doc);
205 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
206 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
207 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
208 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
209 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
210 $xpath->registerNamespace('poco', NAMESPACE_POCO);
211 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
212 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
215 $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
216 if (is_object($hub_attributes))
217 foreach($hub_attributes AS $hub_attribute)
218 if ($hub_attribute->name == "href") {
219 $hub = $hub_attribute->textContent;
220 logger("Found hub ".$hub, LOGGER_DEBUG);
224 $header["uid"] = $importer["uid"];
225 $header["network"] = NETWORK_OSTATUS;
226 $header["type"] = "remote";
228 $header["origin"] = 0;
229 $header["gravity"] = GRAVITY_PARENT;
231 // it could either be a received post or a post we fetched by ourselves
232 // depending on that, the first node is different
233 $first_child = $doc->firstChild->tagName;
235 if ($first_child == "feed")
236 $entries = $xpath->query('/atom:feed/atom:entry');
238 $entries = $xpath->query('/atom:entry');
241 $conversationlist = array();
244 // Reverse the order of the entries
245 $entrylist = array();
247 foreach ($entries AS $entry)
248 $entrylist[] = $entry;
250 foreach (array_reverse($entrylist) AS $entry) {
255 if ($first_child == "feed")
256 $author = self::fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
258 $author = self::fetchauthor($xpath, $entry, $importer, $contact, false);
260 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
264 $nickname = $author["author-name"];
266 $item = array_merge($header, $author);
269 $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
271 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
272 intval($importer["uid"]), dbesc($item["uri"]));
274 logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
278 $item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
279 $item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
281 if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
282 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
283 $item["body"] = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
284 } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION)
285 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
287 $item["object"] = $xml;
288 $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
292 if ($item["verb"] == "qvitter-delete-notice") {
293 // ignore "Delete" messages (by now)
294 logger("Ignore delete message ".print_r($item, true));
298 if ($item["verb"] == ACTIVITY_JOIN) {
299 // ignore "Join" messages
300 logger("Ignore join message ".print_r($item, true));
304 if ($item["verb"] == ACTIVITY_FOLLOW) {
305 new_follower($importer, $contact, $item, $nickname);
309 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
310 lose_follower($importer, $contact, $item, $dummy);
314 if ($item["verb"] == ACTIVITY_FAVORITE) {
315 $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
316 logger("Favorite ".$orig_uri." ".print_r($item, true));
318 $item["verb"] = ACTIVITY_LIKE;
319 $item["parent-uri"] = $orig_uri;
320 $item["gravity"] = GRAVITY_LIKE;
323 if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
324 // Ignore "Unfavorite" message
325 logger("Ignore unfavorite message ".print_r($item, true));
329 // http://activitystrea.ms/schema/1.0/rsvp-yes
330 if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE)))
331 logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
333 $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
334 $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
335 $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
339 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
340 if (is_object($inreplyto->item(0))) {
341 foreach($inreplyto->item(0)->attributes AS $attributes) {
342 if ($attributes->name == "ref")
343 $item["parent-uri"] = $attributes->textContent;
344 if ($attributes->name == "href")
345 $related = $attributes->textContent;
349 $georsspoint = $xpath->query('georss:point', $entry);
351 $item["coord"] = $georsspoint->item(0)->nodeValue;
353 $categories = $xpath->query('atom:category', $entry);
355 foreach ($categories AS $category) {
356 foreach($category->attributes AS $attributes)
357 if ($attributes->name == "term") {
358 $term = $attributes->textContent;
359 if(strlen($item["tag"]))
361 $item["tag"] .= "#[url=".App::get_baseurl()."/search?tag=".$term."]".$term."[/url]";
369 $links = $xpath->query('atom:link', $entry);
376 foreach ($links AS $link) {
377 foreach($link->attributes AS $attributes) {
378 if ($attributes->name == "href")
379 $href = $attributes->textContent;
380 if ($attributes->name == "rel")
381 $rel = $attributes->textContent;
382 if ($attributes->name == "type")
383 $type = $attributes->textContent;
384 if ($attributes->name == "length")
385 $length = $attributes->textContent;
386 if ($attributes->name == "title")
387 $title = $attributes->textContent;
389 if (($rel != "") AND ($href != ""))
392 $item["plink"] = $href;
393 if (($item["object-type"] == ACTIVITY_OBJ_QUESTION) OR
394 ($item["object-type"] == ACTIVITY_OBJ_EVENT))
395 $item["body"] .= add_page_info($href);
397 case "ostatus:conversation":
398 $conversation = $href;
402 if(strlen($item["attach"]))
403 $item["attach"] .= ',';
405 $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
408 if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
409 if (!isset($item["parent-uri"]))
410 $item["parent-uri"] = $href;
415 $item["body"] .= add_page_info($href);
421 // Notification check
422 if ($importer["nurl"] == normalise_link($href))
432 $notice_info = $xpath->query('statusnet:notice_info', $entry);
433 if ($notice_info AND ($notice_info->length > 0)) {
434 foreach($notice_info->item(0)->attributes AS $attributes) {
435 if ($attributes->name == "source")
436 $item["app"] = strip_tags($attributes->textContent);
437 if ($attributes->name == "local_id")
438 $local_id = $attributes->textContent;
439 if ($attributes->name == "repeat_of")
440 $repeat_of = $attributes->textContent;
444 // Is it a repeated post?
445 if ($repeat_of != "") {
446 $activityobjects = $xpath->query('activity:object', $entry)->item(0);
448 if (is_object($activityobjects)) {
450 $orig_uri = $xpath->query("activity:object/atom:id", $activityobjects)->item(0)->nodeValue;
451 if (!isset($orig_uri))
452 $orig_uri = $xpath->query('atom:id/text()', $activityobjects)->item(0)->nodeValue;
454 $orig_links = $xpath->query("activity:object/atom:link[@rel='alternate']", $activityobjects);
455 if ($orig_links AND ($orig_links->length > 0))
456 foreach($orig_links->item(0)->attributes AS $attributes)
457 if ($attributes->name == "href")
458 $orig_link = $attributes->textContent;
460 if (!isset($orig_link))
461 $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
463 if (!isset($orig_link))
464 $orig_link = self::convert_href($orig_uri);
466 $orig_body = $xpath->query('activity:object/atom:content/text()', $activityobjects)->item(0)->nodeValue;
467 if (!isset($orig_body))
468 $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue;
470 $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
472 $orig_contact = $contact;
473 $orig_author = self::fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
475 $item["author-name"] = $orig_author["author-name"];
476 $item["author-link"] = $orig_author["author-link"];
477 $item["author-avatar"] = $orig_author["author-avatar"];
478 $item["body"] = add_page_info_to_body(html2bbcode($orig_body));
479 $item["created"] = $orig_created;
481 $item["uri"] = $orig_uri;
482 $item["plink"] = $orig_link;
484 $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
486 $item["object-type"] = $xpath->query('activity:object/activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
487 if (!isset($item["object-type"]))
488 $item["object-type"] = $xpath->query('activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
492 //if ($enclosure != "")
493 // $item["body"] .= add_page_info($enclosure);
495 if (isset($item["parent-uri"])) {
496 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
497 intval($importer["uid"]), dbesc($item["parent-uri"]));
499 if (!$r AND ($related != "")) {
500 $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
502 if ($reply_path != $related) {
503 logger("Fetching related items for user ".$importer["uid"]." from ".$reply_path, LOGGER_DEBUG);
504 $reply_xml = fetch_url($reply_path);
506 $reply_contact = $contact;
507 self::import($reply_xml,$importer,$reply_contact, $reply_hub);
509 // After the import try to fetch the parent item again
510 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
511 intval($importer["uid"]), dbesc($item["parent-uri"]));
515 $item["type"] = 'remote-comment';
516 $item["gravity"] = GRAVITY_COMMENT;
519 $item["parent-uri"] = $item["uri"];
521 $item_id = self::completion($conversation, $importer["uid"], $item, $self);
524 logger("Error storing item", LOGGER_DEBUG);
528 logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
533 * @brief Create an url out of an uri
535 * @param string $href URI in the format "parameter1:parameter1:..."
537 * @return string URL in the format http(s)://....
539 public static function convert_href($href) {
540 $elements = explode(":",$href);
542 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
545 $server = explode(",", $elements[1]);
546 $conversation = explode("=", $elements[2]);
548 if ((count($elements) == 4) AND ($elements[2] == "post"))
549 return "http://".$server[0]."/notice/".$elements[3];
551 if ((count($conversation) != 2) OR ($conversation[1] ==""))
554 if ($elements[3] == "objectType=thread")
555 return "http://".$server[0]."/conversation/".$conversation[1];
557 return "http://".$server[0]."/notice/".$conversation[1];
563 * @brief Checks if there are entries in conversations that aren't present on our side
565 * @param bool $mentions Fetch conversations where we are mentioned
566 * @param bool $override Override the interval setting
568 public static function check_conversations($mentions = false, $override = false) {
569 $last = get_config('system','ostatus_last_poll');
571 $poll_interval = intval(get_config('system','ostatus_poll_interval'));
573 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
575 // Don't poll if the interval is set negative
576 if (($poll_interval < 0) AND !$override)
580 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
581 if (!$poll_timeframe)
582 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
584 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
585 if (!$poll_timeframe)
586 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
590 if ($last AND !$override) {
591 $next = $last + ($poll_interval * 60);
592 if ($next > time()) {
593 logger('poll interval not reached');
598 logger('cron_start');
600 $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
603 $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
604 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
605 WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
606 GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
608 $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
609 WHERE `type` = 7 AND `term` > '%s'
610 GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
612 foreach ($conversations AS $conversation) {
613 self::completion($conversation['url'], $conversation['uid']);
618 set_config('system','ostatus_last_poll', time());
622 * @brief Updates the gcontact table with actor data from the conversation
624 * @param object $actor The actor object that contains the contact data
626 private function conv_fetch_actor($actor) {
628 // We set the generation to "3" since the data here is not as reliable as the data we get on other occasions
629 $contact = array("network" => NETWORK_OSTATUS, "generation" => 3);
631 if (isset($actor->url))
632 $contact["url"] = $actor->url;
634 if (isset($actor->displayName))
635 $contact["name"] = $actor->displayName;
637 if (isset($actor->portablecontacts_net->displayName))
638 $contact["name"] = $actor->portablecontacts_net->displayName;
640 if (isset($actor->portablecontacts_net->preferredUsername))
641 $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
643 if (isset($actor->id))
644 $contact["alias"] = $actor->id;
646 if (isset($actor->summary))
647 $contact["about"] = $actor->summary;
649 if (isset($actor->portablecontacts_net->note))
650 $contact["about"] = $actor->portablecontacts_net->note;
652 if (isset($actor->portablecontacts_net->addresses->formatted))
653 $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
656 if (isset($actor->image->url))
657 $contact["photo"] = $actor->image->url;
659 if (isset($actor->image->width))
660 $avatarwidth = $actor->image->width;
662 if (is_array($actor->status_net->avatarLinks))
663 foreach ($actor->status_net->avatarLinks AS $avatar) {
664 if ($avatarsize < $avatar->width) {
665 $contact["photo"] = $avatar->url;
666 $avatarsize = $avatar->width;
670 update_gcontact($contact);
674 * @brief Fetches the conversation url for a given item link or conversation id
676 * @param string $self The link to the posting
677 * @param string $conversation_id The conversation id
679 * @return string The conversation url
681 private function fetch_conversation($self, $conversation_id = "") {
683 if ($conversation_id != "") {
684 $elements = explode(":", $conversation_id);
686 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
687 return $conversation_id;
693 $json = str_replace(".atom", ".json", $self);
695 $raw = fetch_url($json);
699 $data = json_decode($raw);
700 if (!is_object($data))
703 $conversation_id = $data->statusnet_conversation_id;
705 $pos = strpos($self, "/api/statuses/show/");
706 $base_url = substr($self, 0, $pos);
708 return $base_url."/conversation/".$conversation_id;
712 * @brief Fetches actor details of a given actor and user id
714 * @param string $actor The actor url
715 * @param int $uid The user id
716 * @param int $contact_id The default contact-id
718 * @return array Array with actor details
720 private function get_actor_details($actor, $uid, $contact_id) {
724 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
725 $uid, normalise_link($actor), NETWORK_STATUSNET);
728 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `alias` IN ('%s', '%s') AND `network` != '%s'",
729 $uid, $actor, normalise_link($actor), NETWORK_STATUSNET);
732 logger("Found contact for url ".$actor, LOGGER_DEBUG);
733 $details["contact_id"] = $contact[0]["id"];
734 $details["network"] = $contact[0]["network"];
736 $details["not_following"] = !in_array($contact[0]["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND));
738 logger("No contact found for user ".$uid." and url ".$actor, LOGGER_DEBUG);
740 // Adding a global contact
741 /// @TODO Use this data for the post
742 $details["global_contact_id"] = get_contact($actor, 0);
744 logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
746 $details["contact_id"] = $contact_id;
747 $details["network"] = NETWORK_OSTATUS;
749 $details["not_following"] = true;
756 * @brief Stores an item and completes the thread
758 * @param string $conversation_url The URI of the conversation
759 * @param integer $uid The user id
760 * @param array $item Data of the item that is to be posted
762 * @return integer The item id of the posted item array
764 private function completion($conversation_url, $uid, $item = array(), $self = "") {
766 /// @todo This function is totally ugly and has to be rewritten totally
770 $conversation_url = self::fetch_conversation($self, $conversation_url);
772 // If the thread shouldn't be completed then store the item and go away
773 // Don't do a completion on liked content
774 if (((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) OR
775 ($item["verb"] == ACTIVITY_LIKE) OR ($conversation_url == "")) {
776 $item_stored = item_store($item, true);
777 return($item_stored);
781 $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
782 (SELECT `parent` FROM `item` WHERE `id` IN
783 (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
784 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
787 $parent = $parents[0];
788 elseif (count($item) > 0) {
790 $parent["type"] = "remote";
791 $parent["verb"] = ACTIVITY_POST;
792 $parent["visible"] = 1;
795 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
801 $parent["parent"] = 0;
803 $parent["contact-id"] = $r[0]["id"];
804 $parent["type"] = "remote";
805 $parent["verb"] = ACTIVITY_POST;
806 $parent["visible"] = 1;
809 $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
813 logger('fetching conversation url '.$conv.' (Self: '.$self.') for user '.$uid);
816 $conv_arr = z_fetch_url($conv."?page=".$pageno);
818 // If it is a non-ssl site and there is an error, then try ssl or vice versa
819 if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
820 $conv = str_replace("http://", "https://", $conv);
821 $conv_as = fetch_url($conv."?page=".$pageno);
822 } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
823 $conv = str_replace("https://", "http://", $conv);
824 $conv_as = fetch_url($conv."?page=".$pageno);
826 $conv_as = $conv_arr["body"];
828 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
829 $conv_as = json_decode($conv_as);
831 $no_of_items = sizeof($items);
833 if (@is_array($conv_as->items))
834 foreach ($conv_as->items AS $single_item)
835 $items[$single_item->id] = $single_item;
837 if ($no_of_items == sizeof($items))
844 logger('fetching conversation done. Found '.count($items).' items');
846 if (!sizeof($items)) {
847 if (count($item) > 0) {
848 $item_stored = item_store($item, true);
851 logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
852 self::store_conversation($item_id, $conversation_url);
855 return($item_stored);
860 $items = array_reverse($items);
862 $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
867 foreach ($items as $single_conv) {
869 // Update the gcontact table
870 self::conv_fetch_actor($single_conv->actor);
872 // Test - remove before flight
873 //$tempfile = tempnam(get_temppath(), "conversation");
874 //file_put_contents($tempfile, json_encode($single_conv));
878 if (isset($single_conv->object->id))
879 $single_conv->id = $single_conv->object->id;
881 $plink = self::convert_href($single_conv->id);
882 if (isset($single_conv->object->url))
883 $plink = self::convert_href($single_conv->object->url);
885 if (@!$single_conv->id)
888 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
890 if ($first_id == "") {
891 $first_id = $single_conv->id;
893 // The first post of the conversation isn't our first post. There are three options:
894 // 1. Our conversation hasn't the "real" thread starter
895 // 2. This first post is a post inside our thread
896 // 3. This first post is a post inside another thread
897 if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
901 $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
902 (SELECT `parent` FROM `item`
903 WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
904 intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
906 if ($new_parents[0]["parent"] == $parent["parent"]) {
907 // Option 2: This post is already present inside our thread - but not as thread starter
908 logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
909 $first_id = $parent["uri"];
911 // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
912 // For now just take the new parent.
913 $parent = $new_parents[0];
914 $first_id = $parent["uri"];
915 logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
918 // Option 1: We hadn't got the real thread starter
919 // We have to clean up our existing messages.
921 $parent["uri"] = $first_id;
922 logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
924 } elseif ($parent["uri"] == "") {
926 $parent["uri"] = $first_id;
930 $parent_uri = $parent["uri"];
932 // "context" only seems to exist on older servers
933 if (isset($single_conv->context->inReplyTo->id)) {
934 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
935 intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
937 $parent_uri = $single_conv->context->inReplyTo->id;
940 // This is the current way
941 if (isset($single_conv->object->inReplyTo->id)) {
942 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
943 intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
945 $parent_uri = $single_conv->object->inReplyTo->id;
948 $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
949 intval($uid), dbesc($single_conv->id),
950 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
951 if ($message_exists) {
952 logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
954 if ($parent["id"] != 0) {
955 $existing_message = $message_exists[0];
957 // We improved the way we fetch OStatus messages, this shouldn't happen very often now
958 /// @TODO We have to change the shadow copies as well. This way here is really ugly.
959 if ($existing_message["parent"] != $parent["id"]) {
960 logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
962 // Update the parent id of the selected item
963 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
964 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
966 // Update the parent uri in the thread - but only if it points to itself
967 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
968 dbesc($parent_uri), intval($existing_message["id"]));
970 // try to change all items of the same parent
971 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
972 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
974 // Update the parent uri in the thread - but only if it points to itself
975 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
976 dbesc($parent["uri"]), intval($existing_message["parent"]));
978 // Now delete the thread
979 delete_thread($existing_message["parent"]);
983 // The item we are having on the system is the one that we wanted to store via the item array
984 if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
992 if (is_array($single_conv->to))
993 foreach($single_conv->to AS $to)
994 if ($importer["nurl"] == normalise_link($to->id))
997 $actor = $single_conv->actor->id;
998 if (isset($single_conv->actor->url))
999 $actor = $single_conv->actor->url;
1001 $details = self::get_actor_details($actor, $uid, $parent["contact-id"]);
1003 // Do we only want to import threads that were started by our contacts?
1004 if ($details["not_following"] AND $new_parent AND get_config('system','ostatus_full_threads')) {
1005 logger("Don't import uri ".$first_id." because user ".$uid." doesn't follow the person ".$actor, LOGGER_DEBUG);
1010 $arr["network"] = $details["network"];
1011 $arr["uri"] = $single_conv->id;
1012 $arr["plink"] = $plink;
1014 $arr["contact-id"] = $details["contact_id"];
1015 $arr["parent-uri"] = $parent_uri;
1016 $arr["created"] = $single_conv->published;
1017 $arr["edited"] = $single_conv->published;
1018 $arr["owner-name"] = $single_conv->actor->displayName;
1019 if ($arr["owner-name"] == '')
1020 $arr["owner-name"] = $single_conv->actor->contact->displayName;
1021 if ($arr["owner-name"] == '')
1022 $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
1024 $arr["owner-link"] = $actor;
1025 $arr["owner-avatar"] = $single_conv->actor->image->url;
1026 $arr["author-name"] = $arr["owner-name"];
1027 $arr["author-link"] = $actor;
1028 $arr["author-avatar"] = $single_conv->actor->image->url;
1029 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
1031 if (isset($single_conv->status_net->notice_info->source))
1032 $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
1033 elseif (isset($single_conv->statusnet->notice_info->source))
1034 $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
1035 elseif (isset($single_conv->statusnet_notice_info->source))
1036 $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
1037 elseif (isset($single_conv->provider->displayName))
1038 $arr["app"] = $single_conv->provider->displayName;
1040 $arr["app"] = "OStatus";
1043 $arr["object"] = json_encode($single_conv);
1044 $arr["verb"] = $parent["verb"];
1045 $arr["visible"] = $parent["visible"];
1046 $arr["location"] = $single_conv->location->displayName;
1047 $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
1049 // Is it a reshared item?
1050 if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
1051 if (is_array($single_conv->object))
1052 $single_conv->object = $single_conv->object[0];
1054 logger("Found reshared item ".$single_conv->object->id);
1056 // $single_conv->object->context->conversation;
1058 if (isset($single_conv->object->object->id))
1059 $arr["uri"] = $single_conv->object->object->id;
1061 $arr["uri"] = $single_conv->object->id;
1063 if (isset($single_conv->object->object->url))
1064 $plink = self::convert_href($single_conv->object->object->url);
1066 $plink = self::convert_href($single_conv->object->url);
1068 if (isset($single_conv->object->object->content))
1069 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1071 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1073 $arr["plink"] = $plink;
1075 $arr["created"] = $single_conv->object->published;
1076 $arr["edited"] = $single_conv->object->published;
1078 $arr["author-name"] = $single_conv->object->actor->displayName;
1079 if ($arr["owner-name"] == '')
1080 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1082 $arr["author-link"] = $single_conv->object->actor->url;
1083 $arr["author-avatar"] = $single_conv->object->actor->image->url;
1085 $arr["app"] = $single_conv->object->provider->displayName."#";
1086 //$arr["verb"] = $single_conv->object->verb;
1088 $arr["location"] = $single_conv->object->location->displayName;
1089 $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1092 if ($arr["location"] == "")
1093 unset($arr["location"]);
1095 if ($arr["coord"] == "")
1096 unset($arr["coord"]);
1098 // Copy fields from given item array
1099 if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] == $single_conv->id))) {
1100 $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
1101 "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
1102 "title", "attach", "app", "type", "location", "contact-id", "uri");
1103 foreach ($copy_fields AS $field)
1104 if (isset($item[$field]))
1105 $arr[$field] = $item[$field];
1109 $newitem = item_store($arr);
1111 logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1115 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1117 $item_stored = $newitem;
1120 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1122 // Add the conversation entry (but don't fetch the whole conversation)
1123 self::store_conversation($newitem, $conversation_url);
1125 // If the newly created item is the top item then change the parent settings of the thread
1126 // This shouldn't happen anymore. This is supposed to be absolote.
1127 if ($arr["uri"] == $first_id) {
1128 logger('setting new parent to id '.$newitem);
1129 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1130 intval($uid), intval($newitem));
1132 $parent = $new_parents[0];
1136 if (($item_stored < 0) AND (count($item) > 0)) {
1138 if (get_config('system','ostatus_full_threads')) {
1139 $details = self::get_actor_details($item["owner-link"], $uid, $item["contact-id"]);
1140 if ($details["not_following"]) {
1141 logger("Don't import uri ".$item["uri"]." because user ".$uid." doesn't follow the person ".$item["owner-link"], LOGGER_DEBUG);
1146 $item_stored = item_store($item, true);
1148 logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1149 self::store_conversation($item_stored, $conversation_url);
1153 return($item_stored);
1157 * @brief Stores conversation data into the database
1159 * @param integer $itemid The id of the item
1160 * @param string $conversation_url The uri of the conversation
1162 private function store_conversation($itemid, $conversation_url) {
1164 $conversation_url = self::convert_href($conversation_url);
1166 $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1169 $message = $messages[0];
1171 // Store conversation url if not done before
1172 $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1173 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1175 if (!$conversation) {
1176 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1177 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1178 dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1179 logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1184 * @brief Checks if the current post is a reshare
1186 * @param array $item The item array of thw post
1188 * @return string The guid if the post is a reshare
1190 private function get_reshared_guid($item) {
1191 $body = trim($item["body"]);
1193 // Skip if it isn't a pure repeated messages
1194 // Does it start with a share?
1195 if (strpos($body, "[share") > 0)
1198 // Does it end with a share?
1199 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1202 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1203 // Skip if there is no shared message in there
1204 if ($body == $attributes)
1208 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1209 if ($matches[1] != "")
1210 $guid = $matches[1];
1212 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1213 if ($matches[1] != "")
1214 $guid = $matches[1];
1220 * @brief Cleans the body of a post if it contains picture links
1222 * @param string $body The body
1224 * @return string The cleaned body
1226 private function format_picture_post($body) {
1227 $siteinfo = get_attached_data($body);
1229 if (($siteinfo["type"] == "photo")) {
1230 if (isset($siteinfo["preview"]))
1231 $preview = $siteinfo["preview"];
1233 $preview = $siteinfo["image"];
1235 // Is it a remote picture? Then make a smaller preview here
1236 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1238 // Is it a local picture? Then make it smaller here
1239 $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1240 $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1242 if (isset($siteinfo["url"]))
1243 $url = $siteinfo["url"];
1245 $url = $siteinfo["image"];
1247 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1254 * @brief Adds the header elements to the XML document
1256 * @param object $doc XML document
1257 * @param array $owner Contact data of the poster
1259 * @return object header root element
1261 private function add_header($doc, $owner) {
1265 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1266 $doc->appendChild($root);
1268 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1269 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1270 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1271 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1272 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1273 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1274 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1276 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1277 xml::add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1278 xml::add_element($doc, $root, "id", App::get_baseurl()."/profile/".$owner["nick"]);
1279 xml::add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1280 xml::add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1281 xml::add_element($doc, $root, "logo", $owner["photo"]);
1282 xml::add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1284 $author = self::add_author($doc, $owner);
1285 $root->appendChild($author);
1287 $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1288 xml::add_element($doc, $root, "link", "", $attributes);
1290 /// @TODO We have to find out what this is
1291 /// $attributes = array("href" => App::get_baseurl()."/sup",
1292 /// "rel" => "http://api.friendfeed.com/2008/03#sup",
1293 /// "type" => "application/json");
1294 /// xml::add_element($doc, $root, "link", "", $attributes);
1296 self::hublinks($doc, $root);
1298 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1299 xml::add_element($doc, $root, "link", "", $attributes);
1301 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies");
1302 xml::add_element($doc, $root, "link", "", $attributes);
1304 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1305 xml::add_element($doc, $root, "link", "", $attributes);
1307 $attributes = array("href" => App::get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1308 "rel" => "self", "type" => "application/atom+xml");
1309 xml::add_element($doc, $root, "link", "", $attributes);
1315 * @brief Add the link to the push hubs to the XML document
1317 * @param object $doc XML document
1318 * @param object $root XML root element where the hub links are added
1320 public static function hublinks($doc, $root) {
1321 $hub = get_config('system','huburl');
1325 $hubs = explode(',', $hub);
1327 foreach($hubs as $h) {
1331 if ($h === '[internal]')
1332 $h = App::get_baseurl() . '/pubsubhubbub';
1333 xml::add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1340 * @brief Adds attachement data to the XML document
1342 * @param object $doc XML document
1343 * @param object $root XML root element where the hub links are added
1344 * @param array $item Data of the item that is to be posted
1346 private function get_attachment($doc, $root, $item) {
1348 $siteinfo = get_attached_data($item["body"]);
1350 switch($siteinfo["type"]) {
1352 $attributes = array("rel" => "enclosure",
1353 "href" => $siteinfo["url"],
1354 "type" => "text/html; charset=UTF-8",
1356 "title" => $siteinfo["title"]);
1357 xml::add_element($doc, $root, "link", "", $attributes);
1360 $imgdata = get_photo_info($siteinfo["image"]);
1361 $attributes = array("rel" => "enclosure",
1362 "href" => $siteinfo["image"],
1363 "type" => $imgdata["mime"],
1364 "length" => intval($imgdata["size"]));
1365 xml::add_element($doc, $root, "link", "", $attributes);
1368 $attributes = array("rel" => "enclosure",
1369 "href" => $siteinfo["url"],
1370 "type" => "text/html; charset=UTF-8",
1372 "title" => $siteinfo["title"]);
1373 xml::add_element($doc, $root, "link", "", $attributes);
1379 if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1380 $photodata = get_photo_info($siteinfo["image"]);
1382 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1383 xml::add_element($doc, $root, "link", "", $attributes);
1387 $arr = explode('[/attach],',$item['attach']);
1389 foreach($arr as $r) {
1391 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1393 $attributes = array("rel" => "enclosure",
1394 "href" => $matches[1],
1395 "type" => $matches[3]);
1397 if(intval($matches[2]))
1398 $attributes["length"] = intval($matches[2]);
1400 if(trim($matches[4]) != "")
1401 $attributes["title"] = trim($matches[4]);
1403 xml::add_element($doc, $root, "link", "", $attributes);
1410 * @brief Adds the author element to the XML document
1412 * @param object $doc XML document
1413 * @param array $owner Contact data of the poster
1415 * @return object author element
1417 private function add_author($doc, $owner) {
1419 $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1423 $author = $doc->createElement("author");
1424 xml::add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1425 xml::add_element($doc, $author, "uri", $owner["url"]);
1426 xml::add_element($doc, $author, "name", $owner["name"]);
1427 xml::add_element($doc, $author, "summary", bbcode($owner["about"], false, false, 7));
1429 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1430 xml::add_element($doc, $author, "link", "", $attributes);
1432 $attributes = array(
1434 "type" => "image/jpeg", // To-Do?
1435 "media:width" => 175,
1436 "media:height" => 175,
1437 "href" => $owner["photo"]);
1438 xml::add_element($doc, $author, "link", "", $attributes);
1440 if (isset($owner["thumb"])) {
1441 $attributes = array(
1443 "type" => "image/jpeg", // To-Do?
1444 "media:width" => 80,
1445 "media:height" => 80,
1446 "href" => $owner["thumb"]);
1447 xml::add_element($doc, $author, "link", "", $attributes);
1450 xml::add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1451 xml::add_element($doc, $author, "poco:displayName", $owner["name"]);
1452 xml::add_element($doc, $author, "poco:note", bbcode($owner["about"], false, false, 7));
1454 if (trim($owner["location"]) != "") {
1455 $element = $doc->createElement("poco:address");
1456 xml::add_element($doc, $element, "poco:formatted", $owner["location"]);
1457 $author->appendChild($element);
1460 if (trim($profile["homepage"]) != "") {
1461 $urls = $doc->createElement("poco:urls");
1462 xml::add_element($doc, $urls, "poco:type", "homepage");
1463 xml::add_element($doc, $urls, "poco:value", $profile["homepage"]);
1464 xml::add_element($doc, $urls, "poco:primary", "true");
1465 $author->appendChild($urls);
1468 if (count($profile)) {
1469 xml::add_element($doc, $author, "followers", "", array("url" => App::get_baseurl()."/viewcontacts/".$owner["nick"]));
1470 xml::add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1477 * @TODO Picture attachments should look like this:
1478 * <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1479 * class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1484 * @brief Returns the given activity if present - otherwise returns the "post" activity
1486 * @param array $item Data of the item that is to be posted
1488 * @return string activity
1490 function construct_verb($item) {
1492 return $item['verb'];
1493 return ACTIVITY_POST;
1497 * @brief Returns the given object type if present - otherwise returns the "note" object type
1499 * @param array $item Data of the item that is to be posted
1501 * @return string Object type
1503 function construct_objecttype($item) {
1504 if (in_array($item['object-type'], array(ACTIVITY_OBJ_NOTE, ACTIVITY_OBJ_COMMENT)))
1505 return $item['object-type'];
1506 return ACTIVITY_OBJ_NOTE;
1510 * @brief Adds an entry element to the XML document
1512 * @param object $doc XML document
1513 * @param array $item Data of the item that is to be posted
1514 * @param array $owner Contact data of the poster
1515 * @param bool $toplevel
1517 * @return object Entry element
1519 private function entry($doc, $item, $owner, $toplevel = false) {
1520 $repeated_guid = self::get_reshared_guid($item);
1521 if ($repeated_guid != "")
1522 $xml = self::reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel);
1527 if ($item["verb"] == ACTIVITY_LIKE)
1528 return self::like_entry($doc, $item, $owner, $toplevel);
1530 return self::note_entry($doc, $item, $owner, $toplevel);
1534 * @brief Adds a source entry to the XML document
1536 * @param object $doc XML document
1537 * @param array $contact Array of the contact that is added
1539 * @return object Source element
1541 private function source_entry($doc, $contact) {
1542 $source = $doc->createElement("source");
1543 xml::add_element($doc, $source, "id", $contact["poll"]);
1544 xml::add_element($doc, $source, "title", $contact["name"]);
1545 xml::add_element($doc, $source, "link", "", array("rel" => "alternate",
1546 "type" => "text/html",
1547 "href" => $contact["alias"]));
1548 xml::add_element($doc, $source, "link", "", array("rel" => "self",
1549 "type" => "application/atom+xml",
1550 "href" => $contact["poll"]));
1551 xml::add_element($doc, $source, "icon", $contact["photo"]);
1552 xml::add_element($doc, $source, "updated", datetime_convert("UTC","UTC",$contact["success_update"]."+00:00",ATOM_TIME));
1558 * @brief Fetches contact data from the contact or the gcontact table
1560 * @param string $url URL of the contact
1561 * @param array $owner Contact data of the poster
1563 * @return array Contact array
1565 private function contact_entry($url, $owner) {
1567 $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `uid` IN (0, %d) ORDER BY `uid` DESC LIMIT 1",
1568 dbesc(normalise_link($url)), intval($owner["uid"]));
1571 $contact["uid"] = -1;
1575 $r = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1576 dbesc(normalise_link($url)));
1579 $contact["uid"] = -1;
1580 $contact["success_update"] = $contact["updated"];
1587 if (!isset($contact["poll"])) {
1588 $data = probe_url($url);
1589 $contact["alias"] = $data["alias"];
1590 $contact["poll"] = $data["poll"];
1593 if (!isset($contact["alias"]))
1594 $contact["alias"] = $contact["url"];
1600 * @brief Adds an entry element with reshared content
1602 * @param object $doc XML document
1603 * @param array $item Data of the item that is to be posted
1604 * @param array $owner Contact data of the poster
1605 * @param $repeated_guid
1606 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1608 * @return object Entry element
1610 private function reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel) {
1612 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1613 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1616 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1618 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' AND NOT `private` AND `network` IN ('%s', '%s', '%s') LIMIT 1",
1619 intval($owner["uid"]), dbesc($repeated_guid),
1620 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
1622 $repeated_item = $r[0];
1626 $contact = self::contact_entry($repeated_item['author-link'], $owner);
1628 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1630 $title = $owner["nick"]." repeated a notice by ".$contact["nick"];
1632 self::entry_content($doc, $entry, $item, $owner, $title, ACTIVITY_SHARE, false);
1634 $as_object = $doc->createElement("activity:object");
1636 xml::add_element($doc, $as_object, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA."activity");
1638 self::entry_content($doc, $as_object, $repeated_item, $owner, "", "", false);
1640 $author = self::add_author($doc, $contact);
1641 $as_object->appendChild($author);
1643 $as_object2 = $doc->createElement("activity:object");
1645 xml::add_element($doc, $as_object2, "activity:object-type", self::construct_objecttype($repeated_item));
1647 $title = sprintf("New comment by %s", $contact["nick"]);
1649 self::entry_content($doc, $as_object2, $repeated_item, $owner, $title);
1651 $as_object->appendChild($as_object2);
1653 self::entry_footer($doc, $as_object, $item, $owner, false);
1655 $source = self::source_entry($doc, $contact);
1657 $as_object->appendChild($source);
1659 $entry->appendChild($as_object);
1661 self::entry_footer($doc, $entry, $item, $owner);
1667 * @brief Adds an entry element with a "like"
1669 * @param object $doc XML document
1670 * @param array $item Data of the item that is to be posted
1671 * @param array $owner Contact data of the poster
1672 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1674 * @return object Entry element with "like"
1676 private function like_entry($doc, $item, $owner, $toplevel) {
1678 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1679 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1682 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1684 $verb = NAMESPACE_ACTIVITY_SCHEMA."favorite";
1685 self::entry_content($doc, $entry, $item, $owner, "Favorite", $verb, false);
1687 $as_object = $doc->createElement("activity:object");
1689 $parent = q("SELECT * FROM `item` WHERE `id` = %d", intval($item["parent"]));
1690 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1692 xml::add_element($doc, $as_object, "activity:object-type", self::construct_objecttype($parent[0]));
1694 self::entry_content($doc, $as_object, $parent[0], $owner, "New entry");
1696 $entry->appendChild($as_object);
1698 self::entry_footer($doc, $entry, $item, $owner);
1704 * @brief Adds a regular entry element
1706 * @param object $doc XML document
1707 * @param array $item Data of the item that is to be posted
1708 * @param array $owner Contact data of the poster
1709 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1711 * @return object Entry element
1713 private function note_entry($doc, $item, $owner, $toplevel) {
1715 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1716 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1719 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1721 xml::add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1723 self::entry_content($doc, $entry, $item, $owner, $title);
1725 self::entry_footer($doc, $entry, $item, $owner);
1731 * @brief Adds a header element to the XML document
1733 * @param object $doc XML document
1734 * @param object $entry The entry element where the elements are added
1735 * @param array $owner Contact data of the poster
1736 * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1738 * @return string The title for the element
1740 private function entry_header($doc, &$entry, $owner, $toplevel) {
1741 /// @todo Check if this title stuff is really needed (I guess not)
1743 $entry = $doc->createElement("entry");
1744 $title = sprintf("New note by %s", $owner["nick"]);
1746 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1748 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1749 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1750 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1751 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1752 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1753 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1754 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1756 $author = self::add_author($doc, $owner);
1757 $entry->appendChild($author);
1759 $title = sprintf("New comment by %s", $owner["nick"]);
1765 * @brief Adds elements to the XML document
1767 * @param object $doc XML document
1768 * @param object $entry Entry element where the content is added
1769 * @param array $item Data of the item that is to be posted
1770 * @param array $owner Contact data of the poster
1771 * @param string $title Title for the post
1772 * @param string $verb The activity verb
1773 * @param bool $complete Add the "status_net" element?
1775 private function entry_content($doc, $entry, $item, $owner, $title, $verb = "", $complete = true) {
1778 $verb = self::construct_verb($item);
1780 xml::add_element($doc, $entry, "id", $item["uri"]);
1781 xml::add_element($doc, $entry, "title", $title);
1783 $body = self::format_picture_post($item['body']);
1785 if ($item['title'] != "")
1786 $body = "[b]".$item['title']."[/b]\n\n".$body;
1788 $body = bbcode($body, false, false, 7);
1790 xml::add_element($doc, $entry, "content", $body, array("type" => "html"));
1792 xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1793 "href" => App::get_baseurl()."/display/".$item["guid"]));
1796 xml::add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1798 xml::add_element($doc, $entry, "activity:verb", $verb);
1800 xml::add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
1801 xml::add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
1805 * @brief Adds the elements at the foot of an entry to the XML document
1807 * @param object $doc XML document
1808 * @param object $entry The entry element where the elements are added
1809 * @param array $item Data of the item that is to be posted
1810 * @param array $owner Contact data of the poster
1813 private function entry_footer($doc, $entry, $item, $owner, $complete = true) {
1815 $mentioned = array();
1817 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
1818 $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
1819 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1821 $attributes = array(
1822 "ref" => $parent_item,
1823 "type" => "text/html",
1824 "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
1825 xml::add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
1827 $attributes = array(
1829 "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
1830 xml::add_element($doc, $entry, "link", "", $attributes);
1832 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1833 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1835 $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
1836 intval($owner["uid"]),
1837 dbesc($parent_item));
1839 $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1840 $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1844 xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation",
1845 "href" => App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]));
1846 xml::add_element($doc, $entry, "ostatus:conversation", App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]);
1848 $tags = item_getfeedtags($item);
1851 foreach($tags as $t)
1853 $mentioned[$t[1]] = $t[1];
1855 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
1856 $newmentions = array();
1857 foreach ($mentioned AS $mention) {
1858 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
1859 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
1861 $mentioned = $newmentions;
1863 foreach ($mentioned AS $mention) {
1864 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1865 intval($owner["uid"]),
1866 dbesc(normalise_link($mention)));
1867 if ($r[0]["forum"] OR $r[0]["prv"])
1868 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1869 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1870 "href" => $mention));
1872 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1873 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1874 "href" => $mention));
1877 if (!$item["private"]) {
1878 xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:attention",
1879 "href" => "http://activityschema.org/collection/public"));
1880 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1881 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
1882 "href" => "http://activityschema.org/collection/public"));
1886 foreach($tags as $t)
1888 xml::add_element($doc, $entry, "category", "", array("term" => $t[2]));
1890 self::get_attachment($doc, $entry, $item);
1893 $app = $item["app"];
1897 $attributes = array("local_id" => $item["id"], "source" => $app);
1899 if (isset($parent["id"]))
1900 $attributes["repeat_of"] = $parent["id"];
1902 if ($item["coord"] != "")
1903 xml::add_element($doc, $entry, "georss:point", $item["coord"]);
1905 xml::add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
1910 * @brief Creates the XML feed for a given nickname
1912 * @param app $a The application class
1913 * @param string $owner_nick Nickname of the feed owner
1914 * @param string $last_update Date of the last update
1916 * @return string XML feed
1918 public static function feed(&$a, $owner_nick, $last_update) {
1920 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
1921 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
1922 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
1923 dbesc($owner_nick));
1929 if(!strlen($last_update))
1930 $last_update = 'now -30 days';
1932 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
1934 $items = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id` FROM `item`
1935 INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`
1936 LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
1937 WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
1938 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
1939 AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
1940 OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
1941 AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
1942 OR (`item`.`author-link` IN ('%s', '%s')))
1943 ORDER BY `item`.`received` DESC
1945 intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
1946 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1947 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1948 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1949 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1950 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
1951 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
1954 $doc = new DOMDocument('1.0', 'utf-8');
1955 $doc->formatOutput = true;
1957 $root = self::add_header($doc, $owner);
1959 foreach ($items AS $item) {
1960 $entry = self::entry($doc, $item, $owner);
1961 $root->appendChild($entry);
1964 return(trim($doc->saveXML()));
1968 * @brief Creates the XML for a salmon message
1970 * @param array $item Data of the item that is to be posted
1971 * @param array $owner Contact data of the poster
1973 * @return string XML for the salmon
1975 public static function salmon($item,$owner) {
1977 $doc = new DOMDocument('1.0', 'utf-8');
1978 $doc->formatOutput = true;
1980 $entry = self::entry($doc, $item, $owner, true);
1982 $doc->appendChild($entry);
1984 return(trim($doc->saveXML()));