]> git.mxchange.org Git - friendica.git/blob - include/ostatus.php
5ba9f0e83c777ad103afd76b2420eef18de921a9
[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                 $contact["generation"] = 2;
168                 $contact["photo"] = $author["author-avatar"];
169                 update_gcontact($contact);
170         }
171
172         return($author);
173 }
174
175 function ostatus_salmon_author($xml, $importer) {
176         $a = get_app();
177
178         if ($xml == "")
179                 return;
180
181         $doc = new DOMDocument();
182         @$doc->loadXML($xml);
183
184         $xpath = new DomXPath($doc);
185         $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
186         $xpath->registerNamespace('thr', NAMESPACE_THREAD);
187         $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
188         $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
189         $xpath->registerNamespace('media', NAMESPACE_MEDIA);
190         $xpath->registerNamespace('poco', NAMESPACE_POCO);
191         $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
192         $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
193
194         $entries = $xpath->query('/atom:entry');
195
196         foreach ($entries AS $entry) {
197                 // fetch the author
198                 $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, true);
199                 return $author;
200         }
201 }
202
203 function ostatus_import($xml,$importer,&$contact, &$hub) {
204
205         $a = get_app();
206
207         logger("Import OStatus message", LOGGER_DEBUG);
208
209         if ($xml == "")
210                 return;
211
212         $doc = new DOMDocument();
213         @$doc->loadXML($xml);
214
215         $xpath = new DomXPath($doc);
216         $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
217         $xpath->registerNamespace('thr', NAMESPACE_THREAD);
218         $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
219         $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
220         $xpath->registerNamespace('media', NAMESPACE_MEDIA);
221         $xpath->registerNamespace('poco', NAMESPACE_POCO);
222         $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
223         $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
224
225         $gub = "";
226         $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
227         if (is_object($hub_attributes))
228                 foreach($hub_attributes AS $hub_attribute)
229                         if ($hub_attribute->name == "href") {
230                                 $hub = $hub_attribute->textContent;
231                                 logger("Found hub ".$hub, LOGGER_DEBUG);
232                         }
233
234         $header = array();
235         $header["uid"] = $importer["uid"];
236         $header["network"] = NETWORK_OSTATUS;
237         $header["type"] = "remote";
238         $header["wall"] = 0;
239         $header["origin"] = 0;
240         $header["gravity"] = GRAVITY_PARENT;
241
242         // it could either be a received post or a post we fetched by ourselves
243         // depending on that, the first node is different
244         $first_child = $doc->firstChild->tagName;
245
246         if ($first_child == "feed")
247                 $entries = $xpath->query('/atom:feed/atom:entry');
248         else
249                 $entries = $xpath->query('/atom:entry');
250
251         $conversation = "";
252         $conversationlist = array();
253         $item_id = 0;
254
255         // Reverse the order of the entries
256         $entrylist = array();
257
258         foreach ($entries AS $entry)
259                 $entrylist[] = $entry;
260
261         foreach (array_reverse($entrylist) AS $entry) {
262
263                 $mention = false;
264
265                 // fetch the author
266                 if ($first_child == "feed")
267                         $author = ostatus_fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
268                 else
269                         $author = ostatus_fetchauthor($xpath, $entry, $importer, $contact, false);
270
271                 $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
272                 if ($value != "")
273                         $nickname = $value;
274                 else
275                         $nickname = $author["author-name"];
276
277                 $item = array_merge($header, $author);
278
279                 // Now get the item
280                 $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
281
282                 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
283                         intval($importer["uid"]), dbesc($item["uri"]));
284                 if ($r) {
285                         logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
286                         continue;
287                 }
288
289                 $item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
290                 $item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
291
292                 if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
293                         $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
294                         $item["body"] = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
295                 } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION)
296                         $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
297
298                 $item["object"] = $xml;
299                 $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
300
301                 /// @TODO
302                 /// Delete a message
303                 if ($item["verb"] == "qvitter-delete-notice") {
304                         // ignore "Delete" messages (by now)
305                         logger("Ignore delete message ".print_r($item, true));
306                         continue;
307                 }
308
309                 if ($item["verb"] == ACTIVITY_JOIN) {
310                         // ignore "Join" messages
311                         logger("Ignore join message ".print_r($item, true));
312                         continue;
313                 }
314
315                 if ($item["verb"] == ACTIVITY_FOLLOW) {
316                         new_follower($importer, $contact, $item, $nickname);
317                         continue;
318                 }
319
320                 if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
321                         lose_follower($importer, $contact, $item, $dummy);
322                         continue;
323                 }
324
325                 if ($item["verb"] == ACTIVITY_FAVORITE) {
326                         $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
327                         logger("Favorite ".$orig_uri." ".print_r($item, true));
328
329                         $item["verb"] = ACTIVITY_LIKE;
330                         $item["parent-uri"] = $orig_uri;
331                         $item["gravity"] = GRAVITY_LIKE;
332                 }
333
334                 if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
335                         // Ignore "Unfavorite" message
336                         logger("Ignore unfavorite message ".print_r($item, true));
337                         continue;
338                 }
339
340                 // http://activitystrea.ms/schema/1.0/rsvp-yes
341                 if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE)))
342                         logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
343
344                 $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
345                 $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
346                 $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
347
348                 $related = "";
349
350                 $inreplyto = $xpath->query('thr:in-reply-to', $entry);
351                 if (is_object($inreplyto->item(0))) {
352                         foreach($inreplyto->item(0)->attributes AS $attributes) {
353                                 if ($attributes->name == "ref")
354                                         $item["parent-uri"] = $attributes->textContent;
355                                 if ($attributes->name == "href")
356                                         $related = $attributes->textContent;
357                         }
358                 }
359
360                 $georsspoint = $xpath->query('georss:point', $entry);
361                 if ($georsspoint)
362                         $item["coord"] = $georsspoint->item(0)->nodeValue;
363
364                 /// @TODO
365                 /// $item["location"] =
366
367                 $categories = $xpath->query('atom:category', $entry);
368                 if ($categories) {
369                         foreach ($categories AS $category) {
370                                 foreach($category->attributes AS $attributes)
371                                         if ($attributes->name == "term") {
372                                                 $term = $attributes->textContent;
373                                                 if(strlen($item["tag"]))
374                                                         $item["tag"] .= ',';
375                                                 $item["tag"] .= "#[url=".$a->get_baseurl()."/search?tag=".$term."]".$term."[/url]";
376                                         }
377                         }
378                 }
379
380                 $self = "";
381                 $enclosure = "";
382
383                 $links = $xpath->query('atom:link', $entry);
384                 if ($links) {
385                         $rel = "";
386                         $href = "";
387                         $type = "";
388                         $length = "0";
389                         $title = "";
390                         foreach ($links AS $link) {
391                                 foreach($link->attributes AS $attributes) {
392                                         if ($attributes->name == "href")
393                                                 $href = $attributes->textContent;
394                                         if ($attributes->name == "rel")
395                                                 $rel = $attributes->textContent;
396                                         if ($attributes->name == "type")
397                                                 $type = $attributes->textContent;
398                                         if ($attributes->name == "length")
399                                                 $length = $attributes->textContent;
400                                         if ($attributes->name == "title")
401                                                 $title = $attributes->textContent;
402                                 }
403                                 if (($rel != "") AND ($href != ""))
404                                         switch($rel) {
405                                                 case "alternate":
406                                                         $item["plink"] = $href;
407                                                         if (($item["object-type"] == ACTIVITY_OBJ_QUESTION) OR
408                                                                 ($item["object-type"] == ACTIVITY_OBJ_EVENT))
409                                                                 $item["body"] .= add_page_info($href);
410                                                         break;
411                                                 case "ostatus:conversation":
412                                                         $conversation = $href;
413                                                         break;
414                                                 case "enclosure":
415                                                         $enclosure = $href;
416                                                         if(strlen($item["attach"]))
417                                                                 $item["attach"] .= ',';
418
419                                                         $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
420                                                         break;
421                                                 case "related":
422                                                         if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
423                                                                 if (!isset($item["parent-uri"]))
424                                                                         $item["parent-uri"] = $href;
425
426                                                                 if ($related == "")
427                                                                         $related = $href;
428                                                         } else
429                                                                 $item["body"] .= add_page_info($href);
430                                                         break;
431                                                 case "self":
432                                                         $self = $href;
433                                                         break;
434                                                 case "mentioned":
435                                                         // Notification check
436                                                         if ($importer["nurl"] == normalise_link($href))
437                                                                 $mention = true;
438                                                         break;
439                                         }
440                         }
441                 }
442
443                 $local_id = "";
444                 $repeat_of = "";
445
446                 $notice_info = $xpath->query('statusnet:notice_info', $entry);
447                 if ($notice_info AND ($notice_info->length > 0)) {
448                         foreach($notice_info->item(0)->attributes AS $attributes) {
449                                 if ($attributes->name == "source")
450                                         $item["app"] = strip_tags($attributes->textContent);
451                                 if ($attributes->name == "local_id")
452                                         $local_id = $attributes->textContent;
453                                 if ($attributes->name == "repeat_of")
454                                         $repeat_of = $attributes->textContent;
455                         }
456                 }
457
458                 // Is it a repeated post?
459                 if ($repeat_of != "") {
460                         $activityobjects = $xpath->query('activity:object', $entry)->item(0);
461
462                         if (is_object($activityobjects)) {
463
464                                 $orig_uri = $xpath->query("activity:object/atom:id", $activityobjects)->item(0)->nodeValue;
465                                 if (!isset($orig_uri))
466                                         $orig_uri = $xpath->query('atom:id/text()', $activityobjects)->item(0)->nodeValue;
467
468                                 $orig_links = $xpath->query("activity:object/atom:link[@rel='alternate']", $activityobjects);
469                                 if ($orig_links AND ($orig_links->length > 0))
470                                         foreach($orig_links->item(0)->attributes AS $attributes)
471                                                 if ($attributes->name == "href")
472                                                         $orig_link = $attributes->textContent;
473
474                                 if (!isset($orig_link))
475                                         $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
476
477                                 if (!isset($orig_link))
478                                         $orig_link =  ostatus_convert_href($orig_uri);
479
480                                 $orig_body = $xpath->query('activity:object/atom:content/text()', $activityobjects)->item(0)->nodeValue;
481                                 if (!isset($orig_body))
482                                         $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue;
483
484                                 $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
485
486                                 $orig_contact = $contact;
487                                 $orig_author = ostatus_fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
488
489                                 //if (!intval(get_config('system','wall-to-wall_share'))) {
490                                 //      $prefix = share_header($orig_author['author-name'], $orig_author['author-link'], $orig_author['author-avatar'], "", $orig_created, $orig_link);
491                                 //      $item["body"] = $prefix.add_page_info_to_body(html2bbcode($orig_body))."[/share]";
492                                 //} else {
493                                         $item["author-name"] = $orig_author["author-name"];
494                                         $item["author-link"] = $orig_author["author-link"];
495                                         $item["author-avatar"] = $orig_author["author-avatar"];
496                                         $item["body"] = add_page_info_to_body(html2bbcode($orig_body));
497                                         $item["created"] = $orig_created;
498
499                                         $item["uri"] = $orig_uri;
500                                         $item["plink"] = $orig_link;
501                                 //}
502
503                                 $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
504
505                                 $item["object-type"] = $xpath->query('activity:object/activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
506                                 if (!isset($item["object-type"]))
507                                         $item["object-type"] = $xpath->query('activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
508                         }
509                 }
510
511                 //if ($enclosure != "")
512                 //      $item["body"] .= add_page_info($enclosure);
513
514                 if (isset($item["parent-uri"])) {
515                         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
516                                 intval($importer["uid"]), dbesc($item["parent-uri"]));
517
518                         if (!$r AND ($related != "")) {
519                                 $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
520
521                                 if ($reply_path != $related) {
522                                         logger("Fetching related items for user ".$importer["uid"]." from ".$reply_path, LOGGER_DEBUG);
523                                         $reply_xml = fetch_url($reply_path);
524
525                                         $reply_contact = $contact;
526                                         ostatus_import($reply_xml,$importer,$reply_contact, $reply_hub);
527
528                                         // After the import try to fetch the parent item again
529                                         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
530                                                 intval($importer["uid"]), dbesc($item["parent-uri"]));
531                                 }
532                         }
533                         if ($r) {
534                                 $item["type"] = 'remote-comment';
535                                 $item["gravity"] = GRAVITY_COMMENT;
536                         }
537                 } else
538                         $item["parent-uri"] = $item["uri"];
539
540                 $item_id = ostatus_completion($conversation, $importer["uid"], $item, $self);
541
542                 if (!$item_id) {
543                         logger("Error storing item", LOGGER_DEBUG);
544                         continue;
545                 }
546
547                 logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
548         }
549 }
550
551 function ostatus_convert_href($href) {
552         $elements = explode(":",$href);
553
554         if ((count($elements) <= 2) OR ($elements[0] != "tag"))
555                 return $href;
556
557         $server = explode(",", $elements[1]);
558         $conversation = explode("=", $elements[2]);
559
560         if ((count($elements) == 4) AND ($elements[2] == "post"))
561                 return "http://".$server[0]."/notice/".$elements[3];
562
563         if ((count($conversation) != 2) OR ($conversation[1] ==""))
564                 return $href;
565
566         if ($elements[3] == "objectType=thread")
567                 return "http://".$server[0]."/conversation/".$conversation[1];
568         else
569                 return "http://".$server[0]."/notice/".$conversation[1];
570
571         return $href;
572 }
573
574 function check_conversations($mentions = false, $override = false) {
575         $last = get_config('system','ostatus_last_poll');
576
577         $poll_interval = intval(get_config('system','ostatus_poll_interval'));
578         if(! $poll_interval)
579                 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
580
581         // Don't poll if the interval is set negative
582         if (($poll_interval < 0) AND !$override)
583                 return;
584
585         if (!$mentions) {
586                 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
587                 if (!$poll_timeframe)
588                         $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
589         } else {
590                 $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
591                 if (!$poll_timeframe)
592                         $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
593         }
594
595
596         if ($last AND !$override) {
597                 $next = $last + ($poll_interval * 60);
598                 if ($next > time()) {
599                         logger('poll interval not reached');
600                         return;
601                 }
602         }
603
604         logger('cron_start');
605
606         $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
607
608         if ($mentions)
609                 $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
610                                         STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
611                                         WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
612                                         GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
613         else
614                 $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
615                                         WHERE `type` = 7 AND `term` > '%s'
616                                         GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
617
618         foreach ($conversations AS $conversation) {
619                 ostatus_completion($conversation['url'], $conversation['uid']);
620         }
621
622         logger('cron_end');
623
624         set_config('system','ostatus_last_poll', time());
625 }
626
627 /**
628  * @brief Updates the gcontact table with actor data from the conversation
629  *
630  * @param object $actor The actor object that contains the contact data
631  */
632 function ostatus_conv_fetch_actor($actor) {
633
634         // We set the generation to "3" since the data here is not as reliable as the data we get on other occasions
635         $contact = array("network" => NETWORK_OSTATUS, "generation" => 3);
636
637         if (isset($actor->url))
638                 $contact["url"] = $actor->url;
639
640         if (isset($actor->displayName))
641                 $contact["name"] = $actor->displayName;
642
643         if (isset($actor->portablecontacts_net->displayName))
644                 $contact["name"] = $actor->portablecontacts_net->displayName;
645
646         if (isset($actor->portablecontacts_net->preferredUsername))
647                 $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
648
649         if (isset($actor->id))
650                 $contact["alias"] = $actor->id;
651
652         if (isset($actor->summary))
653                 $contact["about"] = $actor->summary;
654
655         if (isset($actor->portablecontacts_net->note))
656                 $contact["about"] = $actor->portablecontacts_net->note;
657
658         if (isset($actor->portablecontacts_net->addresses->formatted))
659                 $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
660
661
662         if (isset($actor->image->url))
663                 $contact["photo"] = $actor->image->url;
664
665         if (isset($actor->image->width))
666                 $avatarwidth = $actor->image->width;
667
668         if (is_array($actor->status_net->avatarLinks))
669                 foreach ($actor->status_net->avatarLinks AS $avatar) {
670                         if ($avatarsize < $avatar->width) {
671                                 $contact["photo"] = $avatar->url;
672                                 $avatarsize = $avatar->width;
673                         }
674                 }
675
676         update_gcontact($contact);
677 }
678
679 /**
680  * @brief Fetches the conversation url for a given item link or conversation id
681  *
682  * @param string $self The link to the posting
683  * @param string $conversation_id The conversation id
684  *
685  * @return string The conversation url
686  */
687 function ostatus_fetch_conversation($self, $conversation_id = "") {
688
689         if ($conversation_id != "") {
690                 $elements = explode(":", $conversation_id);
691
692                 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
693                         return $conversation_id;
694         }
695
696         if ($self == "")
697                 return "";
698
699         $json = str_replace(".atom", ".json", $self);
700
701         $raw = fetch_url($json);
702         if ($raw == "")
703                 return "";
704
705         $data = json_decode($raw);
706         if (!is_object($data))
707                 return "";
708
709         $conversation_id = $data->statusnet_conversation_id;
710
711         $pos = strpos($self, "/api/statuses/show/");
712         $base_url = substr($self, 0, $pos);
713
714         return $base_url."/conversation/".$conversation_id;
715 }
716
717 /**
718  * @brief Fetches actor details of a given actor and user id
719  *
720  * @param string $actor The actor url
721  * @param int $uid The user id
722  * @param int $contact_id The default contact-id
723  *
724  * @return array Array with actor details
725  */
726 function ostatus_get_actor_details($actor, $uid, $contact_id) {
727
728         $details = array();
729
730         $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
731                                 $uid, normalise_link($actor), NETWORK_STATUSNET);
732
733         if (!$contact)
734                 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `alias` IN ('%s', '%s') AND `network` != '%s'",
735                                 $uid, $actor, normalise_link($actor), NETWORK_STATUSNET);
736
737         if ($contact) {
738                 logger("Found contact for url ".$actor, LOGGER_DEBUG);
739                 $details["contact_id"] = $contact[0]["id"];
740                 $details["network"] = $contact[0]["network"];
741
742                 $details["not_following"] = !in_array($contact[0]["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND));
743         } else {
744                 logger("No contact found for user ".$uid." and url ".$actor, LOGGER_DEBUG);
745
746                 // Adding a global contact
747                 /// @TODO Use this data for the post
748                 $details["global_contact_id"] = get_contact($actor, 0);
749
750                 logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
751
752                 $details["contact_id"] = $contact_id;
753                 $details["network"] = NETWORK_OSTATUS;
754
755                 $details["not_following"] = true;
756         }
757
758         return $details;
759 }
760
761 function ostatus_completion($conversation_url, $uid, $item = array(), $self = "") {
762
763         $a = get_app();
764
765         $item_stored = -1;
766
767         //$conversation_url = ostatus_convert_href($conversation_url);
768         $conversation_url = ostatus_fetch_conversation($self, $conversation_url);
769
770         // If the thread shouldn't be completed then store the item and go away
771         // Don't do a completion on liked content
772         if (((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) OR
773                 ($item["verb"] == ACTIVITY_LIKE) OR ($conversation_url == "")) {
774                 //$arr["app"] .= " (OStatus-NoCompletion)";
775                 $item_stored = item_store($item, true);
776                 return($item_stored);
777         }
778
779         // Get the parent
780         $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
781                         (SELECT `parent` FROM `item` WHERE `id` IN
782                                 (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
783                         intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
784
785         if ($parents)
786                 $parent = $parents[0];
787         elseif (count($item) > 0) {
788                 $parent = $item;
789                 $parent["type"] = "remote";
790                 $parent["verb"] = ACTIVITY_POST;
791                 $parent["visible"] = 1;
792         } else {
793                 // Preset the parent
794                 $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
795                 if (!$r)
796                         return(-2);
797
798                 $parent = array();
799                 $parent["id"] = 0;
800                 $parent["parent"] = 0;
801                 $parent["uri"] = "";
802                 $parent["contact-id"] = $r[0]["id"];
803                 $parent["type"] = "remote";
804                 $parent["verb"] = ACTIVITY_POST;
805                 $parent["visible"] = 1;
806         }
807
808         $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
809         $pageno = 1;
810         $items = array();
811
812         logger('fetching conversation url '.$conv.' (Self: '.$self.') for user '.$uid);
813
814         do {
815                 $conv_arr = z_fetch_url($conv."?page=".$pageno);
816
817                 // If it is a non-ssl site and there is an error, then try ssl or vice versa
818                 if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
819                         $conv = str_replace("http://", "https://", $conv);
820                         $conv_as = fetch_url($conv."?page=".$pageno);
821                 } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
822                         $conv = str_replace("https://", "http://", $conv);
823                         $conv_as = fetch_url($conv."?page=".$pageno);
824                 } else
825                         $conv_as = $conv_arr["body"];
826
827                 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
828                 $conv_as = json_decode($conv_as);
829
830                 $no_of_items = sizeof($items);
831
832                 if (@is_array($conv_as->items))
833                         foreach ($conv_as->items AS $single_item)
834                                 $items[$single_item->id] = $single_item;
835
836                 if ($no_of_items == sizeof($items))
837                         break;
838
839                 $pageno++;
840
841         } while (true);
842
843         logger('fetching conversation done. Found '.count($items).' items');
844
845         if (!sizeof($items)) {
846                 if (count($item) > 0) {
847                         //$arr["app"] .= " (OStatus-NoConvFetched)";
848                         $item_stored = item_store($item, true);
849
850                         if ($item_stored) {
851                                 logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
852                                 ostatus_store_conversation($item_id, $conversation_url);
853                         }
854
855                         return($item_stored);
856                 } else
857                         return(-3);
858         }
859
860         $items = array_reverse($items);
861
862         $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
863         $importer = $r[0];
864
865         $new_parent = true;
866
867         foreach ($items as $single_conv) {
868
869                 // Update the gcontact table
870                 ostatus_conv_fetch_actor($single_conv->actor);
871
872                 // Test - remove before flight
873                 //$tempfile = tempnam(get_temppath(), "conversation");
874                 //file_put_contents($tempfile, json_encode($single_conv));
875
876                 $mention = false;
877
878                 if (isset($single_conv->object->id))
879                         $single_conv->id = $single_conv->object->id;
880
881                 $plink = ostatus_convert_href($single_conv->id);
882                 if (isset($single_conv->object->url))
883                         $plink = ostatus_convert_href($single_conv->object->url);
884
885                 if (@!$single_conv->id)
886                         continue;
887
888                 logger("Got id ".$single_conv->id, LOGGER_DEBUG);
889
890                 if ($first_id == "") {
891                         $first_id = $single_conv->id;
892
893                         // The first post of the conversation isn't our first post. There are three options:
894                         // 1. Our conversation hasn't the "real" thread starter
895                         // 2. This first post is a post inside our thread
896                         // 3. This first post is a post inside another thread
897                         if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
898
899                                 $new_parent = true;
900
901                                 $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
902                                                         (SELECT `parent` FROM `item`
903                                                                 WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
904                                         intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
905                                 if ($new_parents) {
906                                         if ($new_parents[0]["parent"] == $parent["parent"]) {
907                                                 // Option 2: This post is already present inside our thread - but not as thread starter
908                                                 logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
909                                                 $first_id = $parent["uri"];
910                                         } else {
911                                                 // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
912                                                 // For now just take the new parent.
913                                                 $parent = $new_parents[0];
914                                                 $first_id = $parent["uri"];
915                                                 logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
916                                         }
917                                 } else {
918                                         // Option 1: We hadn't got the real thread starter
919                                         // We have to clean up our existing messages.
920                                         $parent["id"] = 0;
921                                         $parent["uri"] = $first_id;
922                                         logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
923                                 }
924                         } elseif ($parent["uri"] == "") {
925                                 $parent["id"] = 0;
926                                 $parent["uri"] = $first_id;
927                         }
928                 }
929
930                 $parent_uri = $parent["uri"];
931
932                 // "context" only seems to exist on older servers
933                 if (isset($single_conv->context->inReplyTo->id)) {
934                         $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
935                                                 intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
936                         if ($parent_exists)
937                                 $parent_uri = $single_conv->context->inReplyTo->id;
938                 }
939
940                 // This is the current way
941                 if (isset($single_conv->object->inReplyTo->id)) {
942                         $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
943                                                 intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
944                         if ($parent_exists)
945                                 $parent_uri = $single_conv->object->inReplyTo->id;
946                 }
947
948                 $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
949                                                 intval($uid), dbesc($single_conv->id),
950                                                 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
951                 if ($message_exists) {
952                         logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
953
954                         if ($parent["id"] != 0) {
955                                 $existing_message = $message_exists[0];
956
957                                 // We improved the way we fetch OStatus messages, this shouldn't happen very often now
958                                 /// @TODO We have to change the shadow copies as well. This way here is really ugly.
959                                 if ($existing_message["parent"] != $parent["id"]) {
960                                         logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
961
962                                         // Update the parent id of the selected item
963                                         $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
964                                                 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
965
966                                         // Update the parent uri in the thread - but only if it points to itself
967                                         $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
968                                                 dbesc($parent_uri), intval($existing_message["id"]));
969
970                                         // try to change all items of the same parent
971                                         $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
972                                                 intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
973
974                                         // Update the parent uri in the thread - but only if it points to itself
975                                         $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
976                                                 dbesc($parent["uri"]), intval($existing_message["parent"]));
977
978                                         // Now delete the thread
979                                         delete_thread($existing_message["parent"]);
980                                 }
981                         }
982
983                         // The item we are having on the system is the one that we wanted to store via the item array
984                         if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
985                                 $item = array();
986                                 $item_stored = 0;
987                         }
988
989                         continue;
990                 }
991
992                 if (is_array($single_conv->to))
993                         foreach($single_conv->to AS $to)
994                                 if ($importer["nurl"] == normalise_link($to->id))
995                                         $mention = true;
996
997                 $actor = $single_conv->actor->id;
998                 if (isset($single_conv->actor->url))
999                         $actor = $single_conv->actor->url;
1000
1001                 $details = ostatus_get_actor_details($actor, $uid, $parent["contact-id"]);
1002
1003                 // Do we only want to import threads that were started by our contacts?
1004                 if ($details["not_following"] AND $new_parent AND get_config('system','ostatus_full_threads')) {
1005                         logger("Don't import uri ".$first_id." because user ".$uid." doesn't follow the person ".$actor, LOGGER_DEBUG);
1006                         continue;
1007                 }
1008
1009                 $arr = array();
1010                 $arr["network"] = $details["network"];
1011                 $arr["uri"] = $single_conv->id;
1012                 $arr["plink"] = $plink;
1013                 $arr["uid"] = $uid;
1014                 $arr["contact-id"] = $details["contact_id"];
1015                 $arr["parent-uri"] = $parent_uri;
1016                 $arr["created"] = $single_conv->published;
1017                 $arr["edited"] = $single_conv->published;
1018                 $arr["owner-name"] = $single_conv->actor->displayName;
1019                 if ($arr["owner-name"] == '')
1020                         $arr["owner-name"] = $single_conv->actor->contact->displayName;
1021                 if ($arr["owner-name"] == '')
1022                         $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
1023
1024                 $arr["owner-link"] = $actor;
1025                 $arr["owner-avatar"] = $single_conv->actor->image->url;
1026                 $arr["author-name"] = $arr["owner-name"];
1027                 $arr["author-link"] = $actor;
1028                 $arr["author-avatar"] = $single_conv->actor->image->url;
1029                 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
1030
1031                 if (isset($single_conv->status_net->notice_info->source))
1032                         $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
1033                 elseif (isset($single_conv->statusnet->notice_info->source))
1034                         $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
1035                 elseif (isset($single_conv->statusnet_notice_info->source))
1036                         $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
1037                 elseif (isset($single_conv->provider->displayName))
1038                         $arr["app"] = $single_conv->provider->displayName;
1039                 else
1040                         $arr["app"] = "OStatus";
1041
1042                 //$arr["app"] .= " (Conversation)";
1043
1044                 $arr["object"] = json_encode($single_conv);
1045                 $arr["verb"] = $parent["verb"];
1046                 $arr["visible"] = $parent["visible"];
1047                 $arr["location"] = $single_conv->location->displayName;
1048                 $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
1049
1050                 // Is it a reshared item?
1051                 if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
1052                         if (is_array($single_conv->object))
1053                                 $single_conv->object = $single_conv->object[0];
1054
1055                         logger("Found reshared item ".$single_conv->object->id);
1056
1057                         // $single_conv->object->context->conversation;
1058
1059                         if (isset($single_conv->object->object->id))
1060                                 $arr["uri"] = $single_conv->object->object->id;
1061                         else
1062                                 $arr["uri"] = $single_conv->object->id;
1063
1064                         if (isset($single_conv->object->object->url))
1065                                 $plink = ostatus_convert_href($single_conv->object->object->url);
1066                         else
1067                                 $plink = ostatus_convert_href($single_conv->object->url);
1068
1069                         if (isset($single_conv->object->object->content))
1070                                 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1071                         else
1072                                 $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1073
1074                         $arr["plink"] = $plink;
1075
1076                         $arr["created"] = $single_conv->object->published;
1077                         $arr["edited"] = $single_conv->object->published;
1078
1079                         $arr["author-name"] = $single_conv->object->actor->displayName;
1080                         if ($arr["owner-name"] == '')
1081                                 $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1082
1083                         $arr["author-link"] = $single_conv->object->actor->url;
1084                         $arr["author-avatar"] = $single_conv->object->actor->image->url;
1085
1086                         $arr["app"] = $single_conv->object->provider->displayName."#";
1087                         //$arr["verb"] = $single_conv->object->verb;
1088
1089                         $arr["location"] = $single_conv->object->location->displayName;
1090                         $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1091                 }
1092
1093                 if ($arr["location"] == "")
1094                         unset($arr["location"]);
1095
1096                 if ($arr["coord"] == "")
1097                         unset($arr["coord"]);
1098
1099                 // Copy fields from given item array
1100                 if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] ==  $single_conv->id))) {
1101                         $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
1102                                                 "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
1103                                                 "title", "attach", "app", "type", "location", "contact-id", "uri");
1104                         foreach ($copy_fields AS $field)
1105                                 if (isset($item[$field]))
1106                                         $arr[$field] = $item[$field];
1107
1108                         //$arr["app"] .= " (OStatus)";
1109                 }
1110
1111                 $newitem = item_store($arr);
1112                 if (!$newitem) {
1113                         logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1114                         continue;
1115                 }
1116
1117                 if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1118                         $item = array();
1119                         $item_stored = $newitem;
1120                 }
1121
1122                 logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1123
1124                 // Add the conversation entry (but don't fetch the whole conversation)
1125                 ostatus_store_conversation($newitem, $conversation_url);
1126
1127                 // If the newly created item is the top item then change the parent settings of the thread
1128                 // This shouldn't happen anymore. This is supposed to be absolote.
1129                 if ($arr["uri"] == $first_id) {
1130                         logger('setting new parent to id '.$newitem);
1131                         $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1132                                 intval($uid), intval($newitem));
1133                         if ($new_parents)
1134                                 $parent = $new_parents[0];
1135                 }
1136         }
1137
1138         if (($item_stored < 0) AND (count($item) > 0)) {
1139                 //$arr["app"] .= " (OStatus-NoConvFound)";
1140
1141                 if (get_config('system','ostatus_full_threads')) {
1142                         $details = ostatus_get_actor_details($item["owner-link"], $uid, $item["contact-id"]);
1143                         if ($details["not_following"]) {
1144                                 logger("Don't import uri ".$item["uri"]." because user ".$uid." doesn't follow the person ".$item["owner-link"], LOGGER_DEBUG);
1145                                 return false;
1146                         }
1147                 }
1148
1149                 $item_stored = item_store($item, true);
1150                 if ($item_stored) {
1151                         logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1152                         ostatus_store_conversation($item_stored, $conversation_url);
1153                 }
1154         }
1155
1156         return($item_stored);
1157 }
1158
1159 function ostatus_store_conversation($itemid, $conversation_url) {
1160         global $a;
1161
1162         $conversation_url = ostatus_convert_href($conversation_url);
1163
1164         $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1165         if (!$messages)
1166                 return;
1167         $message = $messages[0];
1168
1169         // Store conversation url if not done before
1170         $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1171                 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1172
1173         if (!$conversation) {
1174                 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1175                         intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1176                         dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1177                 logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1178         }
1179 }
1180
1181 function get_reshared_guid($item) {
1182         $body = trim($item["body"]);
1183
1184         // Skip if it isn't a pure repeated messages
1185         // Does it start with a share?
1186         if (strpos($body, "[share") > 0)
1187                 return("");
1188
1189         // Does it end with a share?
1190         if (strlen($body) > (strrpos($body, "[/share]") + 8))
1191                 return("");
1192
1193         $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1194         // Skip if there is no shared message in there
1195         if ($body == $attributes)
1196                 return(false);
1197
1198         $guid = "";
1199         preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1200         if ($matches[1] != "")
1201                 $guid = $matches[1];
1202
1203         preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1204         if ($matches[1] != "")
1205                 $guid = $matches[1];
1206
1207         return $guid;
1208 }
1209
1210 function xml_create_element($doc, $element, $value = "", $attributes = array()) {
1211         $element = $doc->createElement($element, xmlify($value));
1212
1213         foreach ($attributes AS $key => $value) {
1214                 $attribute = $doc->createAttribute($key);
1215                 $attribute->value = xmlify($value);
1216                 $element->appendChild($attribute);
1217         }
1218         return $element;
1219 }
1220
1221 function xml_add_element($doc, $parent, $element, $value = "", $attributes = array()) {
1222         $element = xml_create_element($doc, $element, $value, $attributes);
1223         $parent->appendChild($element);
1224 }
1225
1226 function ostatus_format_picture_post($body) {
1227         $siteinfo = get_attached_data($body);
1228
1229         if (($siteinfo["type"] == "photo")) {
1230                 if (isset($siteinfo["preview"]))
1231                         $preview = $siteinfo["preview"];
1232                 else
1233                         $preview = $siteinfo["image"];
1234
1235                 // Is it a remote picture? Then make a smaller preview here
1236                 $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1237
1238                 // Is it a local picture? Then make it smaller here
1239                 $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1240                 $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1241
1242                 if (isset($siteinfo["url"]))
1243                         $url = $siteinfo["url"];
1244                 else
1245                         $url = $siteinfo["image"];
1246
1247                 $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1248         }
1249
1250         return $body;
1251 }
1252
1253 function ostatus_add_header($doc, $owner) {
1254         $a = get_app();
1255
1256         $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1257         $doc->appendChild($root);
1258
1259         $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1260         $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1261         $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1262         $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1263         $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1264         $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1265         $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1266
1267         $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1268         xml_add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1269         xml_add_element($doc, $root, "id", $a->get_baseurl()."/profile/".$owner["nick"]);
1270         xml_add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1271         xml_add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1272         xml_add_element($doc, $root, "logo", $owner["photo"]);
1273         xml_add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1274
1275         $author = ostatus_add_author($doc, $owner);
1276         $root->appendChild($author);
1277
1278         $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1279         xml_add_element($doc, $root, "link", "", $attributes);
1280
1281         /// @TODO We have to find out what this is
1282         /// $attributes = array("href" => $a->get_baseurl()."/sup",
1283         ///             "rel" => "http://api.friendfeed.com/2008/03#sup",
1284         ///             "type" => "application/json");
1285         /// xml_add_element($doc, $root, "link", "", $attributes);
1286
1287         ostatus_hublinks($doc, $root);
1288
1289         $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1290         xml_add_element($doc, $root, "link", "", $attributes);
1291
1292         $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies");
1293         xml_add_element($doc, $root, "link", "", $attributes);
1294
1295         $attributes = array("href" => $a->get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1296         xml_add_element($doc, $root, "link", "", $attributes);
1297
1298         $attributes = array("href" => $a->get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1299                         "rel" => "self", "type" => "application/atom+xml");
1300         xml_add_element($doc, $root, "link", "", $attributes);
1301
1302         return $root;
1303 }
1304
1305 function ostatus_hublinks($doc, $root) {
1306         $a = get_app();
1307         $hub = get_config('system','huburl');
1308
1309         $hubxml = '';
1310         if(strlen($hub)) {
1311                 $hubs = explode(',', $hub);
1312                 if(count($hubs)) {
1313                         foreach($hubs as $h) {
1314                                 $h = trim($h);
1315                                 if(! strlen($h))
1316                                         continue;
1317                                 if ($h === '[internal]')
1318                                         $h = $a->get_baseurl() . '/pubsubhubbub';
1319                                 xml_add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1320                         }
1321                 }
1322         }
1323 }
1324
1325 function ostatus_get_attachment($doc, $root, $item) {
1326         $o = "";
1327         $siteinfo = get_attached_data($item["body"]);
1328
1329         switch($siteinfo["type"]) {
1330                 case 'link':
1331                         $attributes = array("rel" => "enclosure",
1332                                         "href" => $siteinfo["url"],
1333                                         "type" => "text/html; charset=UTF-8",
1334                                         "length" => "",
1335                                         "title" => $siteinfo["title"]);
1336                         xml_add_element($doc, $root, "link", "", $attributes);
1337                         break;
1338                 case 'photo':
1339                         $imgdata = get_photo_info($siteinfo["image"]);
1340                         $attributes = array("rel" => "enclosure",
1341                                         "href" => $siteinfo["image"],
1342                                         "type" => $imgdata["mime"],
1343                                         "length" => intval($imgdata["size"]));
1344                         xml_add_element($doc, $root, "link", "", $attributes);
1345                         break;
1346                 case 'video':
1347                         $attributes = array("rel" => "enclosure",
1348                                         "href" => $siteinfo["url"],
1349                                         "type" => "text/html; charset=UTF-8",
1350                                         "length" => "",
1351                                         "title" => $siteinfo["title"]);
1352                         xml_add_element($doc, $root, "link", "", $attributes);
1353                         break;
1354                 default:
1355                         break;
1356         }
1357
1358         if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1359                 $photodata = get_photo_info($siteinfo["image"]);
1360
1361                 $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1362                 xml_add_element($doc, $root, "link", "", $attributes);
1363         }
1364
1365
1366         $arr = explode('[/attach],',$item['attach']);
1367         if(count($arr)) {
1368                 foreach($arr as $r) {
1369                         $matches = false;
1370                         $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1371                         if($cnt) {
1372                                 $attributes = array("rel" => "enclosure",
1373                                                 "href" => $matches[1],
1374                                                 "type" => $matches[3]);
1375
1376                                 if(intval($matches[2]))
1377                                         $attributes["length"] = intval($matches[2]);
1378
1379                                 if(trim($matches[4]) != "")
1380                                         $attributes["title"] = trim($matches[4]);
1381
1382                                 xml_add_element($doc, $root, "link", "", $attributes);
1383                         }
1384                 }
1385         }
1386 }
1387
1388 function ostatus_add_author($doc, $owner) {
1389         $a = get_app();
1390
1391         $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1392         if ($r)
1393                 $profile = $r[0];
1394
1395         $author = $doc->createElement("author");
1396         xml_add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1397         xml_add_element($doc, $author, "uri", $owner["url"]);
1398         xml_add_element($doc, $author, "name", $owner["name"]);
1399
1400         $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1401         xml_add_element($doc, $author, "link", "", $attributes);
1402
1403         $attributes = array(
1404                         "rel" => "avatar",
1405                         "type" => "image/jpeg", // To-Do?
1406                         "media:width" => 175,
1407                         "media:height" => 175,
1408                         "href" => $owner["photo"]);
1409         xml_add_element($doc, $author, "link", "", $attributes);
1410
1411         if (isset($owner["thumb"])) {
1412                 $attributes = array(
1413                                 "rel" => "avatar",
1414                                 "type" => "image/jpeg", // To-Do?
1415                                 "media:width" => 80,
1416                                 "media:height" => 80,
1417                                 "href" => $owner["thumb"]);
1418                 xml_add_element($doc, $author, "link", "", $attributes);
1419         }
1420
1421         xml_add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1422         xml_add_element($doc, $author, "poco:displayName", $owner["name"]);
1423         xml_add_element($doc, $author, "poco:note", $owner["about"]);
1424
1425         if (trim($owner["location"]) != "") {
1426                 $element = $doc->createElement("poco:address");
1427                 xml_add_element($doc, $element, "poco:formatted", $owner["location"]);
1428                 $author->appendChild($element);
1429         }
1430
1431         if (trim($profile["homepage"]) != "") {
1432                 $urls = $doc->createElement("poco:urls");
1433                 xml_add_element($doc, $urls, "poco:type", "homepage");
1434                 xml_add_element($doc, $urls, "poco:value", $profile["homepage"]);
1435                 xml_add_element($doc, $urls, "poco:primary", "true");
1436                 $author->appendChild($urls);
1437         }
1438
1439         if (count($profile)) {
1440                 xml_add_element($doc, $author, "followers", "", array("url" => $a->get_baseurl()."/viewcontacts/".$owner["nick"]));
1441                 xml_add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1442         }
1443
1444         return $author;
1445 }
1446
1447 /** 
1448  * @TODO Picture attachments should look like this:
1449  *      <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1450  *      class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1451  * 
1452 */
1453
1454 function ostatus_entry($doc, $item, $owner, $toplevel = false, $repeat = false) {
1455         $a = get_app();
1456
1457         if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1458                 logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1459         }
1460
1461         $is_repeat = false;
1462
1463 /*      if (!$repeat) {
1464                 $repeated_guid = get_reshared_guid($item);
1465
1466                 if ($repeated_guid != "") {
1467                         $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' LIMIT 1",
1468                                 intval($owner["uid"]), dbesc($repeated_guid));
1469                         if ($r) {
1470                                 $repeated_item = $r[0];
1471                                 $is_repeat = true;
1472                         }
1473                 }
1474         }
1475 */
1476         if (!$toplevel AND !$repeat) {
1477                 $entry = $doc->createElement("entry");
1478                 $title = sprintf("New note by %s", $owner["nick"]);
1479         } elseif (!$toplevel AND $repeat) {
1480                 $entry = $doc->createElement("activity:object");
1481                 $title = sprintf("New note by %s", $owner["nick"]);
1482         } else {
1483                 $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1484
1485                 $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1486                 $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1487                 $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1488                 $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1489                 $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1490                 $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1491                 $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1492
1493                 $author = ostatus_add_author($doc, $owner);
1494                 $entry->appendChild($author);
1495
1496                 $title = sprintf("New comment by %s", $owner["nick"]);
1497         }
1498
1499         // To use the object-type "bookmark" we have to implement these elements:
1500         //
1501         // <activity:object-type>http://activitystrea.ms/schema/1.0/bookmark</activity:object-type>
1502         // <title>Historic Rocket Landing</title>
1503         // <summary>Nur ein Testbeitrag.</summary>
1504         // <link rel="related" href="https://www.youtube.com/watch?v=9pillaOxGCo"/>
1505         // <link rel="preview" href="https://pirati.cc/file/thumb-4526-450x338-b48c8055f0c2fed0c3f67adc234c4b99484a90c42ed3cac73dc1081a4d0a7bc1.jpg.jpg" media:width="450" media:height="338"/>
1506         //
1507         // But: it seems as if it doesn't federate well between the GS servers
1508         // So we just set it to "note" to be sure that it reaches their target systems
1509
1510         if (!$repeat)
1511                 xml_add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1512         else
1513                 xml_add_element($doc, $entry, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA.'activity');
1514
1515         xml_add_element($doc, $entry, "id", $item["uri"]);
1516         xml_add_element($doc, $entry, "title", $title);
1517
1518         if($item['allow_cid'] || $item['allow_gid'] || $item['deny_cid'] || $item['deny_gid'])
1519                 $body = fix_private_photos($item['body'],$owner['uid'],$item, 0);
1520         else
1521                 $body = $item['body'];
1522
1523         $body = ostatus_format_picture_post($body);
1524
1525         if ($item['title'] != "")
1526                 $body = "[b]".$item['title']."[/b]\n\n".$body;
1527
1528         //$body = bb_remove_share_information($body);
1529         $body = bbcode($body, false, false, 7);
1530
1531         xml_add_element($doc, $entry, "content", $body, array("type" => "html"));
1532
1533         xml_add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1534                                                         "href" => $a->get_baseurl()."/display/".$item["guid"]));
1535
1536         xml_add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1537
1538         if (!$is_repeat)
1539                 xml_add_element($doc, $entry, "activity:verb", construct_verb($item));
1540         else
1541                 xml_add_element($doc, $entry, "activity:verb", ACTIVITY_SHARE);
1542
1543         xml_add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
1544         xml_add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
1545
1546         if ($is_repeat) {
1547                 $repeated_owner = array();
1548                 $repeated_owner["name"] = $repeated_item["author-name"];
1549                 $repeated_owner["url"] = $repeated_item["author-link"];
1550                 $repeated_owner["photo"] = $repeated_item["author-avatar"];
1551                 $repeated_owner["nick"] = $repeated_owner["name"];
1552                 $repeated_owner["location"] = "";
1553                 $repeated_owner["about"] = "";
1554                 $repeated_owner["uid"] = 0;
1555
1556                 // Fetch the missing data from the global contacts
1557                 $r =q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($repeated_item["author-link"]));
1558                 if ($r) {
1559                         if ($r[0]["nick"] != "")
1560                                 $repeated_owner["nick"] = $r[0]["nick"];
1561
1562                         $repeated_owner["location"] = $r[0]["location"];
1563                         $repeated_owner["about"] = $r[0]["about"];
1564                 }
1565
1566                 $entry_repeat = ostatus_entry($doc, $repeated_item, $repeated_owner, false, true);
1567                 $entry->appendChild($entry_repeat);
1568         } elseif ($repeat) {
1569                 $author = ostatus_add_author($doc, $owner);
1570                 $entry->appendChild($author);
1571         }
1572
1573         $mentioned = array();
1574
1575         if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
1576                 $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
1577                 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1578
1579                 $attributes = array(
1580                                 "ref" => $parent_item,
1581                                 "type" => "text/html",
1582                                 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1583                 xml_add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
1584
1585                 $attributes = array(
1586                                 "rel" => "related",
1587                                 "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]);
1588                 xml_add_element($doc, $entry, "link", "", $attributes);
1589
1590                 $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1591                 $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1592
1593                 $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
1594                                 intval($owner["uid"]),
1595                                 dbesc($parent_item));
1596                 if ($thrparent) {
1597                         $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1598                         $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1599                 }
1600         }
1601
1602         xml_add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation",
1603                                                         "href" => $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]));
1604         xml_add_element($doc, $entry, "ostatus:conversation", $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"]);
1605
1606         $tags = item_getfeedtags($item);
1607
1608         if(count($tags))
1609                 foreach($tags as $t)
1610                         if ($t[0] == "@")
1611                                 $mentioned[$t[1]] = $t[1];
1612
1613         // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
1614         $newmentions = array();
1615         foreach ($mentioned AS $mention) {
1616                 $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
1617                 $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
1618         }
1619         $mentioned = $newmentions;
1620
1621         foreach ($mentioned AS $mention) {
1622                 $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1623                         intval($owner["uid"]),
1624                         dbesc(normalise_link($mention)));
1625                 if ($r[0]["forum"] OR $r[0]["prv"])
1626                         xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1627                                                                                 "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
1628                                                                                 "href" => $mention));
1629                 else
1630                         xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1631                                                                                 "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
1632                                                                                 "href" => $mention));
1633         }
1634
1635         if (!$item["private"])
1636                 xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned",
1637                                                                 "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
1638                                                                 "href" => "http://activityschema.org/collection/public"));
1639
1640         if(count($tags))
1641                 foreach($tags as $t)
1642                         if ($t[0] != "@")
1643                                 xml_add_element($doc, $entry, "category", "", array("term" => $t[2]));
1644
1645         ostatus_get_attachment($doc, $entry, $item);
1646
1647         /// @TODO
1648         /// The API call has yet to be implemented
1649         //$attributes = array("href" => $a->get_baseurl()."/api/statuses/show/".$item["id"].".atom",
1650         //              "rel" => "self", "type" => "application/atom+xml");
1651         //xml_add_element($doc, $entry, "link", "", $attributes);
1652
1653         //$attributes = array("href" => $a->get_baseurl()."/api/statuses/show/".$item["id"].".atom",
1654         //              "rel" => "edit", "type" => "application/atom+xml");
1655         //xml_add_element($doc, $entry, "link", "", $attributes);
1656
1657         $app = $item["app"];
1658         if ($app == "")
1659                 $app = "web";
1660
1661
1662         $attributes = array("local_id" => $item["id"], "source" => $app);
1663         if ($is_repeat)
1664                 $attributes["repeat_of"] = $repeated_item["id"];
1665
1666         xml_add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
1667
1668         return $entry;
1669 }
1670
1671 function ostatus_feed(&$a, $owner_nick, $last_update) {
1672
1673         $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
1674                         FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
1675                         WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
1676                         dbesc($owner_nick));
1677         if (!$r)
1678                 return;
1679
1680         $owner = $r[0];
1681
1682         if(!strlen($last_update))
1683                 $last_update = 'now -30 days';
1684
1685         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
1686
1687         $items = q("SELECT STRAIGHT_JOIN `item`.*, `item`.`id` AS `item_id` FROM `item`
1688                         INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`
1689                         LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
1690                         WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
1691                                 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
1692                                 AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
1693                                         OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
1694                                 AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
1695                                         OR (`item`.`author-link` IN ('%s', '%s')))
1696                         ORDER BY `item`.`received` DESC
1697                         LIMIT 0, 300",
1698                         intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
1699                         //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1700                         //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
1701                         dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1702                         dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
1703                         dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
1704                         dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
1705                 );
1706
1707         $doc = new DOMDocument('1.0', 'utf-8');
1708         $doc->formatOutput = true;
1709
1710         $root = ostatus_add_header($doc, $owner);
1711
1712         foreach ($items AS $item) {
1713                 $entry = ostatus_entry($doc, $item, $owner);
1714                 $root->appendChild($entry);
1715         }
1716
1717         return(trim($doc->saveXML()));
1718 }
1719
1720 function ostatus_salmon($item,$owner) {
1721
1722         $doc = new DOMDocument('1.0', 'utf-8');
1723         $doc->formatOutput = true;
1724
1725         $entry = ostatus_entry($doc, $item, $owner, true);
1726
1727         $doc->appendChild($entry);
1728
1729         return(trim($doc->saveXML()));
1730 }
1731 ?>