2 require_once("include/Contact.php");
3 require_once("include/threads.php");
4 require_once("include/html2bbcode.php");
5 require_once("include/bbcode.php");
6 require_once("include/items.php");
7 require_once("mod/share.php");
8 require_once("include/enotify.php");
9 require_once("include/socgraph.php");
10 require_once("include/Photo.php");
11 require_once("include/Scrape.php");
12 require_once("include/follow.php");
13 require_once("include/api.php");
14 require_once("mod/proxy.php");
16 define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
17 define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes
18 define('OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS', 14400); // given in minutes
20 function ostatus_check_follow_friends() {
21 $r = q("SELECT `uid`,`v` FROM `pconfig` WHERE `cat`='system' AND `k`='ostatus_legacy_contact' AND `v` != ''");
26 foreach ($r AS $contact) {
27 ostatus_follow_friends($contact["uid"], $contact["v"]);
28 set_pconfig($contact["uid"], "system", "ostatus_legacy_contact", "");
32 // This function doesn't work reliable by now.
33 function ostatus_follow_friends($uid, $url) {
34 $contact = probe_url($url);
39 $api = $contact["baseurl"]."/api/";
42 $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]);
44 if (!$data["success"])
47 $friends = json_decode($data["body"]);
49 foreach ($friends AS $friend) {
50 $url = $friend->statusnet_profile_url;
51 $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND
52 (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND
53 `network` != '%s' LIMIT 1",
54 intval($uid), dbesc(normalise_link($url)),
55 dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET));
57 $data = probe_url($friend->statusnet_profile_url);
58 if ($data["network"] == NETWORK_OSTATUS) {
59 $result = new_contact($uid,$friend->statusnet_profile_url);
60 if ($result["success"])
61 logger($friend->name." ".$url." - success", LOGGER_DEBUG);
63 logger($friend->name." ".$url." - failed", LOGGER_DEBUG);
65 logger($friend->name." ".$url." - not OStatus", LOGGER_DEBUG);
70 function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
73 $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
74 $author["author-name"] = $xpath->evaluate('atom:author/atom:name/text()', $context)->item(0)->nodeValue;
77 $authorlink = $author["author-link"];
79 $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
80 if (is_object($alternate))
81 foreach($alternate AS $attributes)
82 if ($attributes->name == "href")
83 $author["author-link"] = $attributes->textContent;
85 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
86 intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
87 dbesc(normalise_link($authorlink)), dbesc(NETWORK_STATUSNET));
90 $author["contact-id"] = $r[0]["id"];
92 $author["contact-id"] = $contact["id"];
94 $avatarlist = array();
95 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
96 foreach($avatars AS $avatar) {
99 foreach($avatar->attributes AS $attributes) {
100 if ($attributes->name == "href")
101 $href = $attributes->textContent;
102 if ($attributes->name == "width")
103 $width = $attributes->textContent;
105 if (($width > 0) AND ($href != ""))
106 $avatarlist[$width] = $href;
108 if (count($avatarlist) > 0) {
110 $author["author-avatar"] = current($avatarlist);
113 $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
114 if ($displayname != "")
115 $author["author-name"] = $displayname;
117 $author["owner-name"] = $author["author-name"];
118 $author["owner-link"] = $author["author-link"];
119 $author["owner-avatar"] = $author["author-avatar"];
121 // Only update the contacts if it is an OStatus contact
122 if ($r AND !$onlyfetch AND ($contact["network"] == NETWORK_OSTATUS)) {
123 // Update contact data
125 $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
127 $contact["notify"] = $value;
129 $value = $xpath->evaluate('atom:author/uri/text()', $context)->item(0)->nodeValue;
131 $contact["alias"] = $value;
133 $value = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
135 $contact["name"] = $value;
137 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
139 $contact["nick"] = $value;
141 $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue;
143 $contact["about"] = html2bbcode($value);
145 $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
147 $contact["location"] = $value;
149 if (($contact["name"] != $r[0]["name"]) OR ($contact["nick"] != $r[0]["nick"]) OR ($contact["about"] != $r[0]["about"]) OR ($contact["location"] != $r[0]["location"])) {
151 logger("Update contact data for contact ".$contact["id"], LOGGER_DEBUG);
153 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `about` = '%s', `location` = '%s', `name-date` = '%s' WHERE `id` = %d",
154 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
155 dbesc(datetime_convert()), intval($contact["id"]));
157 poco_check($contact["url"], $contact["name"], $contact["network"], $author["author-avatar"], $contact["about"], $contact["location"],
158 "", "", "", datetime_convert(), 2, $contact["id"], $contact["uid"]);
161 if (isset($author["author-avatar"]) AND ($author["author-avatar"] != $r[0]['avatar'])) {
162 logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
164 update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
168 /// @todo Add the "addr" field
169 $contact["generation"] = 2;
170 $contact["photo"] = $author["author-avatar"];
171 update_gcontact($contact);
177 function ostatus_salmon_author($xml, $importer) {
183 $doc = new DOMDocument();
184 @$doc->loadXML($xml);
186 $xpath = new DomXPath($doc);
187 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
188 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
189 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
190 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
191 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
192 $xpath->registerNamespace('poco', NAMESPACE_POCO);
193 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
194 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
196 $entries = $xpath->query('/atom:entry');
198 foreach ($entries AS $entry) {
200 $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true);
205 function ostatus_import($xml,$importer,&$contact, &$hub) {
209 logger("Import OStatus message", LOGGER_DEBUG);
214 $doc = new DOMDocument();
215 @$doc->loadXML($xml);
217 $xpath = new DomXPath($doc);
218 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
219 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
220 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
221 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
222 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
223 $xpath->registerNamespace('poco', NAMESPACE_POCO);
224 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
225 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
228 $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
229 if (is_object($hub_attributes))
230 foreach($hub_attributes AS $hub_attribute)
231 if ($hub_attribute->name == "href") {
232 $hub = $hub_attribute->textContent;
233 logger("Found hub ".$hub, LOGGER_DEBUG);
237 $header["uid"] = $importer["uid"];
238 $header["network"] = NETWORK_OSTATUS;
239 $header["type"] = "remote";
241 $header["origin"] = 0;
242 $header["gravity"] = GRAVITY_PARENT;
244 // it could either be a received post or a post we fetched by ourselves
245 // depending on that, the first node is different
246 $first_child = $doc->firstChild->tagName;
248 if ($first_child == "feed")
249 $entries = $xpath->query('/atom:feed/atom:entry');
251 $entries = $xpath->query('/atom:entry');
254 $conversationlist = array();
257 // Reverse the order of the entries
258 $entrylist = array();
260 foreach ($entries AS $entry)
261 $entrylist[] = $entry;
263 foreach (array_reverse($entrylist) AS $entry) {
268 if ($first_child == "feed")
269 $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
271 $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false);
273 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
277 $nickname = $author["author-name"];
279 $item = array_merge($header, $author);
282 $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
284 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
285 intval($importer["uid"]), dbesc($item["uri"]));
287 logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
291 $item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
292 $item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
294 if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
295 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
296 $item["body"] = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
297 } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION)
298 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
300 $item["object"] = $xml;
301 $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
305 if ($item["verb"] == "qvitter-delete-notice") {
306 // ignore "Delete" messages (by now)
307 logger("Ignore delete message ".print_r($item, true));
311 if ($item["verb"] == ACTIVITY_JOIN) {
312 // ignore "Join" messages
313 logger("Ignore join message ".print_r($item, true));
317 if ($item["verb"] == ACTIVITY_FOLLOW) {
318 new_follower($importer, $contact, $item, $nickname);
322 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
323 lose_follower($importer, $contact, $item, $dummy);
327 if ($item["verb"] == ACTIVITY_FAVORITE) {
328 $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
329 logger("Favorite ".$orig_uri." ".print_r($item, true));
331 $item["verb"] = ACTIVITY_LIKE;
332 $item["parent-uri"] = $orig_uri;
333 $item["gravity"] = GRAVITY_LIKE;
336 if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
337 // Ignore "Unfavorite" message
338 logger("Ignore unfavorite message ".print_r($item, true));
342 // http://activitystrea.ms/schema/1.0/rsvp-yes
343 if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE)))
344 logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
346 $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
347 $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
348 $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
352 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
353 if (is_object($inreplyto->item(0))) {
354 foreach($inreplyto->item(0)->attributes AS $attributes) {
355 if ($attributes->name == "ref")
356 $item["parent-uri"] = $attributes->textContent;
357 if ($attributes->name == "href")
358 $related = $attributes->textContent;
362 $georsspoint = $xpath->query('georss:point', $entry);
364 $item["coord"] = $georsspoint->item(0)->nodeValue;
367 /// $item["location"] =
369 $categories = $xpath->query('atom:category', $entry);
371 foreach ($categories AS $category) {
372 foreach($category->attributes AS $attributes)
373 if ($attributes->name == "term") {
374 $term = $attributes->textContent;
375 if(strlen($item["tag"]))
377 $item["tag"] .= "#[url=".$a->get_baseurl()."/search?tag=".$term."]".$term."[/url]";
385 $links = $xpath->query('atom:link', $entry);
392 foreach ($links AS $link) {
393 foreach($link->attributes AS $attributes) {
394 if ($attributes->name == "href")
395 $href = $attributes->textContent;
396 if ($attributes->name == "rel")
397 $rel = $attributes->textContent;
398 if ($attributes->name == "type")
399 $type = $attributes->textContent;
400 if ($attributes->name == "length")
401 $length = $attributes->textContent;
402 if ($attributes->name == "title")
403 $title = $attributes->textContent;
405 if (($rel != "") AND ($href != ""))
408 $item["plink"] = $href;
409 if (($item["object-type"] == ACTIVITY_OBJ_QUESTION) OR
410 ($item["object-type"] == ACTIVITY_OBJ_EVENT))
411 $item["body"] .= add_page_info($href);
413 case "ostatus:conversation":
414 $conversation = $href;
418 if(strlen($item["attach"]))
419 $item["attach"] .= ',';
421 $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
424 if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
425 if (!isset($item["parent-uri"]))
426 $item["parent-uri"] = $href;
431 $item["body"] .= add_page_info($href);
437 // Notification check
438 if ($importer["nurl"] == normalise_link($href))
448 $notice_info = $xpath->query('statusnet:notice_info', $entry);
449 if ($notice_info AND ($notice_info->length > 0)) {
450 foreach($notice_info->item(0)->attributes AS $attributes) {
451 if ($attributes->name == "source")
452 $item["app"] = strip_tags($attributes->textContent);
453 if ($attributes->name == "local_id")
454 $local_id = $attributes->textContent;
455 if ($attributes->name == "repeat_of")
456 $repeat_of = $attributes->textContent;
460 // Is it a repeated post?
461 if ($repeat_of != "") {
462 $activityobjects = $xpath->query('activity:object', $entry)->item(0);
464 if (is_object($activityobjects)) {
466 $orig_uri = $xpath->query("activity:object/atom:id", $activityobjects)->item(0)->nodeValue;
467 if (!isset($orig_uri))
468 $orig_uri = $xpath->query('atom:id/text()', $activityobjects)->item(0)->nodeValue;
470 $orig_links = $xpath->query("activity:object/atom:link[@rel='alternate']", $activityobjects);
471 if ($orig_links AND ($orig_links->length > 0))
472 foreach($orig_links->item(0)->attributes AS $attributes)
473 if ($attributes->name == "href")
474 $orig_link = $attributes->textContent;
476 if (!isset($orig_link))
477 $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
479 if (!isset($orig_link))
480 $orig_link = ostatus_convert_href($orig_uri);
482 $orig_body = $xpath->query('activity:object/atom:content/text()', $activityobjects)->item(0)->nodeValue;
483 if (!isset($orig_body))
484 $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue;
486 $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
488 $orig_contact = $contact;
489 $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
491 //if (!intval(get_config('system','wall-to-wall_share'))) {
492 // $prefix = share_header($orig_author['author-name'], $orig_author['author-link'], $orig_author['author-avatar'], "", $orig_created, $orig_link);
493 // $item["body"] = $prefix.add_page_info_to_body(html2bbcode($orig_body))."[/share]";
495 $item["author-name"] = $orig_author["author-name"];
496 $item["author-link"] = $orig_author["author-link"];
497 $item["author-avatar"] = $orig_author["author-avatar"];
498 $item["body"] = add_page_info_to_body(html2bbcode($orig_body));
499 $item["created"] = $orig_created;
501 $item["uri"] = $orig_uri;
502 $item["plink"] = $orig_link;
505 $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
507 $item["object-type"] = $xpath->query('activity:object/activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
508 if (!isset($item["object-type"]))
509 $item["object-type"] = $xpath->query('activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
513 //if ($enclosure != "")
514 // $item["body"] .= add_page_info($enclosure);
516 if (isset($item["parent-uri"])) {
517 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
518 intval($importer["uid"]), dbesc($item["parent-uri"]));
520 if (!$r AND ($related != "")) {
521 $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
523 if ($reply_path != $related) {
524 logger("Fetching related items for user ".$importer["uid"]." from ".$reply_path, LOGGER_DEBUG);
525 $reply_xml = fetch_url($reply_path);
527 $reply_contact = $contact;
528 ostatus_import($reply_xml,$importer,$reply_contact, $reply_hub);
530 // After the import try to fetch the parent item again
531 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
532 intval($importer["uid"]), dbesc($item["parent-uri"]));
536 $item["type"] = 'remote-comment';
537 $item["gravity"] = GRAVITY_COMMENT;
540 $item["parent-uri"] = $item["uri"];
542 $item_id = ostatus_completion($conversation, $importer["uid"], $item);
545 logger("Error storing item", LOGGER_DEBUG);
549 logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
553 function ostatus_convert_href($href) {
554 $elements = explode(":",$href);
556 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
559 $server = explode(",", $elements[1]);
560 $conversation = explode("=", $elements[2]);
562 if ((count($elements) == 4) AND ($elements[2] == "post"))
563 return "http://".$server[0]."/notice/".$elements[3];
565 if ((count($conversation) != 2) OR ($conversation[1] ==""))
568 if ($elements[3] == "objectType=thread")
569 return "http://".$server[0]."/conversation/".$conversation[1];
571 return "http://".$server[0]."/notice/".$conversation[1];
576 function check_conversations($mentions = false, $override = false) {
577 $last = get_config('system','ostatus_last_poll');
579 $poll_interval = intval(get_config('system','ostatus_poll_interval'));
581 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
583 // Don't poll if the interval is set negative
584 if (($poll_interval < 0) AND !$override)
588 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
589 if (!$poll_timeframe)
590 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
592 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
593 if (!$poll_timeframe)
594 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
598 if ($last AND !$override) {
599 $next = $last + ($poll_interval * 60);
600 if ($next > time()) {
601 logger('poll interval not reached');
606 logger('cron_start');
608 $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
611 $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
612 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
613 WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
614 GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
616 $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
617 WHERE `type` = 7 AND `term` > '%s'
618 GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
620 foreach ($conversations AS $conversation) {
621 ostatus_completion($conversation['url'], $conversation['uid']);
626 set_config('system','ostatus_last_poll', time());
630 * @brief Updates the gcontact table with actor data from the conversation
632 * @param object $actor The actor object that contains the contact data
634 function ostatus_conv_fetch_actor($actor) {
636 // We set the generation to "3" since the data here is not as reliable as the data we get on other occasions
637 $contact = array("network" => NETWORK_OSTATUS, "generation" => 3);
639 if (isset($actor->url))
640 $contact["url"] = $actor->url;
642 if (isset($actor->displayName))
643 $contact["name"] = $actor->displayName;
645 if (isset($actor->portablecontacts_net->displayName))
646 $contact["name"] = $actor->portablecontacts_net->displayName;
648 if (isset($actor->portablecontacts_net->preferredUsername))
649 $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
651 if (isset($actor->id))
652 $contact["alias"] = $actor->id;
654 if (isset($actor->summary))
655 $contact["about"] = $actor->summary;
657 if (isset($actor->portablecontacts_net->note))
658 $contact["about"] = $actor->portablecontacts_net->note;
660 if (isset($actor->portablecontacts_net->addresses->formatted))
661 $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
664 if (isset($actor->image->url))
665 $contact["photo"] = $actor->image->url;
667 if (isset($actor->image->width))
668 $avatarwidth = $actor->image->width;
670 if (is_array($actor->status_net->avatarLinks))
671 foreach ($actor->status_net->avatarLinks AS $avatar) {
672 if ($avatarsize < $avatar->width) {
673 $contact["photo"] = $avatar->url;
674 $avatarsize = $avatar->width;
678 $contact["server_url"] = $contact["url"];
680 $server_url = matching($contact["server_url"], $contact["alias"]);
681 if (strlen($server_url) > 8)
682 $contact["server_url"] = $server_url;
684 $server_url = matching($contact["server_url"], $contact["photo"]);
685 if (strlen($server_url) > 8)
686 $contact["server_url"] = $server_url;
688 if (($contact["server_url"] == $contact["url"]) OR ($contact["server_url"] == $contact["alias"]))
689 unset($contact["server_url"]);
691 $hostname = str_replace("http://", "", normalise_link($contact["server_url"]));
692 if ($hostname AND $contact["nick"])
693 $contact["addr"] = $contact["nick"]."@".$hostname;
696 update_gcontact($contact);
700 function ostatus_completion($conversation_url, $uid, $item = array()) {
706 $conversation_url = ostatus_convert_href($conversation_url);
708 // If the thread shouldn't be completed then store the item and go away
709 if ((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) {
710 //$arr["app"] .= " (OStatus-NoCompletion)";
711 $item_stored = item_store($item, true);
712 return($item_stored);
716 $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
717 (SELECT `parent` FROM `item` WHERE `id` IN
718 (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
719 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
722 $parent = $parents[0];
723 elseif (count($item) > 0) {
725 $parent["type"] = "remote";
726 $parent["verb"] = ACTIVITY_POST;
727 $parent["visible"] = 1;
730 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
736 $parent["parent"] = 0;
738 $parent["contact-id"] = $r[0]["id"];
739 $parent["type"] = "remote";
740 $parent["verb"] = ACTIVITY_POST;
741 $parent["visible"] = 1;
744 $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
748 logger('fetching conversation url '.$conv.' for user '.$uid);
751 $conv_arr = z_fetch_url($conv."?page=".$pageno);
753 // If it is a non-ssl site and there is an error, then try ssl or vice versa
754 if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
755 $conv = str_replace("http://", "https://", $conv);
756 $conv_as = fetch_url($conv."?page=".$pageno);
757 } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
758 $conv = str_replace("https://", "http://", $conv);
759 $conv_as = fetch_url($conv."?page=".$pageno);
761 $conv_as = $conv_arr["body"];
763 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
764 $conv_as = json_decode($conv_as);
766 $no_of_items = sizeof($items);
768 if (@is_array($conv_as->items))
769 foreach ($conv_as->items AS $single_item)
770 $items[$single_item->id] = $single_item;
772 if ($no_of_items == sizeof($items))
779 logger('fetching conversation done. Found '.count($items).' items');
781 if (!sizeof($items)) {
782 if (count($item) > 0) {
783 //$arr["app"] .= " (OStatus-NoConvFetched)";
784 $item_stored = item_store($item, true);
787 logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
788 ostatus_store_conversation($item_id, $conversation_url);
791 return($item_stored);
796 $items = array_reverse($items);
798 $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
801 foreach ($items as $single_conv) {
803 // Update the gcontact table
804 ostatus_conv_fetch_actor($single_conv->actor);
806 // Test - remove before flight
807 //$tempfile = tempnam(get_temppath(), "conversation");
808 //file_put_contents($tempfile, json_encode($single_conv));
812 if (isset($single_conv->object->id))
813 $single_conv->id = $single_conv->object->id;
815 $plink = ostatus_convert_href($single_conv->id);
816 if (isset($single_conv->object->url))
817 $plink = ostatus_convert_href($single_conv->object->url);
819 if (@!$single_conv->id)
822 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
824 if ($first_id == "") {
825 $first_id = $single_conv->id;
827 // The first post of the conversation isn't our first post. There are three options:
828 // 1. Our conversation hasn't the "real" thread starter
829 // 2. This first post is a post inside our thread
830 // 3. This first post is a post inside another thread
831 if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
832 $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
833 (SELECT `parent` FROM `item`
834 WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
835 intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
837 if ($new_parents[0]["parent"] == $parent["parent"]) {
838 // Option 2: This post is already present inside our thread - but not as thread starter
839 logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
840 $first_id = $parent["uri"];
842 // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
843 // For now just take the new parent.
844 $parent = $new_parents[0];
845 $first_id = $parent["uri"];
846 logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
849 // Option 1: We hadn't got the real thread starter
850 // We have to clean up our existing messages.
852 $parent["uri"] = $first_id;
853 logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
855 } elseif ($parent["uri"] == "") {
857 $parent["uri"] = $first_id;
861 $parent_uri = $parent["uri"];
863 // "context" only seems to exist on older servers
864 if (isset($single_conv->context->inReplyTo->id)) {
865 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
866 intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
868 $parent_uri = $single_conv->context->inReplyTo->id;
871 // This is the current way
872 if (isset($single_conv->object->inReplyTo->id)) {
873 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
874 intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
876 $parent_uri = $single_conv->object->inReplyTo->id;
879 $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
880 intval($uid), dbesc($single_conv->id),
881 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
882 if ($message_exists) {
883 logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
885 if ($parent["id"] != 0) {
886 $existing_message = $message_exists[0];
888 // We improved the way we fetch OStatus messages, this shouldn't happen very often now
889 /// @TODO We have to change the shadow copies as well. This way here is really ugly.
890 if ($existing_message["parent"] != $parent["id"]) {
891 logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
893 // Update the parent id of the selected item
894 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
895 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
897 // Update the parent uri in the thread - but only if it points to itself
898 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
899 dbesc($parent_uri), intval($existing_message["id"]));
901 // try to change all items of the same parent
902 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
903 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
905 // Update the parent uri in the thread - but only if it points to itself
906 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
907 dbesc($parent["uri"]), intval($existing_message["parent"]));
909 // Now delete the thread
910 delete_thread($existing_message["parent"]);
914 // The item we are having on the system is the one that we wanted to store via the item array
915 if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
923 if (is_array($single_conv->to))
924 foreach($single_conv->to AS $to)
925 if ($importer["nurl"] == normalise_link($to->id))
928 $actor = $single_conv->actor->id;
929 if (isset($single_conv->actor->url))
930 $actor = $single_conv->actor->url;
932 $contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
933 $uid, normalise_link($actor), NETWORK_STATUSNET);
935 if (count($contact)) {
936 logger("Found contact for url ".$actor, LOGGER_DEBUG);
937 $contact_id = $contact[0]["id"];
939 logger("No contact found for url ".$actor, LOGGER_DEBUG);
941 // Adding a global contact
942 /// @TODO Use this data for the post
943 $global_contact_id = get_contact($actor, 0);
945 logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
947 $contact_id = $parent["contact-id"];
951 $arr["network"] = NETWORK_OSTATUS;
952 $arr["uri"] = $single_conv->id;
953 $arr["plink"] = $plink;
955 $arr["contact-id"] = $contact_id;
956 $arr["parent-uri"] = $parent_uri;
957 $arr["created"] = $single_conv->published;
958 $arr["edited"] = $single_conv->published;
959 $arr["owner-name"] = $single_conv->actor->displayName;
960 if ($arr["owner-name"] == '')
961 $arr["owner-name"] = $single_conv->actor->contact->displayName;
962 if ($arr["owner-name"] == '')
963 $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
965 $arr["owner-link"] = $actor;
966 $arr["owner-avatar"] = $single_conv->actor->image->url;
967 $arr["author-name"] = $arr["owner-name"];
968 $arr["author-link"] = $actor;
969 $arr["author-avatar"] = $single_conv->actor->image->url;
970 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
972 if (isset($single_conv->status_net->notice_info->source))
973 $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
974 elseif (isset($single_conv->statusnet->notice_info->source))
975 $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
976 elseif (isset($single_conv->statusnet_notice_info->source))
977 $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
978 elseif (isset($single_conv->provider->displayName))
979 $arr["app"] = $single_conv->provider->displayName;
981 $arr["app"] = "OStatus";
983 //$arr["app"] .= " (Conversation)";
985 $arr["object"] = json_encode($single_conv);
986 $arr["verb"] = $parent["verb"];
987 $arr["visible"] = $parent["visible"];
988 $arr["location"] = $single_conv->location->displayName;
989 $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
991 // Is it a reshared item?
992 if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
993 if (is_array($single_conv->object))
994 $single_conv->object = $single_conv->object[0];
996 logger("Found reshared item ".$single_conv->object->id);
998 // $single_conv->object->context->conversation;
1000 if (isset($single_conv->object->object->id))
1001 $arr["uri"] = $single_conv->object->object->id;
1003 $arr["uri"] = $single_conv->object->id;
1005 if (isset($single_conv->object->object->url))
1006 $plink = ostatus_convert_href($single_conv->object->object->url);
1008 $plink = ostatus_convert_href($single_conv->object->url);
1010 if (isset($single_conv->object->object->content))
1011 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1013 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1015 $arr["plink"] = $plink;
1017 $arr["created"] = $single_conv->object->published;
1018 $arr["edited"] = $single_conv->object->published;
1020 $arr["author-name"] = $single_conv->object->actor->displayName;
1021 if ($arr["owner-name"] == '')
1022 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1024 $arr["author-link"] = $single_conv->object->actor->url;
1025 $arr["author-avatar"] = $single_conv->object->actor->image->url;
1027 $arr["app"] = $single_conv->object->provider->displayName."#";
1028 //$arr["verb"] = $single_conv->object->verb;
1030 $arr["location"] = $single_conv->object->location->displayName;
1031 $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1034 if ($arr["location"] == "")
1035 unset($arr["location"]);
1037 if ($arr["coord"] == "")
1038 unset($arr["coord"]);
1040 // Copy fields from given item array
1041 if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] == $single_conv->id))) {
1042 $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
1043 "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
1044 "title", "attach", "app", "type", "location", "contact-id", "uri");
1045 foreach ($copy_fields AS $field)
1046 if (isset($item[$field]))
1047 $arr[$field] = $item[$field];
1049 //$arr["app"] .= " (OStatus)";
1052 $newitem = item_store($arr);
1054 logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1058 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1060 $item_stored = $newitem;
1063 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1065 // Add the conversation entry (but don't fetch the whole conversation)
1066 ostatus_store_conversation($newitem, $conversation_url);
1068 // If the newly created item is the top item then change the parent settings of the thread
1069 // This shouldn't happen anymore. This is supposed to be absolote.
1070 if ($arr["uri"] == $first_id) {
1071 logger('setting new parent to id '.$newitem);
1072 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1073 intval($uid), intval($newitem));
1075 $parent = $new_parents[0];
1079 if (($item_stored < 0) AND (count($item) > 0)) {
1080 //$arr["app"] .= " (OStatus-NoConvFound)";
1081 $item_stored = item_store($item, true);
1083 logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1084 ostatus_store_conversation($item_stored, $conversation_url);
1088 return($item_stored);
1091 function ostatus_store_conversation($itemid, $conversation_url) {
1094 $conversation_url = ostatus_convert_href($conversation_url);
1096 $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1099 $message = $messages[0];
1101 // Store conversation url if not done before
1102 $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1103 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1105 if (!$conversation) {
1106 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1107 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1108 dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1109 logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1113 function get_reshared_guid($item) {
1114 $body = trim($item["body"]);
1116 // Skip if it isn't a pure repeated messages
1117 // Does it start with a share?
1118 if (strpos($body, "[share") > 0)
1121 // Does it end with a share?
1122 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1125 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1126 // Skip if there is no shared message in there
1127 if ($body == $attributes)
1131 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1132 if ($matches[1] != "")
1133 $guid = $matches[1];
1135 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1136 if ($matches[1] != "")
1137 $guid = $matches[1];
1142 function xml_create_element($doc, $element, $value = "", $attributes = array()) {
1143 $element = $doc->createElement($element, xmlify($value));
1145 foreach ($attributes AS $key => $value) {
1146 $attribute = $doc->createAttribute($key);
1147 $attribute->value = xmlify($value);
1148 $element->appendChild($attribute);
1153 function xml_add_element($doc, $parent, $element, $value = "", $attributes = array()) {
1154 $element = xml_create_element($doc, $element, $value, $attributes);
1155 $parent->appendChild($element);
1158 function ostatus_format_picture_post($body) {
1159 $siteinfo = get_attached_data($body);
1161 if (($siteinfo["type"] == "photo")) {
1162 if (isset($siteinfo["preview"]))
1163 $preview = $siteinfo["preview"];
1165 $preview = $siteinfo["image"];
1167 // Is it a remote picture? Then make a smaller preview here
1168 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1170 // Is it a local picture? Then make it smaller here
1171 $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1172 $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1174 if (isset($siteinfo["url"]))
1175 $url = $siteinfo["url"];
1177 $url = $siteinfo["image"];
1179 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1185 function ostatus_add_header($doc, $owner) {
1188 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1189 $doc->appendChild($root);
1191 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1192 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1193 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1194 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1195 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1196 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1197 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1199 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1200 xml_add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1201 xml_add_element($doc, $root, "id", $a->get_baseurl()."/profile/".$owner["nick"]);
1202 xml_add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1203 xml_add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1204 xml_add_element($doc, $root, "logo", $owner["photo"]);
1205 xml_add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1207 $author = ostatus_add_author($doc, $owner);
1208 $root->appendChild($author);
1210 $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1211 xml_add_element($doc, $root, "link", "", $attributes);
1213 /// @TODO We have to find out what this is
1214 /// $attributes = array("href" => $a->get_baseurl()."/sup",
1215 /// "rel" => "http://api.friendfeed.com/2008/03#sup",
1216 /// "type" => "application/json");
1217 /// xml_add_element($doc, $root, "link", "", $attributes);
1219 ostatus_hublinks($doc, $root);
1221 $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1222 xml_add_element($doc, $root, "link", "", $attributes);
1224 $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies");
1225 xml_add_element($doc, $root, "link", "", $attributes);
1227 $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1228 xml_add_element($doc, $root, "link", "", $attributes);
1230 $attributes = array("href" => $a->get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1231 "rel" => "self", "type" => "application/atom+xml");
1232 xml_add_element($doc, $root, "link", "", $attributes);
1237 function ostatus_hublinks($doc, $root) {
1239 $hub = get_config('system','huburl');
1243 $hubs = explode(',', $hub);
1245 foreach($hubs as $h) {
1249 if ($h === '[internal]')
1250 $h = $a->get_baseurl() . '/pubsubhubbub';
1251 xml_add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1257 function ostatus_get_attachment($doc, $root, $item) {
1259 $siteinfo = get_attached_data($item["body"]);
1261 switch($siteinfo["type"]) {
1263 $attributes = array("rel" => "enclosure",
1264 "href" => $siteinfo["url"],
1265 "type" => "text/html; charset=UTF-8",
1267 "title" => $siteinfo["title"]);
1268 xml_add_element($doc, $root, "link", "", $attributes);
1271 $imgdata = get_photo_info($siteinfo["image"]);
1272 $attributes = array("rel" => "enclosure",
1273 "href" => $siteinfo["image"],
1274 "type" => $imgdata["mime"],
1275 "length" => intval($imgdata["size"]));
1276 xml_add_element($doc, $root, "link", "", $attributes);
1279 $attributes = array("rel" => "enclosure",
1280 "href" => $siteinfo["url"],
1281 "type" => "text/html; charset=UTF-8",
1283 "title" => $siteinfo["title"]);
1284 xml_add_element($doc, $root, "link", "", $attributes);
1290 if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1291 $photodata = get_photo_info($siteinfo["image"]);
1293 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1294 xml_add_element($doc, $root, "link", "", $attributes);
1298 $arr = explode('[/attach],',$item['attach']);
1300 foreach($arr as $r) {
1302 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1304 $attributes = array("rel" => "enclosure",
1305 "href" => $matches[1],
1306 "type" => $matches[3]);
1308 if(intval($matches[2]))
1309 $attributes["length"] = intval($matches[2]);
1311 if(trim($matches[4]) != "")
1312 $attributes["title"] = trim($matches[4]);
1314 xml_add_element($doc, $root, "link", "", $attributes);
1320 function ostatus_add_author($doc, $owner) {
1323 $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1327 $author = $doc->createElement("author");
1328 xml_add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1329 xml_add_element($doc, $author, "uri", $owner["url"]);
1330 xml_add_element($doc, $author, "name", $owner["name"]);
1332 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1333 xml_add_element($doc, $author, "link", "", $attributes);
1335 $attributes = array(
1337 "type" => "image/jpeg", // To-Do?
1338 "media:width" => 175,
1339 "media:height" => 175,
1340 "href" => $owner["photo"]);
1341 xml_add_element($doc, $author, "link", "", $attributes);
1343 if (isset($owner["thumb"])) {
1344 $attributes = array(
1346 "type" => "image/jpeg", // To-Do?
1347 "media:width" => 80,
1348 "media:height" => 80,
1349 "href" => $owner["thumb"]);
1350 xml_add_element($doc, $author, "link", "", $attributes);
1353 xml_add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1354 xml_add_element($doc, $author, "poco:displayName", $owner["name"]);
1355 xml_add_element($doc, $author, "poco:note", $owner["about"]);
1357 if (trim($owner["location"]) != "") {
1358 $element = $doc->createElement("poco:address");
1359 xml_add_element($doc, $element, "poco:formatted", $owner["location"]);
1360 $author->appendChild($element);
1363 if (trim($profile["homepage"]) != "") {
1364 $urls = $doc->createElement("poco:urls");
1365 xml_add_element($doc, $urls, "poco:type", "homepage");
1366 xml_add_element($doc, $urls, "poco:value", $profile["homepage"]);
1367 xml_add_element($doc, $urls, "poco:primary", "true");
1368 $author->appendChild($urls);
1371 if (count($profile)) {
1372 xml_add_element($doc, $author, "followers", "", array("url" => $a->get_baseurl()."/viewcontacts/".$owner["nick"]));
1373 xml_add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1380 * @TODO Picture attachments should look like this:
1381 * <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1382 * class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1386 function ostatus_entry($doc, $item, $owner, $toplevel = false, $repeat = false) {
1389 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1390 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1396 $repeated_guid = get_reshared_guid($item);
1398 if ($repeated_guid != "") {
1399 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1400 intval($owner["uid"]), dbesc($repeated_guid));
1402 $repeated_item = $r[0];
1408 if (!$toplevel AND !$repeat) {
1409 $entry = $doc->createElement("entry");
1410 $title = sprintf("New note by %s", $owner["nick"]);
1411 } elseif (!$toplevel AND $repeat) {
1412 $entry = $doc->createElement("activity:object");
1413 $title = sprintf("New note by %s", $owner["nick"]);
1415 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1417 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1418 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1419 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1420 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1421 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1422 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1423 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1425 $author = ostatus_add_author($doc, $owner);
1426 $entry->appendChild($author);
1428 $title = sprintf("New comment by %s", $owner["nick"]);
1431 // To use the object-type "bookmark" we have to implement these elements:
1433 // <activity:object-type>http://activitystrea.ms/schema/1.0/bookmark</activity:object-type>
1434 // <title>Historic Rocket Landing</title>
1435 // <summary>Nur ein Testbeitrag.</summary>
1436 // <link rel="related" href="https://www.youtube.com/watch?v=9pillaOxGCo"/>
1437 // <link rel="preview" href="https://pirati.cc/file/thumb-4526-450x338-b48c8055f0c2fed0c3f67adc234c4b99484a90c42ed3cac73dc1081a4d0a7bc1.jpg.jpg" media:width="450" media:height="338"/>
1439 // But: it seems as if it doesn't federate well between the GS servers
1440 // So we just set it to "note" to be sure that it reaches their target systems
1443 xml_add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1445 xml_add_element($doc, $entry, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA.'activity');
1447 xml_add_element($doc, $entry, "id", $item["uri"]);
1448 xml_add_element($doc, $entry, "title", $title);
1450 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
1451 $body = fix_private_photos($item['body'],$owner['uid'],$item, 0);
1453 $body = $item['body'];
1455 $body = ostatus_format_picture_post($body);
1457 if ($item['title'] != "")
1458 $body = "[b]".$item['title']."[/b]\n\n".$body;
1460 //$body = bb_remove_share_information($body);
1461 $body = bbcode($body, false, false, 7);
1463 xml_add_element($doc, $entry, "content", $body, array("type" => "html"));
1465 xml_add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1466 "href" => $a->get_baseurl()."/display/".$item["guid"]));
1468 xml_add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1471 xml_add_element($doc, $entry, "activity:verb", construct_verb($item));
1473 xml_add_element($doc, $entry, "activity:verb", ACTIVITY_SHARE);
1475 xml_add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
1476 xml_add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
1479 $repeated_owner = array();
1480 $repeated_owner["name"] = $repeated_item["author-name"];
1481 $repeated_owner["url"] = $repeated_item["author-link"];
1482 $repeated_owner["photo"] = $repeated_item["author-avatar"];
1483 $repeated_owner["nick"] = $repeated_owner["name"];
1484 $repeated_owner["location"] = "";
1485 $repeated_owner["about"] = "";
1486 $repeated_owner["uid"] = 0;
1488 // Fetch the missing data from the global contacts
1489 $r =q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($repeated_item["author-link"]));
1491 if ($r[0]["nick"] != "")
1492 $repeated_owner["nick"] = $r[0]["nick"];
1494 $repeated_owner["location"] = $r[0]["location"];
1495 $repeated_owner["about"] = $r[0]["about"];
1498 $entry_repeat = ostatus_entry($doc, $repeated_item, $repeated_owner, false, true);
1499 $entry->appendChild($entry_repeat);
1500 } elseif ($repeat) {
1501 $author = ostatus_add_author($doc, $owner);
1502 $entry->appendChild($author);
1505 $mentioned = array();
1507 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
1508 $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
1509 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1511 $attributes = array(
1512 "ref" => $parent_item,
1513 "type" => "text/html",
1514 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1515 xml_add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
1517 $attributes = array(
1519 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1520 xml_add_element($doc, $entry, "link", "", $attributes);
1522 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1523 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1525 $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
1526 intval($owner["uid"]),
1527 dbesc($parent_item));
1529 $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1530 $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1534 xml_add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation",
1535 "href" => $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]));
1536 xml_add_element($doc, $entry, "ostatus:conversation", $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]);
1538 $tags = item_getfeedtags($item);
1541 foreach($tags as $t)
1543 $mentioned[$t[1]] = $t[1];
1545 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
1546 $newmentions = array();
1547 foreach ($mentioned AS $mention) {
1548 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
1549 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
1551 $mentioned = $newmentions;
1553 foreach ($mentioned AS $mention) {
1554 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1555 intval($owner["uid"]),
1556 dbesc(normalise_link($mention)));
1557 if ($r[0]["forum"] OR $r[0]["prv"])
1558 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1559 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1560 "href" => $mention));
1562 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1563 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1564 "href" => $mention));
1567 if (!$item["private"])
1568 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1569 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
1570 "href" => "http://activityschema.org/collection/public"));
1573 foreach($tags as $t)
1575 xml_add_element($doc, $entry, "category", "", array("term" => $t[2]));
1577 ostatus_get_attachment($doc, $entry, $item);
1580 /// The API call has yet to be implemented
1581 //$attributes = array("href" => $a->get_baseurl()."/api/statuses/show/".$item["id"].".atom",
1582 // "rel" => "self", "type" => "application/atom+xml");
1583 //xml_add_element($doc, $entry, "link", "", $attributes);
1585 //$attributes = array("href" => $a->get_baseurl()."/api/statuses/show/".$item["id"].".atom",
1586 // "rel" => "edit", "type" => "application/atom+xml");
1587 //xml_add_element($doc, $entry, "link", "", $attributes);
1589 $app = $item["app"];
1594 $attributes = array("local_id" => $item["id"], "source" => $app);
1596 $attributes["repeat_of"] = $repeated_item["id"];
1598 xml_add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
1603 function ostatus_feed(&$a, $owner_nick, $last_update) {
1605 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
1606 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
1607 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
1608 dbesc($owner_nick));
1614 if(!strlen($last_update))
1615 $last_update = 'now -30 days';
1617 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
1619 $items = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id` FROM `item`
1620 INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`
1621 LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
1622 WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
1623 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
1624 AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
1625 OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
1626 AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
1627 OR (`item`.`author-link` IN ('%s', '%s')))
1628 ORDER BY `item`.`received` DESC
1630 intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
1631 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1632 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1633 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1634 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1635 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
1636 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
1639 $doc = new DOMDocument('1.0', 'utf-8');
1640 $doc->formatOutput = true;
1642 $root = ostatus_add_header($doc, $owner);
1644 foreach ($items AS $item) {
1645 $entry = ostatus_entry($doc, $item, $owner);
1646 $root->appendChild($entry);
1649 return(trim($doc->saveXML()));
1652 function ostatus_salmon($item,$owner) {
1654 $doc = new DOMDocument('1.0', 'utf-8');
1655 $doc->formatOutput = true;
1657 $entry = ostatus_entry($doc, $item, $owner, true);
1659 $doc->appendChild($entry);
1661 return(trim($doc->saveXML()));