]> git.mxchange.org Git - friendica.git/blob - include/ostatus.php
OStatus: The gcontact table will now be updated from the conversation as well
[friendica.git] / include / ostatus.php
1 <?php
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");
15
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
19
20 function ostatus_check_follow_friends() {
21         $r = q("SELECT `uid`,`v` FROM `pconfig` WHERE `cat`='system' AND `k`='ostatus_legacy_contact' AND `v` != ''");
22
23         if (!$r)
24                 return;
25
26         foreach ($r AS $contact) {
27                 ostatus_follow_friends($contact["uid"], $contact["v"]);
28                 set_pconfig($contact["uid"], "system", "ostatus_legacy_contact", "");
29         }
30 }
31
32 // This function doesn't work reliable by now.
33 function ostatus_follow_friends($uid, $url) {
34         $contact = probe_url($url);
35
36         if (!$contact)
37                 return;
38
39         $api = $contact["baseurl"]."/api/";
40
41         // Fetching friends
42         $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]);
43
44         if (!$data["success"])
45                 return;
46
47         $friends = json_decode($data["body"]);
48
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));
56                 if (!$r) {
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);
62                                 else
63                                         logger($friend->name." ".$url." - failed", LOGGER_DEBUG);
64                         } else
65                                 logger($friend->name." ".$url." - not OStatus", LOGGER_DEBUG);
66                 }
67         }
68 }
69
70 function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
71
72         $author = array();
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;
75
76         // Preserve the value
77         $authorlink = $author["author-link"];
78
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;
84
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));
88         if ($r) {
89                 $contact = $r[0];
90                 $author["contact-id"] = $r[0]["id"];
91         } else
92                 $author["contact-id"] = $contact["id"];
93
94         $avatarlist = array();
95         $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
96         foreach($avatars AS $avatar) {
97                 $href = "";
98                 $width = 0;
99                 foreach($avatar->attributes AS $attributes) {
100                         if ($attributes->name == "href")
101                                 $href = $attributes->textContent;
102                         if ($attributes->name == "width")
103                                 $width = $attributes->textContent;
104                 }
105                 if (($width > 0) AND ($href != ""))
106                         $avatarlist[$width] = $href;
107         }
108         if (count($avatarlist) > 0) {
109                 krsort($avatarlist);
110                 $author["author-avatar"] = current($avatarlist);
111         }
112
113         $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
114         if ($displayname != "")
115                 $author["author-name"] = $displayname;
116
117         $author["owner-name"] = $author["author-name"];
118         $author["owner-link"] = $author["author-link"];
119         $author["owner-avatar"] = $author["author-avatar"];
120
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
124
125                 $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
126                 if ($value != "")
127                         $contact["notify"] = $value;
128
129                 $value = $xpath->evaluate('atom:author/uri/text()', $context)->item(0)->nodeValue;
130                 if ($value != "")
131                         $contact["alias"] = $value;
132
133                 $value = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
134                 if ($value != "")
135                         $contact["name"] = $value;
136
137                 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
138                 if ($value != "")
139                         $contact["nick"] = $value;
140
141                 $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue;
142                 if ($value != "")
143                         $contact["about"] = html2bbcode($value);
144
145                 $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
146                 if ($value != "")
147                         $contact["location"] = $value;
148
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"])) {
150
151                         logger("Update contact data for contact ".$contact["id"], LOGGER_DEBUG);
152
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"]));
156
157                         poco_check($contact["url"], $contact["name"], $contact["network"], $author["author-avatar"], $contact["about"], $contact["location"],
158                                                 "", "", "", datetime_convert(), 2, $contact["id"], $contact["uid"]);
159                 }
160
161                 if (isset($author["author-avatar"]) AND ($author["author-avatar"] != $r[0]['avatar'])) {
162                         logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
163
164                         update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
165                 }
166
167
168                 /// @todo Add the "addr" field
169                 $contact["generation"] = 2;
170                 $contact["photo"] = $author["author-avatar"];
171                 update_gcontact($contact);
172         }
173
174         return($author);
175 }
176
177 function ostatus_salmon_author($xml, $importer) {
178         $a = get_app();
179
180         if ($xml == "")
181                 return;
182
183         $doc = new DOMDocument();
184         @$doc->loadXML($xml);
185
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);
195
196         $entries = $xpath->query('/atom:entry');
197
198         foreach ($entries AS $entry) {
199                 // fetch the author
200                 $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true);
201                 return $author;
202         }
203 }
204
205 function ostatus_import($xml,$importer,&$contact, &$hub) {
206
207         $a = get_app();
208
209         logger("Import OStatus message", LOGGER_DEBUG);
210
211         if ($xml == "")
212                 return;
213
214         $doc = new DOMDocument();
215         @$doc->loadXML($xml);
216
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);
226
227         $gub = "";
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);
234                         }
235
236         $header = array();
237         $header["uid"] = $importer["uid"];
238         $header["network"] = NETWORK_OSTATUS;
239         $header["type"] = "remote";
240         $header["wall"] = 0;
241         $header["origin"] = 0;
242         $header["gravity"] = GRAVITY_PARENT;
243
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;
247
248         if ($first_child == "feed")
249                 $entries = $xpath->query('/atom:feed/atom:entry');
250         else
251                 $entries = $xpath->query('/atom:entry');
252
253         $conversation = "";
254         $conversationlist = array();
255         $item_id = 0;
256
257         // Reverse the order of the entries
258         $entrylist = array();
259
260         foreach ($entries AS $entry)
261                 $entrylist[] = $entry;
262
263         foreach (array_reverse($entrylist) AS $entry) {
264
265                 $mention = false;
266
267                 // fetch the author
268                 if ($first_child == "feed")
269                         $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
270                 else
271                         $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false);
272
273                 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
274                 if ($value != "")
275                         $nickname = $value;
276                 else
277                         $nickname = $author["author-name"];
278
279                 $item = array_merge($header, $author);
280
281                 // Now get the item
282                 $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
283
284                 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
285                         intval($importer["uid"]), dbesc($item["uri"]));
286                 if ($r) {
287                         logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
288                         continue;
289                 }
290
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;
293
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;
299
300                 $item["object"] = $xml;
301                 $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
302
303                 /// @TODO
304                 /// Delete a message
305                 if ($item["verb"] == "qvitter-delete-notice") {
306                         // ignore "Delete" messages (by now)
307                         logger("Ignore delete message ".print_r($item, true));
308                         continue;
309                 }
310
311                 if ($item["verb"] == ACTIVITY_JOIN) {
312                         // ignore "Join" messages
313                         logger("Ignore join message ".print_r($item, true));
314                         continue;
315                 }
316
317                 if ($item["verb"] == ACTIVITY_FOLLOW) {
318                         new_follower($importer, $contact, $item, $nickname);
319                         continue;
320                 }
321
322                 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
323                         lose_follower($importer, $contact, $item, $dummy);
324                         continue;
325                 }
326
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));
330
331                         $item["verb"] = ACTIVITY_LIKE;
332                         $item["parent-uri"] = $orig_uri;
333                         $item["gravity"] = GRAVITY_LIKE;
334                 }
335
336                 if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
337                         // Ignore "Unfavorite" message
338                         logger("Ignore unfavorite message ".print_r($item, true));
339                         continue;
340                 }
341
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));
345
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;
349
350                 $related = "";
351
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;
359                         }
360                 }
361
362                 $georsspoint = $xpath->query('georss:point', $entry);
363                 if ($georsspoint)
364                         $item["coord"] = $georsspoint->item(0)->nodeValue;
365
366                 /// @TODO
367                 /// $item["location"] =
368
369                 $categories = $xpath->query('atom:category', $entry);
370                 if ($categories) {
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"]))
376                                                         $item["tag"] .= ',';
377                                                 $item["tag"] .= "#[url=".$a->get_baseurl()."/search?tag=".$term."]".$term."[/url]";
378                                         }
379                         }
380                 }
381
382                 $self = "";
383                 $enclosure = "";
384
385                 $links = $xpath->query('atom:link', $entry);
386                 if ($links) {
387                         $rel = "";
388                         $href = "";
389                         $type = "";
390                         $length = "0";
391                         $title = "";
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;
404                                 }
405                                 if (($rel != "") AND ($href != ""))
406                                         switch($rel) {
407                                                 case "alternate":
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);
412                                                         break;
413                                                 case "ostatus:conversation":
414                                                         $conversation = $href;
415                                                         break;
416                                                 case "enclosure":
417                                                         $enclosure = $href;
418                                                         if(strlen($item["attach"]))
419                                                                 $item["attach"] .= ',';
420
421                                                         $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
422                                                         break;
423                                                 case "related":
424                                                         if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
425                                                                 if (!isset($item["parent-uri"]))
426                                                                         $item["parent-uri"] = $href;
427
428                                                                 if ($related == "")
429                                                                         $related = $href;
430                                                         } else
431                                                                 $item["body"] .= add_page_info($href);
432                                                         break;
433                                                 case "self":
434                                                         $self = $href;
435                                                         break;
436                                                 case "mentioned":
437                                                         // Notification check
438                                                         if ($importer["nurl"] == normalise_link($href))
439                                                                 $mention = true;
440                                                         break;
441                                         }
442                         }
443                 }
444
445                 $local_id = "";
446                 $repeat_of = "";
447
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;
457                         }
458                 }
459
460                 // Is it a repeated post?
461                 if ($repeat_of != "") {
462                         $activityobjects = $xpath->query('activity:object', $entry)->item(0);
463
464                         if (is_object($activityobjects)) {
465
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;
469
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;
475
476                                 if (!isset($orig_link))
477                                         $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
478
479                                 if (!isset($orig_link))
480                                         $orig_link =  ostatus_convert_href($orig_uri);
481
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;
485
486                                 $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
487
488                                 $orig_contact = $contact;
489                                 $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
490
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]";
494                                 //} else {
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;
500
501                                         $item["uri"] = $orig_uri;
502                                         $item["plink"] = $orig_link;
503                                 //}
504
505                                 $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
506
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;
510                         }
511                 }
512
513                 //if ($enclosure != "")
514                 //      $item["body"] .= add_page_info($enclosure);
515
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"]));
519
520                         if (!$r AND ($related != "")) {
521                                 $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
522
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);
526
527                                         $reply_contact = $contact;
528                                         ostatus_import($reply_xml,$importer,$reply_contact, $reply_hub);
529
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"]));
533                                 }
534                         }
535                         if ($r) {
536                                 $item["type"] = 'remote-comment';
537                                 $item["gravity"] = GRAVITY_COMMENT;
538                         }
539                 } else
540                         $item["parent-uri"] = $item["uri"];
541
542                 $item_id = ostatus_completion($conversation, $importer["uid"], $item);
543
544                 if (!$item_id) {
545                         logger("Error storing item", LOGGER_DEBUG);
546                         continue;
547                 }
548
549                 logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
550         }
551 }
552
553 function ostatus_convert_href($href) {
554         $elements = explode(":",$href);
555
556         if ((count($elements) <= 2) OR ($elements[0] != "tag"))
557                 return $href;
558
559         $server = explode(",", $elements[1]);
560         $conversation = explode("=", $elements[2]);
561
562         if ((count($elements) == 4) AND ($elements[2] == "post"))
563                 return "http://".$server[0]."/notice/".$elements[3];
564
565         if ((count($conversation) != 2) OR ($conversation[1] ==""))
566                 return $href;
567
568         if ($elements[3] == "objectType=thread")
569                 return "http://".$server[0]."/conversation/".$conversation[1];
570         else
571                 return "http://".$server[0]."/notice/".$conversation[1];
572
573         return $href;
574 }
575
576 function check_conversations($mentions = false, $override = false) {
577         $last = get_config('system','ostatus_last_poll');
578
579         $poll_interval = intval(get_config('system','ostatus_poll_interval'));
580         if(! $poll_interval)
581                 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
582
583         // Don't poll if the interval is set negative
584         if (($poll_interval < 0) AND !$override)
585                 return;
586
587         if (!$mentions) {
588                 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
589                 if (!$poll_timeframe)
590                         $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
591         } else {
592                 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
593                 if (!$poll_timeframe)
594                         $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
595         }
596
597
598         if ($last AND !$override) {
599                 $next = $last + ($poll_interval * 60);
600                 if ($next > time()) {
601                         logger('poll interval not reached');
602                         return;
603                 }
604         }
605
606         logger('cron_start');
607
608         $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
609
610         if ($mentions)
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));
615         else
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));
619
620         foreach ($conversations AS $conversation) {
621                 ostatus_completion($conversation['url'], $conversation['uid']);
622         }
623
624         logger('cron_end');
625
626         set_config('system','ostatus_last_poll', time());
627 }
628
629 /**
630  * @brief Updates the gcontact table with actor data from the conversation
631  *
632  * @param object $actor The actor object that contains the contact data
633  */
634 function ostatus_conv_fetch_actor($actor) {
635
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);
638
639         if (isset($actor->url))
640                 $contact["url"] = $actor->url;
641
642         if (isset($actor->displayName))
643                 $contact["name"] = $actor->displayName;
644
645         if (isset($actor->portablecontacts_net->displayName))
646                 $contact["name"] = $actor->portablecontacts_net->displayName;
647
648         if (isset($actor->portablecontacts_net->preferredUsername))
649                 $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
650
651         if (isset($actor->id))
652                 $contact["alias"] = $actor->id;
653
654         if (isset($actor->summary))
655                 $contact["about"] = $actor->summary;
656
657         if (isset($actor->portablecontacts_net->note))
658                 $contact["about"] = $actor->portablecontacts_net->note;
659
660         if (isset($actor->portablecontacts_net->addresses->formatted))
661                 $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
662
663
664         if (isset($actor->image->url))
665                 $contact["photo"] = $actor->image->url;
666
667         if (isset($actor->image->width))
668                 $avatarwidth = $actor->image->width;
669
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;
675                         }
676                 }
677
678         $contact["server_url"] = $contact["url"];
679
680         $server_url = matching($contact["server_url"], $contact["alias"]);
681         if (strlen($server_url) > 8)
682                 $contact["server_url"] = $server_url;
683
684         $server_url = matching($contact["server_url"], $contact["photo"]);
685         if (strlen($server_url) > 8)
686                 $contact["server_url"] = $server_url;
687
688         if (($contact["server_url"] == $contact["url"]) OR ($contact["server_url"] == $contact["alias"]))
689                 unset($contact["server_url"]);
690         else {
691                 $hostname = str_replace("http://", "", normalise_link($contact["server_url"]));
692                 if ($hostname AND $contact["nick"])
693                         $contact["addr"] = $contact["nick"]."@".$hostname;
694         }
695
696         update_gcontact($contact);
697 }
698
699
700 function ostatus_completion($conversation_url, $uid, $item = array()) {
701
702         $a = get_app();
703
704         $item_stored = -1;
705
706         $conversation_url = ostatus_convert_href($conversation_url);
707
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);
713         }
714
715         // Get the parent
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));
720
721         if ($parents)
722                 $parent = $parents[0];
723         elseif (count($item) > 0) {
724                 $parent = $item;
725                 $parent["type"] = "remote";
726                 $parent["verb"] = ACTIVITY_POST;
727                 $parent["visible"] = 1;
728         } else {
729                 // Preset the parent
730                 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
731                 if (!$r)
732                         return(-2);
733
734                 $parent = array();
735                 $parent["id"] = 0;
736                 $parent["parent"] = 0;
737                 $parent["uri"] = "";
738                 $parent["contact-id"] = $r[0]["id"];
739                 $parent["type"] = "remote";
740                 $parent["verb"] = ACTIVITY_POST;
741                 $parent["visible"] = 1;
742         }
743
744         $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
745         $pageno = 1;
746         $items = array();
747
748         logger('fetching conversation url '.$conv.' for user '.$uid);
749
750         do {
751                 $conv_arr = z_fetch_url($conv."?page=".$pageno);
752
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);
760                 } else
761                         $conv_as = $conv_arr["body"];
762
763                 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
764                 $conv_as = json_decode($conv_as);
765
766                 $no_of_items = sizeof($items);
767
768                 if (@is_array($conv_as->items))
769                         foreach ($conv_as->items AS $single_item)
770                                 $items[$single_item->id] = $single_item;
771
772                 if ($no_of_items == sizeof($items))
773                         break;
774
775                 $pageno++;
776
777         } while (true);
778
779         logger('fetching conversation done. Found '.count($items).' items');
780
781         if (!sizeof($items)) {
782                 if (count($item) > 0) {
783                         //$arr["app"] .= " (OStatus-NoConvFetched)";
784                         $item_stored = item_store($item, true);
785
786                         if ($item_stored) {
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);
789                         }
790
791                         return($item_stored);
792                 } else
793                         return(-3);
794         }
795
796         $items = array_reverse($items);
797
798         $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
799         $importer = $r[0];
800
801         foreach ($items as $single_conv) {
802
803                 // Update the gcontact table
804                 ostatus_conv_fetch_actor($single_conv->actor);
805
806                 // Test - remove before flight
807                 //$tempfile = tempnam(get_temppath(), "conversation");
808                 //file_put_contents($tempfile, json_encode($single_conv));
809
810                 $mention = false;
811
812                 if (isset($single_conv->object->id))
813                         $single_conv->id = $single_conv->object->id;
814
815                 $plink = ostatus_convert_href($single_conv->id);
816                 if (isset($single_conv->object->url))
817                         $plink = ostatus_convert_href($single_conv->object->url);
818
819                 if (@!$single_conv->id)
820                         continue;
821
822                 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
823
824                 if ($first_id == "") {
825                         $first_id = $single_conv->id;
826
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));
836                                 if ($new_parents) {
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"];
841                                         } else {
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);
847                                         }
848                                 } else {
849                                         // Option 1: We hadn't got the real thread starter
850                                         // We have to clean up our existing messages.
851                                         $parent["id"] = 0;
852                                         $parent["uri"] = $first_id;
853                                         logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
854                                 }
855                         } elseif ($parent["uri"] == "") {
856                                 $parent["id"] = 0;
857                                 $parent["uri"] = $first_id;
858                         }
859                 }
860
861                 $parent_uri = $parent["uri"];
862
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));
867                         if ($parent_exists)
868                                 $parent_uri = $single_conv->context->inReplyTo->id;
869                 }
870
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));
875                         if ($parent_exists)
876                                 $parent_uri = $single_conv->object->inReplyTo->id;
877                 }
878
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);
884
885                         if ($parent["id"] != 0) {
886                                 $existing_message = $message_exists[0];
887
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);
892
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"]));
896
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"]));
900
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"]));
904
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"]));
908
909                                         // Now delete the thread
910                                         delete_thread($existing_message["parent"]);
911                                 }
912                         }
913
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"])) {
916                                 $item = array();
917                                 $item_stored = 0;
918                         }
919
920                         continue;
921                 }
922
923                 if (is_array($single_conv->to))
924                         foreach($single_conv->to AS $to)
925                                 if ($importer["nurl"] == normalise_link($to->id))
926                                         $mention = true;
927
928                 $actor = $single_conv->actor->id;
929                 if (isset($single_conv->actor->url))
930                         $actor = $single_conv->actor->url;
931
932                 $contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
933                                 $uid, normalise_link($actor), NETWORK_STATUSNET);
934
935                 if (count($contact)) {
936                         logger("Found contact for url ".$actor, LOGGER_DEBUG);
937                         $contact_id = $contact[0]["id"];
938                 } else {
939                         logger("No contact found for url ".$actor, LOGGER_DEBUG);
940
941                         // Adding a global contact
942                         /// @TODO Use this data for the post
943                         $global_contact_id = get_contact($actor, 0);
944
945                         logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
946
947                         $contact_id = $parent["contact-id"];
948                 }
949
950                 $arr = array();
951                 $arr["network"] = NETWORK_OSTATUS;
952                 $arr["uri"] = $single_conv->id;
953                 $arr["plink"] = $plink;
954                 $arr["uid"] = $uid;
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;
964
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));
971
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;
980                 else
981                         $arr["app"] = "OStatus";
982
983                 //$arr["app"] .= " (Conversation)";
984
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);
990
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];
995
996                         logger("Found reshared item ".$single_conv->object->id);
997
998                         // $single_conv->object->context->conversation;
999
1000                         if (isset($single_conv->object->object->id))
1001                                 $arr["uri"] = $single_conv->object->object->id;
1002                         else
1003                                 $arr["uri"] = $single_conv->object->id;
1004
1005                         if (isset($single_conv->object->object->url))
1006                                 $plink = ostatus_convert_href($single_conv->object->object->url);
1007                         else
1008                                 $plink = ostatus_convert_href($single_conv->object->url);
1009
1010                         if (isset($single_conv->object->object->content))
1011                                 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1012                         else
1013                                 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1014
1015                         $arr["plink"] = $plink;
1016
1017                         $arr["created"] = $single_conv->object->published;
1018                         $arr["edited"] = $single_conv->object->published;
1019
1020                         $arr["author-name"] = $single_conv->object->actor->displayName;
1021                         if ($arr["owner-name"] == '')
1022                                 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1023
1024                         $arr["author-link"] = $single_conv->object->actor->url;
1025                         $arr["author-avatar"] = $single_conv->object->actor->image->url;
1026
1027                         $arr["app"] = $single_conv->object->provider->displayName."#";
1028                         //$arr["verb"] = $single_conv->object->verb;
1029
1030                         $arr["location"] = $single_conv->object->location->displayName;
1031                         $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1032                 }
1033
1034                 if ($arr["location"] == "")
1035                         unset($arr["location"]);
1036
1037                 if ($arr["coord"] == "")
1038                         unset($arr["coord"]);
1039
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];
1048
1049                         //$arr["app"] .= " (OStatus)";
1050                 }
1051
1052                 $newitem = item_store($arr);
1053                 if (!$newitem) {
1054                         logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1055                         continue;
1056                 }
1057
1058                 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1059                         $item = array();
1060                         $item_stored = $newitem;
1061                 }
1062
1063                 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1064
1065                 // Add the conversation entry (but don't fetch the whole conversation)
1066                 ostatus_store_conversation($newitem, $conversation_url);
1067
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));
1074                         if ($new_parents)
1075                                 $parent = $new_parents[0];
1076                 }
1077         }
1078
1079         if (($item_stored < 0) AND (count($item) > 0)) {
1080                 //$arr["app"] .= " (OStatus-NoConvFound)";
1081                 $item_stored = item_store($item, true);
1082                 if ($item_stored) {
1083                         logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1084                         ostatus_store_conversation($item_stored, $conversation_url);
1085                 }
1086         }
1087
1088         return($item_stored);
1089 }
1090
1091 function ostatus_store_conversation($itemid, $conversation_url) {
1092         global $a;
1093
1094         $conversation_url = ostatus_convert_href($conversation_url);
1095
1096         $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1097         if (!$messages)
1098                 return;
1099         $message = $messages[0];
1100
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));
1104
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);
1110         }
1111 }
1112
1113 function get_reshared_guid($item) {
1114         $body = trim($item["body"]);
1115
1116         // Skip if it isn't a pure repeated messages
1117         // Does it start with a share?
1118         if (strpos($body, "[share") > 0)
1119                 return("");
1120
1121         // Does it end with a share?
1122         if (strlen($body) > (strrpos($body, "[/share]") + 8))
1123                 return("");
1124
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)
1128                 return(false);
1129
1130         $guid = "";
1131         preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1132         if ($matches[1] != "")
1133                 $guid = $matches[1];
1134
1135         preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1136         if ($matches[1] != "")
1137                 $guid = $matches[1];
1138
1139         return $guid;
1140 }
1141
1142 function xml_create_element($doc, $element, $value = "", $attributes = array()) {
1143         $element = $doc->createElement($element, xmlify($value));
1144
1145         foreach ($attributes AS $key => $value) {
1146                 $attribute = $doc->createAttribute($key);
1147                 $attribute->value = xmlify($value);
1148                 $element->appendChild($attribute);
1149         }
1150         return $element;
1151 }
1152
1153 function xml_add_element($doc, $parent, $element, $value = "", $attributes = array()) {
1154         $element = xml_create_element($doc, $element, $value, $attributes);
1155         $parent->appendChild($element);
1156 }
1157
1158 function ostatus_format_picture_post($body) {
1159         $siteinfo = get_attached_data($body);
1160
1161         if (($siteinfo["type"] == "photo")) {
1162                 if (isset($siteinfo["preview"]))
1163                         $preview = $siteinfo["preview"];
1164                 else
1165                         $preview = $siteinfo["image"];
1166
1167                 // Is it a remote picture? Then make a smaller preview here
1168                 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1169
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);
1173
1174                 if (isset($siteinfo["url"]))
1175                         $url = $siteinfo["url"];
1176                 else
1177                         $url = $siteinfo["image"];
1178
1179                 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1180         }
1181
1182         return $body;
1183 }
1184
1185 function ostatus_add_header($doc, $owner) {
1186         $a = get_app();
1187
1188         $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1189         $doc->appendChild($root);
1190
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);
1198
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));
1206
1207         $author = ostatus_add_author($doc, $owner);
1208         $root->appendChild($author);
1209
1210         $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1211         xml_add_element($doc, $root, "link", "", $attributes);
1212
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);
1218
1219         ostatus_hublinks($doc, $root);
1220
1221         $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1222         xml_add_element($doc, $root, "link", "", $attributes);
1223
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);
1226
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);
1229
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);
1233
1234         return $root;
1235 }
1236
1237 function ostatus_hublinks($doc, $root) {
1238         $a = get_app();
1239         $hub = get_config('system','huburl');
1240
1241         $hubxml = '';
1242         if(strlen($hub)) {
1243                 $hubs = explode(',', $hub);
1244                 if(count($hubs)) {
1245                         foreach($hubs as $h) {
1246                                 $h = trim($h);
1247                                 if(! strlen($h))
1248                                         continue;
1249                                 if ($h === '[internal]')
1250                                         $h = $a->get_baseurl() . '/pubsubhubbub';
1251                                 xml_add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1252                         }
1253                 }
1254         }
1255 }
1256
1257 function ostatus_get_attachment($doc, $root, $item) {
1258         $o = "";
1259         $siteinfo = get_attached_data($item["body"]);
1260
1261         switch($siteinfo["type"]) {
1262                 case 'link':
1263                         $attributes = array("rel" => "enclosure",
1264                                         "href" => $siteinfo["url"],
1265                                         "type" => "text/html; charset=UTF-8",
1266                                         "length" => "",
1267                                         "title" => $siteinfo["title"]);
1268                         xml_add_element($doc, $root, "link", "", $attributes);
1269                         break;
1270                 case 'photo':
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);
1277                         break;
1278                 case 'video':
1279                         $attributes = array("rel" => "enclosure",
1280                                         "href" => $siteinfo["url"],
1281                                         "type" => "text/html; charset=UTF-8",
1282                                         "length" => "",
1283                                         "title" => $siteinfo["title"]);
1284                         xml_add_element($doc, $root, "link", "", $attributes);
1285                         break;
1286                 default:
1287                         break;
1288         }
1289
1290         if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1291                 $photodata = get_photo_info($siteinfo["image"]);
1292
1293                 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1294                 xml_add_element($doc, $root, "link", "", $attributes);
1295         }
1296
1297
1298         $arr = explode('[/attach],',$item['attach']);
1299         if(count($arr)) {
1300                 foreach($arr as $r) {
1301                         $matches = false;
1302                         $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1303                         if($cnt) {
1304                                 $attributes = array("rel" => "enclosure",
1305                                                 "href" => $matches[1],
1306                                                 "type" => $matches[3]);
1307
1308                                 if(intval($matches[2]))
1309                                         $attributes["length"] = intval($matches[2]);
1310
1311                                 if(trim($matches[4]) != "")
1312                                         $attributes["title"] = trim($matches[4]);
1313
1314                                 xml_add_element($doc, $root, "link", "", $attributes);
1315                         }
1316                 }
1317         }
1318 }
1319
1320 function ostatus_add_author($doc, $owner) {
1321         $a = get_app();
1322
1323         $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1324         if ($r)
1325                 $profile = $r[0];
1326
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"]);
1331
1332         $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1333         xml_add_element($doc, $author, "link", "", $attributes);
1334
1335         $attributes = array(
1336                         "rel" => "avatar",
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);
1342
1343         if (isset($owner["thumb"])) {
1344                 $attributes = array(
1345                                 "rel" => "avatar",
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);
1351         }
1352
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"]);
1356
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);
1361         }
1362
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);
1369         }
1370
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"]));
1374         }
1375
1376         return $author;
1377 }
1378
1379 /** 
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>
1383  * 
1384 */
1385
1386 function ostatus_entry($doc, $item, $owner, $toplevel = false, $repeat = false) {
1387         $a = get_app();
1388
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);
1391         }
1392
1393         $is_repeat = false;
1394
1395 /*      if (!$repeat) {
1396                 $repeated_guid = get_reshared_guid($item);
1397
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));
1401                         if ($r) {
1402                                 $repeated_item = $r[0];
1403                                 $is_repeat = true;
1404                         }
1405                 }
1406         }
1407 */
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"]);
1414         } else {
1415                 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1416
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);
1424
1425                 $author = ostatus_add_author($doc, $owner);
1426                 $entry->appendChild($author);
1427
1428                 $title = sprintf("New comment by %s", $owner["nick"]);
1429         }
1430
1431         // To use the object-type "bookmark" we have to implement these elements:
1432         //
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"/>
1438         //
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
1441
1442         if (!$repeat)
1443                 xml_add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1444         else
1445                 xml_add_element($doc, $entry, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA.'activity');
1446
1447         xml_add_element($doc, $entry, "id", $item["uri"]);
1448         xml_add_element($doc, $entry, "title", $title);
1449
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);
1452         else
1453                 $body = $item['body'];
1454
1455         $body = ostatus_format_picture_post($body);
1456
1457         if ($item['title'] != "")
1458                 $body = "[b]".$item['title']."[/b]\n\n".$body;
1459
1460         //$body = bb_remove_share_information($body);
1461         $body = bbcode($body, false, false, 7);
1462
1463         xml_add_element($doc, $entry, "content", $body, array("type" => "html"));
1464
1465         xml_add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1466                                                         "href" => $a->get_baseurl()."/display/".$item["guid"]));
1467
1468         xml_add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1469
1470         if (!$is_repeat)
1471                 xml_add_element($doc, $entry, "activity:verb", construct_verb($item));
1472         else
1473                 xml_add_element($doc, $entry, "activity:verb", ACTIVITY_SHARE);
1474
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));
1477
1478         if ($is_repeat) {
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;
1487
1488                 // Fetch the missing data from the global contacts
1489                 $r =q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($repeated_item["author-link"]));
1490                 if ($r) {
1491                         if ($r[0]["nick"] != "")
1492                                 $repeated_owner["nick"] = $r[0]["nick"];
1493
1494                         $repeated_owner["location"] = $r[0]["location"];
1495                         $repeated_owner["about"] = $r[0]["about"];
1496                 }
1497
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);
1503         }
1504
1505         $mentioned = array();
1506
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']);
1510
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);
1516
1517                 $attributes = array(
1518                                 "rel" => "related",
1519                                 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1520                 xml_add_element($doc, $entry, "link", "", $attributes);
1521
1522                 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1523                 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1524
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));
1528                 if ($thrparent) {
1529                         $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1530                         $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1531                 }
1532         }
1533
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"]);
1537
1538         $tags = item_getfeedtags($item);
1539
1540         if(count($tags))
1541                 foreach($tags as $t)
1542                         if ($t[0] == "@")
1543                                 $mentioned[$t[1]] = $t[1];
1544
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);
1550         }
1551         $mentioned = $newmentions;
1552
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));
1561                 else
1562                         xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1563                                                                                 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1564                                                                                 "href" => $mention));
1565         }
1566
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"));
1571
1572         if(count($tags))
1573                 foreach($tags as $t)
1574                         if ($t[0] != "@")
1575                                 xml_add_element($doc, $entry, "category", "", array("term" => $t[2]));
1576
1577         ostatus_get_attachment($doc, $entry, $item);
1578
1579         /// @TODO
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);
1584
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);
1588
1589         $app = $item["app"];
1590         if ($app == "")
1591                 $app = "web";
1592
1593
1594         $attributes = array("local_id" => $item["id"], "source" => $app);
1595         if ($is_repeat)
1596                 $attributes["repeat_of"] = $repeated_item["id"];
1597
1598         xml_add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
1599
1600         return $entry;
1601 }
1602
1603 function ostatus_feed(&$a, $owner_nick, $last_update) {
1604
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));
1609         if (!$r)
1610                 return;
1611
1612         $owner = $r[0];
1613
1614         if(!strlen($last_update))
1615                 $last_update = 'now -30 days';
1616
1617         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
1618
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
1629                         LIMIT 0, 300",
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"]))
1637                 );
1638
1639         $doc = new DOMDocument('1.0', 'utf-8');
1640         $doc->formatOutput = true;
1641
1642         $root = ostatus_add_header($doc, $owner);
1643
1644         foreach ($items AS $item) {
1645                 $entry = ostatus_entry($doc, $item, $owner);
1646                 $root->appendChild($entry);
1647         }
1648
1649         return(trim($doc->saveXML()));
1650 }
1651
1652 function ostatus_salmon($item,$owner) {
1653
1654         $doc = new DOMDocument('1.0', 'utf-8');
1655         $doc->formatOutput = true;
1656
1657         $entry = ostatus_entry($doc, $item, $owner, true);
1658
1659         $doc->appendChild($entry);
1660
1661         return(trim($doc->saveXML()));
1662 }
1663 ?>