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
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;
48 $authorlink = $author["author-link"];
50 $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
51 if (is_object($alternate))
52 foreach($alternate AS $attributes)
53 if ($attributes->name == "href")
54 $author["author-link"] = $attributes->textContent;
56 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
57 intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
58 dbesc(normalise_link($authorlink)), dbesc(NETWORK_STATUSNET));
61 $author["contact-id"] = $r[0]["id"];
63 $author["contact-id"] = $contact["id"];
65 $avatarlist = array();
66 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
67 foreach($avatars AS $avatar) {
70 foreach($avatar->attributes AS $attributes) {
71 if ($attributes->name == "href")
72 $href = $attributes->textContent;
73 if ($attributes->name == "width")
74 $width = $attributes->textContent;
76 if (($width > 0) AND ($href != ""))
77 $avatarlist[$width] = $href;
79 if (count($avatarlist) > 0) {
81 $author["author-avatar"] = current($avatarlist);
84 $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
85 if ($displayname != "")
86 $author["author-name"] = $displayname;
88 $author["owner-name"] = $author["author-name"];
89 $author["owner-link"] = $author["author-link"];
90 $author["owner-avatar"] = $author["author-avatar"];
92 // Only update the contacts if it is an OStatus contact
93 if ($r AND !$onlyfetch AND ($contact["network"] == NETWORK_OSTATUS)) {
94 // Update contact data
96 $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
98 $contact["notify"] = $value;
100 $value = $xpath->evaluate('atom:author/uri/text()', $context)->item(0)->nodeValue;
102 $contact["alias"] = $value;
104 $value = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
106 $contact["name"] = $value;
108 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
110 $contact["nick"] = $value;
112 $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue;
114 $contact["about"] = html2bbcode($value);
116 $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
118 $contact["location"] = $value;
120 if (($contact["name"] != $r[0]["name"]) OR ($contact["nick"] != $r[0]["nick"]) OR ($contact["about"] != $r[0]["about"]) 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', `about` = '%s', `location` = '%s', `name-date` = '%s' WHERE `id` = %d",
125 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
126 dbesc(datetime_convert()), intval($contact["id"]));
128 poco_check($contact["url"], $contact["name"], $contact["network"], $author["author-avatar"], $contact["about"], $contact["location"],
129 "", "", "", datetime_convert(), 2, $contact["id"], $contact["uid"]);
132 if (isset($author["author-avatar"]) AND ($author["author-avatar"] != $r[0]['avatar'])) {
133 logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
135 update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
138 $contact["generation"] = 2;
139 $contact["photo"] = $author["author-avatar"];
140 update_gcontact($contact);
154 public static function salmon_author($xml, $importer) {
159 $doc = new DOMDocument();
160 @$doc->loadXML($xml);
162 $xpath = new DomXPath($doc);
163 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
164 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
165 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
166 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
167 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
168 $xpath->registerNamespace('poco', NAMESPACE_POCO);
169 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
170 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
172 $entries = $xpath->query('/atom:entry');
174 foreach ($entries AS $entry) {
176 $author = self::fetchauthor($xpath, $entry, $importer, $contact, true);
191 public static function import($xml,$importer,&$contact, &$hub) {
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);
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];
570 public static function check_conversations($mentions = false, $override = false) {
571 $last = get_config('system','ostatus_last_poll');
573 $poll_interval = intval(get_config('system','ostatus_poll_interval'));
575 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
577 // Don't poll if the interval is set negative
578 if (($poll_interval < 0) AND !$override)
582 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
583 if (!$poll_timeframe)
584 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
586 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
587 if (!$poll_timeframe)
588 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
592 if ($last AND !$override) {
593 $next = $last + ($poll_interval * 60);
594 if ($next > time()) {
595 logger('poll interval not reached');
600 logger('cron_start');
602 $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
605 $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
606 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
607 WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
608 GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
610 $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
611 WHERE `type` = 7 AND `term` > '%s'
612 GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
614 foreach ($conversations AS $conversation) {
615 self::completion($conversation['url'], $conversation['uid']);
620 set_config('system','ostatus_last_poll', time());
624 * @brief Updates the gcontact table with actor data from the conversation
626 * @param object $actor The actor object that contains the contact data
628 private function conv_fetch_actor($actor) {
630 // We set the generation to "3" since the data here is not as reliable as the data we get on other occasions
631 $contact = array("network" => NETWORK_OSTATUS, "generation" => 3);
633 if (isset($actor->url))
634 $contact["url"] = $actor->url;
636 if (isset($actor->displayName))
637 $contact["name"] = $actor->displayName;
639 if (isset($actor->portablecontacts_net->displayName))
640 $contact["name"] = $actor->portablecontacts_net->displayName;
642 if (isset($actor->portablecontacts_net->preferredUsername))
643 $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
645 if (isset($actor->id))
646 $contact["alias"] = $actor->id;
648 if (isset($actor->summary))
649 $contact["about"] = $actor->summary;
651 if (isset($actor->portablecontacts_net->note))
652 $contact["about"] = $actor->portablecontacts_net->note;
654 if (isset($actor->portablecontacts_net->addresses->formatted))
655 $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
658 if (isset($actor->image->url))
659 $contact["photo"] = $actor->image->url;
661 if (isset($actor->image->width))
662 $avatarwidth = $actor->image->width;
664 if (is_array($actor->status_net->avatarLinks))
665 foreach ($actor->status_net->avatarLinks AS $avatar) {
666 if ($avatarsize < $avatar->width) {
667 $contact["photo"] = $avatar->url;
668 $avatarsize = $avatar->width;
672 update_gcontact($contact);
676 * @brief Fetches the conversation url for a given item link or conversation id
678 * @param string $self The link to the posting
679 * @param string $conversation_id The conversation id
681 * @return string The conversation url
683 private function fetch_conversation($self, $conversation_id = "") {
685 if ($conversation_id != "") {
686 $elements = explode(":", $conversation_id);
688 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
689 return $conversation_id;
695 $json = str_replace(".atom", ".json", $self);
697 $raw = fetch_url($json);
701 $data = json_decode($raw);
702 if (!is_object($data))
705 $conversation_id = $data->statusnet_conversation_id;
707 $pos = strpos($self, "/api/statuses/show/");
708 $base_url = substr($self, 0, $pos);
710 return $base_url."/conversation/".$conversation_id;
714 * @brief Fetches actor details of a given actor and user id
716 * @param string $actor The actor url
717 * @param int $uid The user id
718 * @param int $contact_id The default contact-id
720 * @return array Array with actor details
722 private function get_actor_details($actor, $uid, $contact_id) {
726 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
727 $uid, normalise_link($actor), NETWORK_STATUSNET);
730 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `alias` IN ('%s', '%s') AND `network` != '%s'",
731 $uid, $actor, normalise_link($actor), NETWORK_STATUSNET);
734 logger("Found contact for url ".$actor, LOGGER_DEBUG);
735 $details["contact_id"] = $contact[0]["id"];
736 $details["network"] = $contact[0]["network"];
738 $details["not_following"] = !in_array($contact[0]["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND));
740 logger("No contact found for user ".$uid." and url ".$actor, LOGGER_DEBUG);
742 // Adding a global contact
743 /// @TODO Use this data for the post
744 $details["global_contact_id"] = get_contact($actor, 0);
746 logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
748 $details["contact_id"] = $contact_id;
749 $details["network"] = NETWORK_OSTATUS;
751 $details["not_following"] = true;
760 * @param $conversation_url
766 private function completion($conversation_url, $uid, $item = array(), $self = "") {
771 $conversation_url = self::fetch_conversation($self, $conversation_url);
773 // If the thread shouldn't be completed then store the item and go away
774 // Don't do a completion on liked content
775 if (((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) OR
776 ($item["verb"] == ACTIVITY_LIKE) OR ($conversation_url == "")) {
777 $item_stored = item_store($item, true);
778 return($item_stored);
782 $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
783 (SELECT `parent` FROM `item` WHERE `id` IN
784 (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
785 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
788 $parent = $parents[0];
789 elseif (count($item) > 0) {
791 $parent["type"] = "remote";
792 $parent["verb"] = ACTIVITY_POST;
793 $parent["visible"] = 1;
796 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
802 $parent["parent"] = 0;
804 $parent["contact-id"] = $r[0]["id"];
805 $parent["type"] = "remote";
806 $parent["verb"] = ACTIVITY_POST;
807 $parent["visible"] = 1;
810 $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
814 logger('fetching conversation url '.$conv.' (Self: '.$self.') for user '.$uid);
817 $conv_arr = z_fetch_url($conv."?page=".$pageno);
819 // If it is a non-ssl site and there is an error, then try ssl or vice versa
820 if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
821 $conv = str_replace("http://", "https://", $conv);
822 $conv_as = fetch_url($conv."?page=".$pageno);
823 } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
824 $conv = str_replace("https://", "http://", $conv);
825 $conv_as = fetch_url($conv."?page=".$pageno);
827 $conv_as = $conv_arr["body"];
829 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
830 $conv_as = json_decode($conv_as);
832 $no_of_items = sizeof($items);
834 if (@is_array($conv_as->items))
835 foreach ($conv_as->items AS $single_item)
836 $items[$single_item->id] = $single_item;
838 if ($no_of_items == sizeof($items))
845 logger('fetching conversation done. Found '.count($items).' items');
847 if (!sizeof($items)) {
848 if (count($item) > 0) {
849 $item_stored = item_store($item, true);
852 logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
853 self::store_conversation($item_id, $conversation_url);
856 return($item_stored);
861 $items = array_reverse($items);
863 $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
868 foreach ($items as $single_conv) {
870 // Update the gcontact table
871 self::conv_fetch_actor($single_conv->actor);
873 // Test - remove before flight
874 //$tempfile = tempnam(get_temppath(), "conversation");
875 //file_put_contents($tempfile, json_encode($single_conv));
879 if (isset($single_conv->object->id))
880 $single_conv->id = $single_conv->object->id;
882 $plink = self::convert_href($single_conv->id);
883 if (isset($single_conv->object->url))
884 $plink = self::convert_href($single_conv->object->url);
886 if (@!$single_conv->id)
889 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
891 if ($first_id == "") {
892 $first_id = $single_conv->id;
894 // The first post of the conversation isn't our first post. There are three options:
895 // 1. Our conversation hasn't the "real" thread starter
896 // 2. This first post is a post inside our thread
897 // 3. This first post is a post inside another thread
898 if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
902 $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
903 (SELECT `parent` FROM `item`
904 WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
905 intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
907 if ($new_parents[0]["parent"] == $parent["parent"]) {
908 // Option 2: This post is already present inside our thread - but not as thread starter
909 logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
910 $first_id = $parent["uri"];
912 // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
913 // For now just take the new parent.
914 $parent = $new_parents[0];
915 $first_id = $parent["uri"];
916 logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
919 // Option 1: We hadn't got the real thread starter
920 // We have to clean up our existing messages.
922 $parent["uri"] = $first_id;
923 logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
925 } elseif ($parent["uri"] == "") {
927 $parent["uri"] = $first_id;
931 $parent_uri = $parent["uri"];
933 // "context" only seems to exist on older servers
934 if (isset($single_conv->context->inReplyTo->id)) {
935 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
936 intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
938 $parent_uri = $single_conv->context->inReplyTo->id;
941 // This is the current way
942 if (isset($single_conv->object->inReplyTo->id)) {
943 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
944 intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
946 $parent_uri = $single_conv->object->inReplyTo->id;
949 $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
950 intval($uid), dbesc($single_conv->id),
951 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
952 if ($message_exists) {
953 logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
955 if ($parent["id"] != 0) {
956 $existing_message = $message_exists[0];
958 // We improved the way we fetch OStatus messages, this shouldn't happen very often now
959 /// @TODO We have to change the shadow copies as well. This way here is really ugly.
960 if ($existing_message["parent"] != $parent["id"]) {
961 logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
963 // Update the parent id of the selected item
964 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
965 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
967 // Update the parent uri in the thread - but only if it points to itself
968 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
969 dbesc($parent_uri), intval($existing_message["id"]));
971 // try to change all items of the same parent
972 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
973 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
975 // Update the parent uri in the thread - but only if it points to itself
976 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
977 dbesc($parent["uri"]), intval($existing_message["parent"]));
979 // Now delete the thread
980 delete_thread($existing_message["parent"]);
984 // The item we are having on the system is the one that we wanted to store via the item array
985 if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
993 if (is_array($single_conv->to))
994 foreach($single_conv->to AS $to)
995 if ($importer["nurl"] == normalise_link($to->id))
998 $actor = $single_conv->actor->id;
999 if (isset($single_conv->actor->url))
1000 $actor = $single_conv->actor->url;
1002 $details = self::get_actor_details($actor, $uid, $parent["contact-id"]);
1004 // Do we only want to import threads that were started by our contacts?
1005 if ($details["not_following"] AND $new_parent AND get_config('system','ostatus_full_threads')) {
1006 logger("Don't import uri ".$first_id." because user ".$uid." doesn't follow the person ".$actor, LOGGER_DEBUG);
1011 $arr["network"] = $details["network"];
1012 $arr["uri"] = $single_conv->id;
1013 $arr["plink"] = $plink;
1015 $arr["contact-id"] = $details["contact_id"];
1016 $arr["parent-uri"] = $parent_uri;
1017 $arr["created"] = $single_conv->published;
1018 $arr["edited"] = $single_conv->published;
1019 $arr["owner-name"] = $single_conv->actor->displayName;
1020 if ($arr["owner-name"] == '')
1021 $arr["owner-name"] = $single_conv->actor->contact->displayName;
1022 if ($arr["owner-name"] == '')
1023 $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
1025 $arr["owner-link"] = $actor;
1026 $arr["owner-avatar"] = $single_conv->actor->image->url;
1027 $arr["author-name"] = $arr["owner-name"];
1028 $arr["author-link"] = $actor;
1029 $arr["author-avatar"] = $single_conv->actor->image->url;
1030 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
1032 if (isset($single_conv->status_net->notice_info->source))
1033 $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
1034 elseif (isset($single_conv->statusnet->notice_info->source))
1035 $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
1036 elseif (isset($single_conv->statusnet_notice_info->source))
1037 $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
1038 elseif (isset($single_conv->provider->displayName))
1039 $arr["app"] = $single_conv->provider->displayName;
1041 $arr["app"] = "OStatus";
1044 $arr["object"] = json_encode($single_conv);
1045 $arr["verb"] = $parent["verb"];
1046 $arr["visible"] = $parent["visible"];
1047 $arr["location"] = $single_conv->location->displayName;
1048 $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
1050 // Is it a reshared item?
1051 if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
1052 if (is_array($single_conv->object))
1053 $single_conv->object = $single_conv->object[0];
1055 logger("Found reshared item ".$single_conv->object->id);
1057 // $single_conv->object->context->conversation;
1059 if (isset($single_conv->object->object->id))
1060 $arr["uri"] = $single_conv->object->object->id;
1062 $arr["uri"] = $single_conv->object->id;
1064 if (isset($single_conv->object->object->url))
1065 $plink = self::convert_href($single_conv->object->object->url);
1067 $plink = self::convert_href($single_conv->object->url);
1069 if (isset($single_conv->object->object->content))
1070 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1072 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1074 $arr["plink"] = $plink;
1076 $arr["created"] = $single_conv->object->published;
1077 $arr["edited"] = $single_conv->object->published;
1079 $arr["author-name"] = $single_conv->object->actor->displayName;
1080 if ($arr["owner-name"] == '')
1081 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1083 $arr["author-link"] = $single_conv->object->actor->url;
1084 $arr["author-avatar"] = $single_conv->object->actor->image->url;
1086 $arr["app"] = $single_conv->object->provider->displayName."#";
1087 //$arr["verb"] = $single_conv->object->verb;
1089 $arr["location"] = $single_conv->object->location->displayName;
1090 $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1093 if ($arr["location"] == "")
1094 unset($arr["location"]);
1096 if ($arr["coord"] == "")
1097 unset($arr["coord"]);
1099 // Copy fields from given item array
1100 if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] == $single_conv->id))) {
1101 $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
1102 "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
1103 "title", "attach", "app", "type", "location", "contact-id", "uri");
1104 foreach ($copy_fields AS $field)
1105 if (isset($item[$field]))
1106 $arr[$field] = $item[$field];
1110 $newitem = item_store($arr);
1112 logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1116 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1118 $item_stored = $newitem;
1121 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1123 // Add the conversation entry (but don't fetch the whole conversation)
1124 self::store_conversation($newitem, $conversation_url);
1126 // If the newly created item is the top item then change the parent settings of the thread
1127 // This shouldn't happen anymore. This is supposed to be absolote.
1128 if ($arr["uri"] == $first_id) {
1129 logger('setting new parent to id '.$newitem);
1130 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1131 intval($uid), intval($newitem));
1133 $parent = $new_parents[0];
1137 if (($item_stored < 0) AND (count($item) > 0)) {
1139 if (get_config('system','ostatus_full_threads')) {
1140 $details = self::get_actor_details($item["owner-link"], $uid, $item["contact-id"]);
1141 if ($details["not_following"]) {
1142 logger("Don't import uri ".$item["uri"]." because user ".$uid." doesn't follow the person ".$item["owner-link"], LOGGER_DEBUG);
1147 $item_stored = item_store($item, true);
1149 logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1150 self::store_conversation($item_stored, $conversation_url);
1154 return($item_stored);
1161 * @param $conversation_url
1165 private function store_conversation($itemid, $conversation_url) {
1167 $conversation_url = self::convert_href($conversation_url);
1169 $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1172 $message = $messages[0];
1174 // Store conversation url if not done before
1175 $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1176 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1178 if (!$conversation) {
1179 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1180 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1181 dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1182 logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1193 private function get_reshared_guid($item) {
1194 $body = trim($item["body"]);
1196 // Skip if it isn't a pure repeated messages
1197 // Does it start with a share?
1198 if (strpos($body, "[share") > 0)
1201 // Does it end with a share?
1202 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1205 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1206 // Skip if there is no shared message in there
1207 if ($body == $attributes)
1211 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1212 if ($matches[1] != "")
1213 $guid = $matches[1];
1215 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1216 if ($matches[1] != "")
1217 $guid = $matches[1];
1229 private function format_picture_post($body) {
1230 $siteinfo = get_attached_data($body);
1232 if (($siteinfo["type"] == "photo")) {
1233 if (isset($siteinfo["preview"]))
1234 $preview = $siteinfo["preview"];
1236 $preview = $siteinfo["image"];
1238 // Is it a remote picture? Then make a smaller preview here
1239 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1241 // Is it a local picture? Then make it smaller here
1242 $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1243 $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1245 if (isset($siteinfo["url"]))
1246 $url = $siteinfo["url"];
1248 $url = $siteinfo["image"];
1250 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1264 private function add_header($doc, $owner) {
1268 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1269 $doc->appendChild($root);
1271 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1272 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1273 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1274 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1275 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1276 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1277 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1279 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1280 xml::add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1281 xml::add_element($doc, $root, "id", App::get_baseurl()."/profile/".$owner["nick"]);
1282 xml::add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1283 xml::add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1284 xml::add_element($doc, $root, "logo", $owner["photo"]);
1285 xml::add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1287 $author = self::add_author($doc, $owner);
1288 $root->appendChild($author);
1290 $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1291 xml::add_element($doc, $root, "link", "", $attributes);
1293 /// @TODO We have to find out what this is
1294 /// $attributes = array("href" => App::get_baseurl()."/sup",
1295 /// "rel" => "http://api.friendfeed.com/2008/03#sup",
1296 /// "type" => "application/json");
1297 /// xml::add_element($doc, $root, "link", "", $attributes);
1299 self::hublinks($doc, $root);
1301 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
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-replies");
1305 xml::add_element($doc, $root, "link", "", $attributes);
1307 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1308 xml::add_element($doc, $root, "link", "", $attributes);
1310 $attributes = array("href" => App::get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1311 "rel" => "self", "type" => "application/atom+xml");
1312 xml::add_element($doc, $root, "link", "", $attributes);
1325 public static function hublinks($doc, $root) {
1326 $hub = get_config('system','huburl');
1330 $hubs = explode(',', $hub);
1332 foreach($hubs as $h) {
1336 if ($h === '[internal]')
1337 $h = App::get_baseurl() . '/pubsubhubbub';
1338 xml::add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1353 private function get_attachment($doc, $root, $item) {
1355 $siteinfo = get_attached_data($item["body"]);
1357 switch($siteinfo["type"]) {
1359 $attributes = array("rel" => "enclosure",
1360 "href" => $siteinfo["url"],
1361 "type" => "text/html; charset=UTF-8",
1363 "title" => $siteinfo["title"]);
1364 xml::add_element($doc, $root, "link", "", $attributes);
1367 $imgdata = get_photo_info($siteinfo["image"]);
1368 $attributes = array("rel" => "enclosure",
1369 "href" => $siteinfo["image"],
1370 "type" => $imgdata["mime"],
1371 "length" => intval($imgdata["size"]));
1372 xml::add_element($doc, $root, "link", "", $attributes);
1375 $attributes = array("rel" => "enclosure",
1376 "href" => $siteinfo["url"],
1377 "type" => "text/html; charset=UTF-8",
1379 "title" => $siteinfo["title"]);
1380 xml::add_element($doc, $root, "link", "", $attributes);
1386 if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1387 $photodata = get_photo_info($siteinfo["image"]);
1389 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1390 xml::add_element($doc, $root, "link", "", $attributes);
1394 $arr = explode('[/attach],',$item['attach']);
1396 foreach($arr as $r) {
1398 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1400 $attributes = array("rel" => "enclosure",
1401 "href" => $matches[1],
1402 "type" => $matches[3]);
1404 if(intval($matches[2]))
1405 $attributes["length"] = intval($matches[2]);
1407 if(trim($matches[4]) != "")
1408 $attributes["title"] = trim($matches[4]);
1410 xml::add_element($doc, $root, "link", "", $attributes);
1424 private function add_author($doc, $owner) {
1426 $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1430 $author = $doc->createElement("author");
1431 xml::add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1432 xml::add_element($doc, $author, "uri", $owner["url"]);
1433 xml::add_element($doc, $author, "name", $owner["name"]);
1434 xml::add_element($doc, $author, "summary", bbcode($owner["about"], false, false, 7));
1436 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1437 xml::add_element($doc, $author, "link", "", $attributes);
1439 $attributes = array(
1441 "type" => "image/jpeg", // To-Do?
1442 "media:width" => 175,
1443 "media:height" => 175,
1444 "href" => $owner["photo"]);
1445 xml::add_element($doc, $author, "link", "", $attributes);
1447 if (isset($owner["thumb"])) {
1448 $attributes = array(
1450 "type" => "image/jpeg", // To-Do?
1451 "media:width" => 80,
1452 "media:height" => 80,
1453 "href" => $owner["thumb"]);
1454 xml::add_element($doc, $author, "link", "", $attributes);
1457 xml::add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1458 xml::add_element($doc, $author, "poco:displayName", $owner["name"]);
1459 xml::add_element($doc, $author, "poco:note", bbcode($owner["about"], false, false, 7));
1461 if (trim($owner["location"]) != "") {
1462 $element = $doc->createElement("poco:address");
1463 xml::add_element($doc, $element, "poco:formatted", $owner["location"]);
1464 $author->appendChild($element);
1467 if (trim($profile["homepage"]) != "") {
1468 $urls = $doc->createElement("poco:urls");
1469 xml::add_element($doc, $urls, "poco:type", "homepage");
1470 xml::add_element($doc, $urls, "poco:value", $profile["homepage"]);
1471 xml::add_element($doc, $urls, "poco:primary", "true");
1472 $author->appendChild($urls);
1475 if (count($profile)) {
1476 xml::add_element($doc, $author, "followers", "", array("url" => App::get_baseurl()."/viewcontacts/".$owner["nick"]));
1477 xml::add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1484 * @TODO Picture attachments should look like this:
1485 * <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1486 * class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1497 function construct_verb($item) {
1499 return $item['verb'];
1500 return ACTIVITY_POST;
1510 function construct_objecttype($item) {
1511 if (in_array($item['object-type'], array(ACTIVITY_OBJ_NOTE, ACTIVITY_OBJ_COMMENT)))
1512 return $item['object-type'];
1513 return ACTIVITY_OBJ_NOTE;
1526 private function entry($doc, $item, $owner, $toplevel = false) {
1527 $repeated_guid = self::get_reshared_guid($item);
1528 if ($repeated_guid != "")
1529 $xml = self::reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel);
1534 if ($item["verb"] == ACTIVITY_LIKE)
1535 return self::like_entry($doc, $item, $owner, $toplevel);
1537 return self::note_entry($doc, $item, $owner, $toplevel);
1548 private function source_entry($doc, $contact) {
1549 $source = $doc->createElement("source");
1550 xml::add_element($doc, $source, "id", $contact["poll"]);
1551 xml::add_element($doc, $source, "title", $contact["name"]);
1552 xml::add_element($doc, $source, "link", "", array("rel" => "alternate",
1553 "type" => "text/html",
1554 "href" => $contact["alias"]));
1555 xml::add_element($doc, $source, "link", "", array("rel" => "self",
1556 "type" => "application/atom+xml",
1557 "href" => $contact["poll"]));
1558 xml::add_element($doc, $source, "icon", $contact["photo"]);
1559 xml::add_element($doc, $source, "updated", datetime_convert("UTC","UTC",$contact["success_update"]."+00:00",ATOM_TIME));
1572 private function contact_entry($url, $owner) {
1574 $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `uid` IN (0, %d) ORDER BY `uid` DESC LIMIT 1",
1575 dbesc(normalise_link($url)), intval($owner["uid"]));
1578 $contact["uid"] = -1;
1582 $r = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1583 dbesc(normalise_link($url)));
1586 $contact["uid"] = -1;
1587 $contact["success_update"] = $contact["updated"];
1594 if (!isset($contact["poll"])) {
1595 $data = probe_url($url);
1596 $contact["alias"] = $data["alias"];
1597 $contact["poll"] = $data["poll"];
1600 if (!isset($contact["alias"]))
1601 $contact["alias"] = $contact["url"];
1612 * @param $repeated_guid
1617 private function reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel) {
1619 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1620 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1623 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1625 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' AND NOT `private` AND `network` IN ('%s', '%s', '%s') LIMIT 1",
1626 intval($owner["uid"]), dbesc($repeated_guid),
1627 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
1629 $repeated_item = $r[0];
1633 $contact = self::contact_entry($repeated_item['author-link'], $owner);
1635 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1637 $title = $owner["nick"]." repeated a notice by ".$contact["nick"];
1639 self::entry_content($doc, $entry, $item, $owner, $title, ACTIVITY_SHARE, false);
1641 $as_object = $doc->createElement("activity:object");
1643 xml::add_element($doc, $as_object, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA."activity");
1645 self::entry_content($doc, $as_object, $repeated_item, $owner, "", "", false);
1647 $author = self::add_author($doc, $contact);
1648 $as_object->appendChild($author);
1650 $as_object2 = $doc->createElement("activity:object");
1652 xml::add_element($doc, $as_object2, "activity:object-type", self::construct_objecttype($repeated_item));
1654 $title = sprintf("New comment by %s", $contact["nick"]);
1656 self::entry_content($doc, $as_object2, $repeated_item, $owner, $title);
1658 $as_object->appendChild($as_object2);
1660 self::entry_footer($doc, $as_object, $item, $owner, false);
1662 $source = self::source_entry($doc, $contact);
1664 $as_object->appendChild($source);
1666 $entry->appendChild($as_object);
1668 self::entry_footer($doc, $entry, $item, $owner);
1683 private function like_entry($doc, $item, $owner, $toplevel) {
1685 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1686 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1689 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1691 $verb = NAMESPACE_ACTIVITY_SCHEMA."favorite";
1692 self::entry_content($doc, $entry, $item, $owner, "Favorite", $verb, false);
1694 $as_object = $doc->createElement("activity:object");
1696 $parent = q("SELECT * FROM `item` WHERE `id` = %d", intval($item["parent"]));
1697 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1699 xml::add_element($doc, $as_object, "activity:object-type", self::construct_objecttype($parent[0]));
1701 self::entry_content($doc, $as_object, $parent[0], $owner, "New entry");
1703 $entry->appendChild($as_object);
1705 self::entry_footer($doc, $entry, $item, $owner);
1720 private function note_entry($doc, $item, $owner, $toplevel) {
1722 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1723 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1726 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1728 xml::add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1730 self::entry_content($doc, $entry, $item, $owner, $title);
1732 self::entry_footer($doc, $entry, $item, $owner);
1747 private function entry_header($doc, &$entry, $owner, $toplevel) {
1749 $entry = $doc->createElement("entry");
1750 $title = sprintf("New note by %s", $owner["nick"]);
1752 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1754 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1755 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1756 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1757 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1758 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1759 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1760 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1762 $author = self::add_author($doc, $owner);
1763 $entry->appendChild($author);
1765 $title = sprintf("New comment by %s", $owner["nick"]);
1783 private function entry_content($doc, $entry, $item, $owner, $title, $verb = "", $complete = true) {
1786 $verb = self::construct_verb($item);
1788 xml::add_element($doc, $entry, "id", $item["uri"]);
1789 xml::add_element($doc, $entry, "title", $title);
1791 $body = self::format_picture_post($item['body']);
1793 if ($item['title'] != "")
1794 $body = "[b]".$item['title']."[/b]\n\n".$body;
1796 $body = bbcode($body, false, false, 7);
1798 xml::add_element($doc, $entry, "content", $body, array("type" => "html"));
1800 xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1801 "href" => App::get_baseurl()."/display/".$item["guid"]));
1804 xml::add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1806 xml::add_element($doc, $entry, "activity:verb", $verb);
1808 xml::add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
1809 xml::add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
1823 private function entry_footer($doc, $entry, $item, $owner, $complete = true) {
1825 $mentioned = array();
1827 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
1828 $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
1829 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1831 $attributes = array(
1832 "ref" => $parent_item,
1833 "type" => "text/html",
1834 "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
1835 xml::add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
1837 $attributes = array(
1839 "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
1840 xml::add_element($doc, $entry, "link", "", $attributes);
1842 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1843 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1845 $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
1846 intval($owner["uid"]),
1847 dbesc($parent_item));
1849 $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1850 $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1854 xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation",
1855 "href" => App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]));
1856 xml::add_element($doc, $entry, "ostatus:conversation", App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]);
1858 $tags = item_getfeedtags($item);
1861 foreach($tags as $t)
1863 $mentioned[$t[1]] = $t[1];
1865 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
1866 $newmentions = array();
1867 foreach ($mentioned AS $mention) {
1868 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
1869 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
1871 $mentioned = $newmentions;
1873 foreach ($mentioned AS $mention) {
1874 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1875 intval($owner["uid"]),
1876 dbesc(normalise_link($mention)));
1877 if ($r[0]["forum"] OR $r[0]["prv"])
1878 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1879 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1880 "href" => $mention));
1882 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1883 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1884 "href" => $mention));
1887 if (!$item["private"]) {
1888 xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:attention",
1889 "href" => "http://activityschema.org/collection/public"));
1890 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1891 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
1892 "href" => "http://activityschema.org/collection/public"));
1896 foreach($tags as $t)
1898 xml::add_element($doc, $entry, "category", "", array("term" => $t[2]));
1900 self::get_attachment($doc, $entry, $item);
1903 $app = $item["app"];
1907 $attributes = array("local_id" => $item["id"], "source" => $app);
1909 if (isset($parent["id"]))
1910 $attributes["repeat_of"] = $parent["id"];
1912 if ($item["coord"] != "")
1913 xml::add_element($doc, $entry, "georss:point", $item["coord"]);
1915 xml::add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
1923 * @param $owner_nick
1924 * @param $last_update
1928 public static function feed(&$a, $owner_nick, $last_update) {
1930 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
1931 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
1932 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
1933 dbesc($owner_nick));
1939 if(!strlen($last_update))
1940 $last_update = 'now -30 days';
1942 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
1944 $items = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id` FROM `item`
1945 INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`
1946 LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
1947 WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
1948 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
1949 AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
1950 OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
1951 AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
1952 OR (`item`.`author-link` IN ('%s', '%s')))
1953 ORDER BY `item`.`received` DESC
1955 intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
1956 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1957 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1958 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1959 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1960 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
1961 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
1964 $doc = new DOMDocument('1.0', 'utf-8');
1965 $doc->formatOutput = true;
1967 $root = self::add_header($doc, $owner);
1969 foreach ($items AS $item) {
1970 $entry = self::entry($doc, $item, $owner);
1971 $root->appendChild($entry);
1974 return(trim($doc->saveXML()));
1985 public static function salmon($item,$owner) {
1987 $doc = new DOMDocument('1.0', 'utf-8');
1988 $doc->formatOutput = true;
1990 $entry = self::entry($doc, $item, $owner, true);
1992 $doc->appendChild($entry);
1994 return(trim($doc->saveXML()));