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 define("NS_ATOM", "http://www.w3.org/2005/Atom");
21 define("NS_THR", "http://purl.org/syndication/thread/1.0");
22 define("NS_GEORSS", "http://www.georss.org/georss");
23 define("NS_ACTIVITY", "http://activitystrea.ms/spec/1.0/");
24 define("NS_MEDIA", "http://purl.org/syndication/atommedia");
25 define("NS_POCO", "http://portablecontacts.net/spec/1.0");
26 define("NS_OSTATUS", "http://ostatus.org/schema/1.0");
27 define("NS_STATUSNET", "http://status.net/schema/api/1/");
29 function ostatus_check_follow_friends() {
30 $r = q("SELECT `uid`,`v` FROM `pconfig` WHERE `cat`='system' AND `k`='ostatus_legacy_contact' AND `v` != ''");
35 foreach ($r AS $contact) {
36 ostatus_follow_friends($contact["uid"], $contact["v"]);
37 set_pconfig($contact["uid"], "system", "ostatus_legacy_contact", "");
41 // This function doesn't work reliable by now.
42 function ostatus_follow_friends($uid, $url) {
43 $contact = probe_url($url);
48 $api = $contact["baseurl"]."/api/";
51 $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]);
53 if (!$data["success"])
56 $friends = json_decode($data["body"]);
58 foreach ($friends AS $friend) {
59 $url = $friend->statusnet_profile_url;
60 $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND
61 (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND
62 `network` != '%s' LIMIT 1",
63 intval($uid), dbesc(normalise_link($url)),
64 dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET));
66 $data = probe_url($friend->statusnet_profile_url);
67 if ($data["network"] == NETWORK_OSTATUS) {
68 $result = new_contact($uid,$friend->statusnet_profile_url);
69 if ($result["success"])
70 logger($friend->name." ".$url." - success", LOGGER_DEBUG);
72 logger($friend->name." ".$url." - failed", LOGGER_DEBUG);
74 logger($friend->name." ".$url." - not OStatus", LOGGER_DEBUG);
79 function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
82 $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
83 $author["author-name"] = $xpath->evaluate('atom:author/atom:name/text()', $context)->item(0)->nodeValue;
86 $authorlink = $author["author-link"];
88 $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
89 if (is_object($alternate))
90 foreach($alternate AS $attributes)
91 if ($attributes->name == "href")
92 $author["author-link"] = $attributes->textContent;
94 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
95 intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
96 dbesc(normalise_link($authorlink)), dbesc(NETWORK_STATUSNET));
99 $author["contact-id"] = $r[0]["id"];
101 $author["contact-id"] = $contact["id"];
103 $avatarlist = array();
104 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
105 foreach($avatars AS $avatar) {
108 foreach($avatar->attributes AS $attributes) {
109 if ($attributes->name == "href")
110 $href = $attributes->textContent;
111 if ($attributes->name == "width")
112 $width = $attributes->textContent;
114 if (($width > 0) AND ($href != ""))
115 $avatarlist[$width] = $href;
117 if (count($avatarlist) > 0) {
119 $author["author-avatar"] = current($avatarlist);
122 $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
123 if ($displayname != "")
124 $author["author-name"] = $displayname;
126 $author["owner-name"] = $author["author-name"];
127 $author["owner-link"] = $author["author-link"];
128 $author["owner-avatar"] = $author["author-avatar"];
130 if ($r AND !$onlyfetch) {
131 // Update contact data
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 AND `network` = '%s'",
154 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["about"]), dbesc($contact["location"]),
155 dbesc(datetime_convert()), intval($contact["id"]), dbesc(NETWORK_OSTATUS));
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]['photo'])) {
162 logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
164 $photos = import_profile_photo($author["author-avatar"], $importer["uid"], $contact["id"]);
166 q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s', `avatar-date` = '%s' WHERE `id` = %d AND `network` = '%s'",
167 dbesc($author["author-avatar"]), dbesc($photos[1]), dbesc($photos[2]),
168 dbesc(datetime_convert()), intval($contact["id"]), dbesc(NETWORK_OSTATUS));
172 update_gcontact(array("url" => $contact["url"], "network" => $contact["network"],
173 "photo" => $author["author-avatar"], "name" => $contact["name"],
174 "nick" => $contact["nick"], "location" => $contact["location"],
175 "about" => $contact["about"], "generation" => 2));
181 function ostatus_salmon_author($xml, $importer) {
187 $doc = new DOMDocument();
188 @$doc->loadXML($xml);
190 $xpath = new DomXPath($doc);
191 $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
192 $xpath->registerNamespace('thr', "http://purl.org/syndication/thread/1.0");
193 $xpath->registerNamespace('georss', "http://www.georss.org/georss");
194 $xpath->registerNamespace('activity', "http://activitystrea.ms/spec/1.0/");
195 $xpath->registerNamespace('media', "http://purl.org/syndication/atommedia");
196 $xpath->registerNamespace('poco', "http://portablecontacts.net/spec/1.0");
197 $xpath->registerNamespace('ostatus', "http://ostatus.org/schema/1.0");
198 $xpath->registerNamespace('statusnet', "http://status.net/schema/api/1/");
200 $entries = $xpath->query('/atom:entry');
202 foreach ($entries AS $entry) {
204 $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true);
209 function ostatus_import($xml,$importer,&$contact, &$hub) {
213 logger("Import OStatus message", LOGGER_DEBUG);
218 $doc = new DOMDocument();
219 @$doc->loadXML($xml);
221 $xpath = new DomXPath($doc);
222 $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
223 $xpath->registerNamespace('thr', "http://purl.org/syndication/thread/1.0");
224 $xpath->registerNamespace('georss', "http://www.georss.org/georss");
225 $xpath->registerNamespace('activity', "http://activitystrea.ms/spec/1.0/");
226 $xpath->registerNamespace('media', "http://purl.org/syndication/atommedia");
227 $xpath->registerNamespace('poco', "http://portablecontacts.net/spec/1.0");
228 $xpath->registerNamespace('ostatus', "http://ostatus.org/schema/1.0");
229 $xpath->registerNamespace('statusnet', "http://status.net/schema/api/1/");
232 $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
233 if (is_object($hub_attributes))
234 foreach($hub_attributes AS $hub_attribute)
235 if ($hub_attribute->name == "href") {
236 $hub = $hub_attribute->textContent;
237 logger("Found hub ".$hub, LOGGER_DEBUG);
241 $header["uid"] = $importer["uid"];
242 $header["network"] = NETWORK_OSTATUS;
243 $header["type"] = "remote";
245 $header["origin"] = 0;
246 $header["gravity"] = GRAVITY_PARENT;
248 // it could either be a received post or a post we fetched by ourselves
249 // depending on that, the first node is different
250 $first_child = $doc->firstChild->tagName;
252 if ($first_child == "feed")
253 $entries = $xpath->query('/atom:feed/atom:entry');
255 $entries = $xpath->query('/atom:entry');
258 $conversationlist = array();
261 // Reverse the order of the entries
262 $entrylist = array();
264 foreach ($entries AS $entry)
265 $entrylist[] = $entry;
267 foreach (array_reverse($entrylist) AS $entry) {
272 if ($first_child == "feed")
273 $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
275 $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false);
277 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
281 $nickname = $author["author-name"];
283 $item = array_merge($header, $author);
286 $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
288 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
289 intval($importer["uid"]), dbesc($item["uri"]));
291 logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
295 $item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
296 $item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
298 if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
299 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
300 $item["body"] = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
301 } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION)
302 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
304 $item["object"] = $xml;
305 $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
309 if ($item["verb"] == "qvitter-delete-notice") {
310 // ignore "Delete" messages (by now)
311 logger("Ignore delete message ".print_r($item, true));
315 if ($item["verb"] == ACTIVITY_JOIN) {
316 // ignore "Join" messages
317 logger("Ignore join message ".print_r($item, true));
321 if ($item["verb"] == ACTIVITY_FOLLOW) {
322 new_follower($importer, $contact, $item, $nickname);
326 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
327 lose_follower($importer, $contact, $item, $dummy);
331 if ($item["verb"] == ACTIVITY_FAVORITE) {
332 $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
333 logger("Favorite ".$orig_uri." ".print_r($item, true));
335 $item["verb"] = ACTIVITY_LIKE;
336 $item["parent-uri"] = $orig_uri;
337 $item["gravity"] = GRAVITY_LIKE;
340 if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
341 // Ignore "Unfavorite" message
342 logger("Ignore unfavorite message ".print_r($item, true));
346 // http://activitystrea.ms/schema/1.0/rsvp-yes
347 if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE)))
348 logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
350 $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
351 $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
352 $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
356 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
357 if (is_object($inreplyto->item(0))) {
358 foreach($inreplyto->item(0)->attributes AS $attributes) {
359 if ($attributes->name == "ref")
360 $item["parent-uri"] = $attributes->textContent;
361 if ($attributes->name == "href")
362 $related = $attributes->textContent;
366 $georsspoint = $xpath->query('georss:point', $entry);
368 $item["coord"] = $georsspoint->item(0)->nodeValue;
371 /// $item["location"] =
373 $categories = $xpath->query('atom:category', $entry);
375 foreach ($categories AS $category) {
376 foreach($category->attributes AS $attributes)
377 if ($attributes->name == "term") {
378 $term = $attributes->textContent;
379 if(strlen($item["tag"]))
381 $item["tag"] .= "#[url=".$a->get_baseurl()."/search?tag=".$term."]".$term."[/url]";
389 $links = $xpath->query('atom:link', $entry);
396 foreach ($links AS $link) {
397 foreach($link->attributes AS $attributes) {
398 if ($attributes->name == "href")
399 $href = $attributes->textContent;
400 if ($attributes->name == "rel")
401 $rel = $attributes->textContent;
402 if ($attributes->name == "type")
403 $type = $attributes->textContent;
404 if ($attributes->name == "length")
405 $length = $attributes->textContent;
406 if ($attributes->name == "title")
407 $title = $attributes->textContent;
409 if (($rel != "") AND ($href != ""))
412 $item["plink"] = $href;
413 if (($item["object-type"] == ACTIVITY_OBJ_QUESTION) OR
414 ($item["object-type"] == ACTIVITY_OBJ_EVENT))
415 $item["body"] .= add_page_info($href);
417 case "ostatus:conversation":
418 $conversation = $href;
422 if(strlen($item["attach"]))
423 $item["attach"] .= ',';
425 $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
428 if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
429 if (!isset($item["parent-uri"]))
430 $item["parent-uri"] = $href;
435 $item["body"] .= add_page_info($href);
441 // Notification check
442 if ($importer["nurl"] == normalise_link($href))
452 $notice_info = $xpath->query('statusnet:notice_info', $entry);
453 if ($notice_info AND ($notice_info->length > 0)) {
454 foreach($notice_info->item(0)->attributes AS $attributes) {
455 if ($attributes->name == "source")
456 $item["app"] = strip_tags($attributes->textContent);
457 if ($attributes->name == "local_id")
458 $local_id = $attributes->textContent;
459 if ($attributes->name == "repeat_of")
460 $repeat_of = $attributes->textContent;
464 // Is it a repeated post?
465 if ($repeat_of != "") {
466 $activityobjects = $xpath->query('activity:object', $entry)->item(0);
468 if (is_object($activityobjects)) {
470 $orig_uri = $xpath->query("activity:object/atom:id", $activityobjects)->item(0)->nodeValue;
471 if (!isset($orig_uri))
472 $orig_uri = $xpath->query('atom:id/text()', $activityobjects)->item(0)->nodeValue;
474 $orig_links = $xpath->query("activity:object/atom:link[@rel='alternate']", $activityobjects);
475 if ($orig_links AND ($orig_links->length > 0))
476 foreach($orig_links->item(0)->attributes AS $attributes)
477 if ($attributes->name == "href")
478 $orig_link = $attributes->textContent;
480 if (!isset($orig_link))
481 $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
483 if (!isset($orig_link))
484 $orig_link = ostatus_convert_href($orig_uri);
486 $orig_body = $xpath->query('activity:object/atom:content/text()', $activityobjects)->item(0)->nodeValue;
487 if (!isset($orig_body))
488 $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue;
490 $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
492 $orig_contact = $contact;
493 $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
495 //if (!intval(get_config('system','wall-to-wall_share'))) {
496 // $prefix = share_header($orig_author['author-name'], $orig_author['author-link'], $orig_author['author-avatar'], "", $orig_created, $orig_link);
497 // $item["body"] = $prefix.add_page_info_to_body(html2bbcode($orig_body))."[/share]";
499 $item["author-name"] = $orig_author["author-name"];
500 $item["author-link"] = $orig_author["author-link"];
501 $item["author-avatar"] = $orig_author["author-avatar"];
502 $item["body"] = add_page_info_to_body(html2bbcode($orig_body));
503 $item["created"] = $orig_created;
505 $item["uri"] = $orig_uri;
506 $item["plink"] = $orig_link;
509 $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
511 $item["object-type"] = $xpath->query('activity:object/activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
512 if (!isset($item["object-type"]))
513 $item["object-type"] = $xpath->query('activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
517 //if ($enclosure != "")
518 // $item["body"] .= add_page_info($enclosure);
520 if (isset($item["parent-uri"])) {
521 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
522 intval($importer["uid"]), dbesc($item["parent-uri"]));
524 if (!$r AND ($related != "")) {
525 $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
527 if ($reply_path != $related) {
528 logger("Fetching related items for user ".$importer["uid"]." from ".$reply_path, LOGGER_DEBUG);
529 $reply_xml = fetch_url($reply_path);
531 $reply_contact = $contact;
532 ostatus_import($reply_xml,$importer,$reply_contact, $reply_hub);
534 // After the import try to fetch the parent item again
535 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
536 intval($importer["uid"]), dbesc($item["parent-uri"]));
540 $item["type"] = 'remote-comment';
541 $item["gravity"] = GRAVITY_COMMENT;
544 $item["parent-uri"] = $item["uri"];
546 $item_id = ostatus_completion($conversation, $importer["uid"], $item);
549 logger("Error storing item", LOGGER_DEBUG);
553 logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
554 $item["id"] = $item_id;
557 $u = q("SELECT `notify-flags`, `language`, `username`, `email` FROM user WHERE uid = %d LIMIT 1", intval($item['uid']));
558 $r = q("SELECT `parent` FROM `item` WHERE `id` = %d", intval($item_id));
561 'type' => NOTIFY_TAGSELF,
562 'notify_flags' => $u[0]["notify-flags"],
563 'language' => $u[0]["language"],
564 'to_name' => $u[0]["username"],
565 'to_email' => $u[0]["email"],
566 'uid' => $item["uid"],
568 'link' => $a->get_baseurl().'/display/'.urlencode(get_item_guid($item_id)),
569 'source_name' => $item["author-name"],
570 'source_link' => $item["author-link"],
571 'source_photo' => $item["author-avatar"],
572 'verb' => ACTIVITY_TAG,
574 'parent' => $r[0]["parent"]
580 function ostatus_convert_href($href) {
581 $elements = explode(":",$href);
583 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
586 $server = explode(",", $elements[1]);
587 $conversation = explode("=", $elements[2]);
589 if ((count($elements) == 4) AND ($elements[2] == "post"))
590 return "http://".$server[0]."/notice/".$elements[3];
592 if ((count($conversation) != 2) OR ($conversation[1] ==""))
595 if ($elements[3] == "objectType=thread")
596 return "http://".$server[0]."/conversation/".$conversation[1];
598 return "http://".$server[0]."/notice/".$conversation[1];
603 function check_conversations($mentions = false, $override = false) {
604 $last = get_config('system','ostatus_last_poll');
606 $poll_interval = intval(get_config('system','ostatus_poll_interval'));
608 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
610 // Don't poll if the interval is set negative
611 if (($poll_interval < 0) AND !$override)
615 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
616 if (!$poll_timeframe)
617 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
619 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
620 if (!$poll_timeframe)
621 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
625 if ($last AND !$override) {
626 $next = $last + ($poll_interval * 60);
627 if ($next > time()) {
628 logger('poll interval not reached');
633 logger('cron_start');
635 $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
638 $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
639 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
640 WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
641 GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
643 $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
644 WHERE `type` = 7 AND `term` > '%s'
645 GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
647 foreach ($conversations AS $conversation) {
648 ostatus_completion($conversation['url'], $conversation['uid']);
653 set_config('system','ostatus_last_poll', time());
656 function ostatus_completion($conversation_url, $uid, $item = array()) {
662 $conversation_url = ostatus_convert_href($conversation_url);
664 // If the thread shouldn't be completed then store the item and go away
665 if ((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) {
666 //$arr["app"] .= " (OStatus-NoCompletion)";
667 $item_stored = item_store($item, true);
668 return($item_stored);
672 $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
673 (SELECT `parent` FROM `item` WHERE `id` IN
674 (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
675 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
678 $parent = $parents[0];
679 elseif (count($item) > 0) {
681 $parent["type"] = "remote";
682 $parent["verb"] = ACTIVITY_POST;
683 $parent["visible"] = 1;
686 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
692 $parent["parent"] = 0;
694 $parent["contact-id"] = $r[0]["id"];
695 $parent["type"] = "remote";
696 $parent["verb"] = ACTIVITY_POST;
697 $parent["visible"] = 1;
700 $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
704 logger('fetching conversation url '.$conv.' for user '.$uid);
707 $conv_arr = z_fetch_url($conv."?page=".$pageno);
709 // If it is a non-ssl site and there is an error, then try ssl or vice versa
710 if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
711 $conv = str_replace("http://", "https://", $conv);
712 $conv_as = fetch_url($conv."?page=".$pageno);
713 } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
714 $conv = str_replace("https://", "http://", $conv);
715 $conv_as = fetch_url($conv."?page=".$pageno);
717 $conv_as = $conv_arr["body"];
719 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
720 $conv_as = json_decode($conv_as);
722 $no_of_items = sizeof($items);
724 if (@is_array($conv_as->items))
725 foreach ($conv_as->items AS $single_item)
726 $items[$single_item->id] = $single_item;
728 if ($no_of_items == sizeof($items))
735 logger('fetching conversation done. Found '.count($items).' items');
737 if (!sizeof($items)) {
738 if (count($item) > 0) {
739 //$arr["app"] .= " (OStatus-NoConvFetched)";
740 $item_stored = item_store($item, true);
743 logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
744 ostatus_store_conversation($item_id, $conversation_url);
747 return($item_stored);
752 $items = array_reverse($items);
754 $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
757 foreach ($items as $single_conv) {
759 // Test - remove before flight
760 //$tempfile = tempnam(get_temppath(), "conversation");
761 //file_put_contents($tempfile, json_encode($single_conv));
765 if (isset($single_conv->object->id))
766 $single_conv->id = $single_conv->object->id;
768 $plink = ostatus_convert_href($single_conv->id);
769 if (isset($single_conv->object->url))
770 $plink = ostatus_convert_href($single_conv->object->url);
772 if (@!$single_conv->id)
775 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
777 if ($first_id == "") {
778 $first_id = $single_conv->id;
780 // The first post of the conversation isn't our first post. There are three options:
781 // 1. Our conversation hasn't the "real" thread starter
782 // 2. This first post is a post inside our thread
783 // 3. This first post is a post inside another thread
784 if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
785 $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
786 (SELECT `parent` FROM `item`
787 WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
788 intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
790 if ($new_parents[0]["parent"] == $parent["parent"]) {
791 // Option 2: This post is already present inside our thread - but not as thread starter
792 logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
793 $first_id = $parent["uri"];
795 // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
796 // For now just take the new parent.
797 $parent = $new_parents[0];
798 $first_id = $parent["uri"];
799 logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
802 // Option 1: We hadn't got the real thread starter
803 // We have to clean up our existing messages.
805 $parent["uri"] = $first_id;
806 logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
808 } elseif ($parent["uri"] == "") {
810 $parent["uri"] = $first_id;
814 $parent_uri = $parent["uri"];
816 // "context" only seems to exist on older servers
817 if (isset($single_conv->context->inReplyTo->id)) {
818 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
819 intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
821 $parent_uri = $single_conv->context->inReplyTo->id;
824 // This is the current way
825 if (isset($single_conv->object->inReplyTo->id)) {
826 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
827 intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
829 $parent_uri = $single_conv->object->inReplyTo->id;
832 $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
833 intval($uid), dbesc($single_conv->id),
834 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
835 if ($message_exists) {
836 logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
838 if ($parent["id"] != 0) {
839 $existing_message = $message_exists[0];
841 // We improved the way we fetch OStatus messages, this shouldn't happen very often now
842 /// @TODO We have to change the shadow copies as well. This way here is really ugly.
843 if ($existing_message["parent"] != $parent["id"]) {
844 logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
846 // Update the parent id of the selected item
847 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
848 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
850 // Update the parent uri in the thread - but only if it points to itself
851 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
852 dbesc($parent_uri), intval($existing_message["id"]));
854 // try to change all items of the same parent
855 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
856 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
858 // Update the parent uri in the thread - but only if it points to itself
859 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
860 dbesc($parent["uri"]), intval($existing_message["parent"]));
862 // Now delete the thread
863 delete_thread($existing_message["parent"]);
867 // The item we are having on the system is the one that we wanted to store via the item array
868 if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
876 if (is_array($single_conv->to))
877 foreach($single_conv->to AS $to)
878 if ($importer["nurl"] == normalise_link($to->id))
881 $actor = $single_conv->actor->id;
882 if (isset($single_conv->actor->url))
883 $actor = $single_conv->actor->url;
885 $contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
886 $uid, normalise_link($actor), NETWORK_STATUSNET);
888 if (count($contact)) {
889 logger("Found contact for url ".$actor, LOGGER_DEBUG);
890 $contact_id = $contact[0]["id"];
892 logger("No contact found for url ".$actor, LOGGER_DEBUG);
894 // Adding a global contact
895 /// @TODO Use this data for the post
896 $global_contact_id = get_contact($actor, 0);
898 logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
900 $contact_id = $parent["contact-id"];
904 $arr["network"] = NETWORK_OSTATUS;
905 $arr["uri"] = $single_conv->id;
906 $arr["plink"] = $plink;
908 $arr["contact-id"] = $contact_id;
909 $arr["parent-uri"] = $parent_uri;
910 $arr["created"] = $single_conv->published;
911 $arr["edited"] = $single_conv->published;
912 $arr["owner-name"] = $single_conv->actor->displayName;
913 if ($arr["owner-name"] == '')
914 $arr["owner-name"] = $single_conv->actor->contact->displayName;
915 if ($arr["owner-name"] == '')
916 $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
918 $arr["owner-link"] = $actor;
919 $arr["owner-avatar"] = $single_conv->actor->image->url;
920 $arr["author-name"] = $arr["owner-name"];
921 $arr["author-link"] = $actor;
922 $arr["author-avatar"] = $single_conv->actor->image->url;
923 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
925 if (isset($single_conv->status_net->notice_info->source))
926 $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
927 elseif (isset($single_conv->statusnet->notice_info->source))
928 $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
929 elseif (isset($single_conv->statusnet_notice_info->source))
930 $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
931 elseif (isset($single_conv->provider->displayName))
932 $arr["app"] = $single_conv->provider->displayName;
934 $arr["app"] = "OStatus";
936 //$arr["app"] .= " (Conversation)";
938 $arr["object"] = json_encode($single_conv);
939 $arr["verb"] = $parent["verb"];
940 $arr["visible"] = $parent["visible"];
941 $arr["location"] = $single_conv->location->displayName;
942 $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
944 // Is it a reshared item?
945 if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
946 if (is_array($single_conv->object))
947 $single_conv->object = $single_conv->object[0];
949 logger("Found reshared item ".$single_conv->object->id);
951 // $single_conv->object->context->conversation;
953 if (isset($single_conv->object->object->id))
954 $arr["uri"] = $single_conv->object->object->id;
956 $arr["uri"] = $single_conv->object->id;
958 if (isset($single_conv->object->object->url))
959 $plink = ostatus_convert_href($single_conv->object->object->url);
961 $plink = ostatus_convert_href($single_conv->object->url);
963 if (isset($single_conv->object->object->content))
964 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
966 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
968 $arr["plink"] = $plink;
970 $arr["created"] = $single_conv->object->published;
971 $arr["edited"] = $single_conv->object->published;
973 $arr["author-name"] = $single_conv->object->actor->displayName;
974 if ($arr["owner-name"] == '')
975 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
977 $arr["author-link"] = $single_conv->object->actor->url;
978 $arr["author-avatar"] = $single_conv->object->actor->image->url;
980 $arr["app"] = $single_conv->object->provider->displayName."#";
981 //$arr["verb"] = $single_conv->object->verb;
983 $arr["location"] = $single_conv->object->location->displayName;
984 $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
987 if ($arr["location"] == "")
988 unset($arr["location"]);
990 if ($arr["coord"] == "")
991 unset($arr["coord"]);
993 // Copy fields from given item array
994 if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] == $single_conv->id))) {
995 $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
996 "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
997 "title", "attach", "app", "type", "location", "contact-id", "uri");
998 foreach ($copy_fields AS $field)
999 if (isset($item[$field]))
1000 $arr[$field] = $item[$field];
1002 //$arr["app"] .= " (OStatus)";
1005 $newitem = item_store($arr);
1007 logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1011 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1013 $item_stored = $newitem;
1016 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1018 // Add the conversation entry (but don't fetch the whole conversation)
1019 ostatus_store_conversation($newitem, $conversation_url);
1022 $u = q("SELECT `notify-flags`, `language`, `username`, `email` FROM user WHERE uid = %d LIMIT 1", intval($uid));
1023 $r = q("SELECT `parent` FROM `item` WHERE `id` = %d", intval($newitem));
1026 'type' => NOTIFY_TAGSELF,
1027 'notify_flags' => $u[0]["notify-flags"],
1028 'language' => $u[0]["language"],
1029 'to_name' => $u[0]["username"],
1030 'to_email' => $u[0]["email"],
1033 'link' => $a->get_baseurl().'/display/'.urlencode(get_item_guid($newitem)),
1034 'source_name' => $arr["author-name"],
1035 'source_link' => $arr["author-link"],
1036 'source_photo' => $arr["author-avatar"],
1037 'verb' => ACTIVITY_TAG,
1039 'parent' => $r[0]["parent"]
1043 // If the newly created item is the top item then change the parent settings of the thread
1044 // This shouldn't happen anymore. This is supposed to be absolote.
1045 if ($arr["uri"] == $first_id) {
1046 logger('setting new parent to id '.$newitem);
1047 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1048 intval($uid), intval($newitem));
1050 $parent = $new_parents[0];
1054 if (($item_stored < 0) AND (count($item) > 0)) {
1055 //$arr["app"] .= " (OStatus-NoConvFound)";
1056 $item_stored = item_store($item, true);
1058 logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1059 ostatus_store_conversation($item_stored, $conversation_url);
1063 return($item_stored);
1066 function ostatus_store_conversation($itemid, $conversation_url) {
1069 $conversation_url = ostatus_convert_href($conversation_url);
1071 $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1074 $message = $messages[0];
1076 // Store conversation url if not done before
1077 $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1078 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1080 if (!$conversation) {
1081 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1082 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1083 dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1084 logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1088 function get_reshared_guid($item) {
1089 $body = trim($item["body"]);
1091 // Skip if it isn't a pure repeated messages
1092 // Does it start with a share?
1093 if (strpos($body, "[share") > 0)
1096 // Does it end with a share?
1097 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1100 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1101 // Skip if there is no shared message in there
1102 if ($body == $attributes)
1106 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1107 if ($matches[1] != "")
1108 $guid = $matches[1];
1110 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1111 if ($matches[1] != "")
1112 $guid = $matches[1];
1117 function xml_add_element($doc, $parent, $element, $value = "", $attributes = array()) {
1118 $element = $doc->createElement($element, xmlify($value));
1120 foreach ($attributes AS $key => $value) {
1121 $attribute = $doc->createAttribute($key);
1122 $attribute->value = xmlify($value);
1123 $element->appendChild($attribute);
1126 $parent->appendChild($element);
1129 function ostatus_format_picture_post($body) {
1130 $siteinfo = get_attached_data($body);
1132 if (($siteinfo["type"] == "photo")) {
1133 if (isset($siteinfo["preview"]))
1134 $preview = $siteinfo["preview"];
1136 $preview = $siteinfo["image"];
1138 // Is it a remote picture? Then make a smaller preview here
1139 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1141 // Is it a local picture? Then make it smaller here
1142 $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1143 $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1145 if (isset($siteinfo["url"]))
1146 $url = $siteinfo["url"];
1148 $url = $siteinfo["image"];
1150 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1156 function ostatus_add_header($doc, $owner) {
1159 $root = $doc->createElementNS(NS_ATOM, 'feed');
1160 $doc->appendChild($root);
1162 $root->setAttribute("xmlns:thr", NS_THR);
1163 $root->setAttribute("xmlns:georss", NS_GEORSS);
1164 $root->setAttribute("xmlns:activity", NS_ACTIVITY);
1165 $root->setAttribute("xmlns:media", NS_MEDIA);
1166 $root->setAttribute("xmlns:poco", NS_POCO);
1167 $root->setAttribute("xmlns:ostatus", NS_OSTATUS);
1168 $root->setAttribute("xmlns:statusnet", NS_STATUSNET);
1170 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1171 xml_add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1172 xml_add_element($doc, $root, "id", $a->get_baseurl()."/profile/".$owner["nick"]);
1173 xml_add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1174 xml_add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1175 xml_add_element($doc, $root, "logo", $owner["photo"]);
1176 xml_add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1178 $author = ostatus_add_author($doc, $owner);
1179 $root->appendChild($author);
1181 $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1182 xml_add_element($doc, $root, "link", "", $attributes);
1184 /// @TODO We have to find out what this is
1185 /// $attributes = array("href" => $a->get_baseurl()."/sup",
1186 /// "rel" => "http://api.friendfeed.com/2008/03#sup",
1187 /// "type" => "application/json");
1188 /// xml_add_element($doc, $root, "link", "", $attributes);
1190 ostatus_hublinks($doc, $root);
1192 $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1193 xml_add_element($doc, $root, "link", "", $attributes);
1195 $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies");
1196 xml_add_element($doc, $root, "link", "", $attributes);
1198 $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1199 xml_add_element($doc, $root, "link", "", $attributes);
1201 $attributes = array("href" => $a->get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1202 "rel" => "self", "type" => "application/atom+xml");
1203 xml_add_element($doc, $root, "link", "", $attributes);
1208 function ostatus_hublinks($doc, $root) {
1210 $hub = get_config('system','huburl');
1214 $hubs = explode(',', $hub);
1216 foreach($hubs as $h) {
1220 if ($h === '[internal]')
1221 $h = $a->get_baseurl() . '/pubsubhubbub';
1222 xml_add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1228 function ostatus_get_attachment($doc, $root, $item) {
1230 $siteinfo = get_attached_data($item["body"]);
1232 switch($siteinfo["type"]) {
1234 $attributes = array("rel" => "enclosure",
1235 "href" => $siteinfo["url"],
1236 "type" => "text/html; charset=UTF-8",
1238 "title" => $siteinfo["title"]);
1239 xml_add_element($doc, $root, "link", "", $attributes);
1242 $imgdata = get_photo_info($siteinfo["image"]);
1243 $attributes = array("rel" => "enclosure",
1244 "href" => $siteinfo["image"],
1245 "type" => $imgdata["mime"],
1246 "length" => intval($imgdata["size"]));
1247 xml_add_element($doc, $root, "link", "", $attributes);
1250 $attributes = array("rel" => "enclosure",
1251 "href" => $siteinfo["url"],
1252 "type" => "text/html; charset=UTF-8",
1254 "title" => $siteinfo["title"]);
1255 xml_add_element($doc, $root, "link", "", $attributes);
1261 if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1262 $photodata = get_photo_info($siteinfo["image"]);
1264 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1265 xml_add_element($doc, $root, "link", "", $attributes);
1269 $arr = explode('[/attach],',$item['attach']);
1271 foreach($arr as $r) {
1273 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1275 $attributes = array("rel" => "enclosure",
1276 "href" => $matches[1],
1277 "type" => $matches[3]);
1279 if(intval($matches[2]))
1280 $attributes["length"] = intval($matches[2]);
1282 if(trim($matches[4]) != "")
1283 $attributes["title"] = trim($matches[4]);
1285 xml_add_element($doc, $root, "link", "", $attributes);
1291 function ostatus_add_author($doc, $owner) {
1294 $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1298 $author = $doc->createElement("author");
1299 xml_add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1300 xml_add_element($doc, $author, "uri", $owner["url"]);
1301 xml_add_element($doc, $author, "name", $owner["name"]);
1303 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1304 xml_add_element($doc, $author, "link", "", $attributes);
1306 $attributes = array(
1308 "type" => "image/jpeg", // To-Do?
1309 "media:width" => 175,
1310 "media:height" => 175,
1311 "href" => $owner["photo"]);
1312 xml_add_element($doc, $author, "link", "", $attributes);
1314 if (isset($owner["thumb"])) {
1315 $attributes = array(
1317 "type" => "image/jpeg", // To-Do?
1318 "media:width" => 80,
1319 "media:height" => 80,
1320 "href" => $owner["thumb"]);
1321 xml_add_element($doc, $author, "link", "", $attributes);
1324 xml_add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1325 xml_add_element($doc, $author, "poco:displayName", $owner["name"]);
1326 xml_add_element($doc, $author, "poco:note", $owner["about"]);
1328 if (trim($owner["location"]) != "") {
1329 $element = $doc->createElement("poco:address");
1330 xml_add_element($doc, $element, "poco:formatted", $owner["location"]);
1331 $author->appendChild($element);
1334 if (trim($profile["homepage"]) != "") {
1335 $urls = $doc->createElement("poco:urls");
1336 xml_add_element($doc, $urls, "poco:type", "homepage");
1337 xml_add_element($doc, $urls, "poco:value", $profile["homepage"]);
1338 xml_add_element($doc, $urls, "poco:primary", "true");
1339 $author->appendChild($urls);
1342 if (count($profile)) {
1343 xml_add_element($doc, $author, "followers", "", array("url" => $a->get_baseurl()."/viewcontacts/".$owner["nick"]));
1344 xml_add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1351 * @TODO Picture attachments should look like this:
1352 * <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1353 * class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1357 function ostatus_entry($doc, $item, $owner, $toplevel = false, $repeat = false) {
1363 $repeated_guid = get_reshared_guid($item);
1365 if ($repeated_guid != "") {
1366 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1367 intval($owner["uid"]), dbesc($repeated_guid));
1369 $repeated_item = $r[0];
1375 if (!$toplevel AND !$repeat) {
1376 $entry = $doc->createElement("entry");
1377 $title = sprintf("New note by %s", $owner["nick"]);
1378 } elseif (!$toplevel AND $repeat) {
1379 $entry = $doc->createElement("activity:object");
1380 $title = sprintf("New note by %s", $owner["nick"]);
1382 $entry = $doc->createElementNS(NS_ATOM, "entry");
1384 $entry->setAttribute("xmlns:thr", NS_THR);
1385 $entry->setAttribute("xmlns:georss", NS_GEORSS);
1386 $entry->setAttribute("xmlns:activity", NS_ACTIVITY);
1387 $entry->setAttribute("xmlns:media", NS_MEDIA);
1388 $entry->setAttribute("xmlns:poco", NS_POCO);
1389 $entry->setAttribute("xmlns:ostatus", NS_OSTATUS);
1390 $entry->setAttribute("xmlns:statusnet", NS_STATUSNET);
1392 $author = ostatus_add_author($doc, $owner);
1393 $entry->appendChild($author);
1395 $title = sprintf("New comment by %s", $owner["nick"]);
1398 // To use the object-type "bookmark" we have to implement these elements:
1400 // <activity:object-type>http://activitystrea.ms/schema/1.0/bookmark</activity:object-type>
1401 // <title>Historic Rocket Landing</title>
1402 // <summary>Nur ein Testbeitrag.</summary>
1403 // <link rel="related" href="https://www.youtube.com/watch?v=9pillaOxGCo"/>
1404 // <link rel="preview" href="https://pirati.cc/file/thumb-4526-450x338-b48c8055f0c2fed0c3f67adc234c4b99484a90c42ed3cac73dc1081a4d0a7bc1.jpg.jpg" media:width="450" media:height="338"/>
1406 // But: it seems as if it doesn't federate well between the GS servers
1407 // So we just set it to "note" to be sure that it reaches their target systems
1410 xml_add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1412 xml_add_element($doc, $entry, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA.'activity');
1414 xml_add_element($doc, $entry, "id", $item["uri"]);
1415 xml_add_element($doc, $entry, "title", $title);
1417 if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
1418 $body = fix_private_photos($item['body'],$owner['uid'],$item, 0);
1420 $body = $item['body'];
1422 $body = ostatus_format_picture_post($body);
1424 if ($item['title'] != "")
1425 $body = "[b]".$item['title']."[/b]\n\n".$body;
1427 //$body = bb_remove_share_information($body);
1428 $body = bbcode($body, false, false, 7);
1430 xml_add_element($doc, $entry, "content", $body, array("type" => "html"));
1432 xml_add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1433 "href" => $a->get_baseurl()."/display/".$item["guid"]));
1435 xml_add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1438 xml_add_element($doc, $entry, "activity:verb", construct_verb($item));
1440 xml_add_element($doc, $entry, "activity:verb", ACTIVITY_SHARE);
1442 xml_add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
1443 xml_add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
1446 $repeated_owner = array();
1447 $repeated_owner["name"] = $repeated_item["author-name"];
1448 $repeated_owner["url"] = $repeated_item["author-link"];
1449 $repeated_owner["photo"] = $repeated_item["author-avatar"];
1450 $repeated_owner["nick"] = $repeated_owner["name"];
1451 $repeated_owner["location"] = "";
1452 $repeated_owner["about"] = "";
1453 $repeated_owner["uid"] = 0;
1455 // Fetch the missing data from the global contacts
1456 $r =q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($repeated_item["author-link"]));
1458 if ($r[0]["nick"] != "")
1459 $repeated_owner["nick"] = $r[0]["nick"];
1461 $repeated_owner["location"] = $r[0]["location"];
1462 $repeated_owner["about"] = $r[0]["about"];
1465 $entry_repeat = ostatus_entry($doc, $repeated_item, $repeated_owner, false, true);
1466 $entry->appendChild($entry_repeat);
1467 } elseif ($repeat) {
1468 $author = ostatus_add_author($doc, $owner);
1469 $entry->appendChild($author);
1472 $mentioned = array();
1474 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
1475 $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
1476 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1478 $attributes = array(
1479 "ref" => $parent_item,
1480 "type" => "text/html",
1481 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1482 xml_add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
1484 $attributes = array(
1486 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1487 xml_add_element($doc, $entry, "link", "", $attributes);
1489 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1490 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1492 $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
1493 intval($owner["uid"]),
1494 dbesc($parent_item));
1496 $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1497 $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1501 xml_add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation",
1502 "href" => $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]));
1503 xml_add_element($doc, $entry, "ostatus:conversation", $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]);
1505 $tags = item_getfeedtags($item);
1508 foreach($tags as $t)
1510 $mentioned[$t[1]] = $t[1];
1512 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
1513 $newmentions = array();
1514 foreach ($mentioned AS $mention) {
1515 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
1516 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
1518 $mentioned = $newmentions;
1520 foreach ($mentioned AS $mention) {
1521 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1522 intval($owner["uid"]),
1523 dbesc(normalise_link($mention)));
1524 if ($r[0]["forum"] OR $r[0]["prv"])
1525 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1526 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1527 "href" => $mention));
1529 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1530 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1531 "href" => $mention));
1534 if (!$item["private"])
1535 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1536 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
1537 "href" => "http://activityschema.org/collection/public"));
1540 foreach($tags as $t)
1542 xml_add_element($doc, $entry, "category", "", array("term" => $t[2]));
1544 ostatus_get_attachment($doc, $entry, $item);
1547 /// The API call has yet to be implemented
1548 //$attributes = array("href" => $a->get_baseurl()."/api/statuses/show/".$item["id"].".atom",
1549 // "rel" => "self", "type" => "application/atom+xml");
1550 //xml_add_element($doc, $entry, "link", "", $attributes);
1552 //$attributes = array("href" => $a->get_baseurl()."/api/statuses/show/".$item["id"].".atom",
1553 // "rel" => "edit", "type" => "application/atom+xml");
1554 //xml_add_element($doc, $entry, "link", "", $attributes);
1556 $app = $item["app"];
1561 $attributes = array("local_id" => $item["id"], "source" => $app);
1563 $attributes["repeat_of"] = $repeated_item["id"];
1565 xml_add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
1570 function ostatus_feed(&$a, $owner_nick, $last_update) {
1572 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
1573 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
1574 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
1575 dbesc($owner_nick));
1581 if(!strlen($last_update))
1582 $last_update = 'now -30 days';
1584 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
1586 $items = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id` FROM `item`
1587 INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`
1588 LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
1589 WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
1590 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
1591 AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
1592 OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
1593 AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
1594 OR (`item`.`author-link` IN ('%s', '%s')))
1595 ORDER BY `item`.`received` DESC
1597 intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
1598 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1599 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1600 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1601 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1602 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
1603 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
1606 $doc = new DOMDocument('1.0', 'utf-8');
1607 $doc->formatOutput = true;
1609 $root = ostatus_add_header($doc, $owner);
1611 foreach ($items AS $item) {
1612 $entry = ostatus_entry($doc, $item, $owner);
1613 $root->appendChild($entry);
1616 return(trim($doc->saveXML()));
1619 function ostatus_salmon($item,$owner) {
1621 $doc = new DOMDocument('1.0', 'utf-8');
1622 $doc->formatOutput = true;
1624 $entry = ostatus_entry($doc, $item, $owner, true);
1626 $doc->appendChild($entry);
1628 return(trim($doc->saveXML()));