]> git.mxchange.org Git - friendica.git/blob - include/ostatus.php
Revert "Coding convention applied - part 1"
[friendica.git] / include / ostatus.php
1 <?php
2 /**
3  * @file include/ostatus.php
4  */
5
6 require_once("include/Contact.php");
7 require_once("include/threads.php");
8 require_once("include/html2bbcode.php");
9 require_once("include/bbcode.php");
10 require_once("include/items.php");
11 require_once("mod/share.php");
12 require_once("include/enotify.php");
13 require_once("include/socgraph.php");
14 require_once("include/Photo.php");
15 require_once("include/Scrape.php");
16 require_once("include/follow.php");
17 require_once("include/api.php");
18 require_once("mod/proxy.php");
19 require_once("include/xml.php");
20
21 /**
22  * @brief This class contain functions for the OStatus protocol
23  *
24  */
25 class ostatus {
26         const OSTATUS_DEFAULT_POLL_INTERVAL = 30; // given in minutes
27         const OSTATUS_DEFAULT_POLL_TIMEFRAME = 1440; // given in minutes
28         const OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS = 14400; // given in minutes
29
30         /**
31          * @brief Fetches author data
32          *
33          * @param object $xpath The xpath object
34          * @param object $context The xml context of the author detals
35          * @param array $importer user record of the importing user
36          * @param array $contact Called by reference, will contain the fetched contact
37          * @param bool $onlyfetch Only fetch the header without updating the contact entries
38          *
39          * @return array Array of author related entries for the item
40          */
41         private function fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) {
42
43                 $author = array();
44                 $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
45                 $author["author-name"] = $xpath->evaluate('atom:author/atom:name/text()', $context)->item(0)->nodeValue;
46
47                 $aliaslink = $author["author-link"];
48
49                 $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
50                 if (is_object($alternate))
51                         foreach($alternate AS $attributes)
52                                 if ($attributes->name == "href")
53                                         $author["author-link"] = $attributes->textContent;
54
55                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
56                         intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
57                         dbesc(normalise_link($aliaslink)), dbesc(NETWORK_STATUSNET));
58                 if ($r) {
59                         $contact = $r[0];
60                         $author["contact-id"] = $r[0]["id"];
61                 } else
62                         $author["contact-id"] = $contact["id"];
63
64                 $avatarlist = array();
65                 $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
66                 foreach($avatars AS $avatar) {
67                         $href = "";
68                         $width = 0;
69                         foreach($avatar->attributes AS $attributes) {
70                                 if ($attributes->name == "href")
71                                         $href = $attributes->textContent;
72                                 if ($attributes->name == "width")
73                                         $width = $attributes->textContent;
74                         }
75                         if (($width > 0) AND ($href != ""))
76                                 $avatarlist[$width] = $href;
77                 }
78                 if (count($avatarlist) > 0) {
79                         krsort($avatarlist);
80                         $author["author-avatar"] = current($avatarlist);
81                 }
82
83                 $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
84                 if ($displayname != "")
85                         $author["author-name"] = $displayname;
86
87                 $author["owner-name"] = $author["author-name"];
88                 $author["owner-link"] = $author["author-link"];
89                 $author["owner-avatar"] = $author["author-avatar"];
90
91                 // Only update the contacts if it is an OStatus contact
92                 if ($r AND !$onlyfetch AND ($contact["network"] == NETWORK_OSTATUS)) {
93
94                         // Update contact data
95
96                         // This query doesn't seem to work
97                         // $value = $xpath->query("atom:link[@rel='salmon']", $context)->item(0)->nodeValue;
98                         // if ($value != "")
99                         //      $contact["notify"] = $value;
100
101                         // This query doesn't seem to work as well - I hate these queries
102                         // $value = $xpath->query("atom:link[@rel='self' and @type='application/atom+xml']", $context)->item(0)->nodeValue;
103                         // if ($value != "")
104                         //      $contact["poll"] = $value;
105
106                         $value = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
107                         if ($value != "")
108                                 $contact["alias"] = $value;
109
110                         $value = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
111                         if ($value != "")
112                                 $contact["name"] = $value;
113
114                         $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
115                         if ($value != "")
116                                 $contact["nick"] = $value;
117
118                         $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue;
119                         if ($value != "")
120                                 $contact["about"] = html2bbcode($value);
121
122                         $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue;
123                         if ($value != "")
124                                 $contact["location"] = $value;
125
126                         if (($contact["name"] != $r[0]["name"]) OR ($contact["nick"] != $r[0]["nick"]) OR ($contact["about"] != $r[0]["about"]) OR
127                                 ($contact["alias"] != $r[0]["alias"]) OR ($contact["location"] != $r[0]["location"])) {
128
129                                 logger("Update contact data for contact ".$contact["id"], LOGGER_DEBUG);
130
131                                 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `alias` = '%s', `about` = '%s', `location` = '%s', `name-date` = '%s' WHERE `id` = %d",
132                                         dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["alias"]),
133                                         dbesc($contact["about"]), dbesc($contact["location"]),
134                                         dbesc(datetime_convert()), intval($contact["id"]));
135
136                                 poco_check($contact["url"], $contact["name"], $contact["network"], $author["author-avatar"], $contact["about"], $contact["location"],
137                                                         "", "", "", datetime_convert(), 2, $contact["id"], $contact["uid"]);
138                         }
139
140                         if (isset($author["author-avatar"]) AND ($author["author-avatar"] != $r[0]['avatar'])) {
141                                 logger("Update profile picture for contact ".$contact["id"], LOGGER_DEBUG);
142
143                                 update_contact_avatar($author["author-avatar"], $importer["uid"], $contact["id"]);
144                         }
145
146                         // Ensure that we are having this contact (with uid=0)
147                         $cid = get_contact($author["author-link"], 0);
148
149                         if ($cid) {
150                                 // Update it with the current values
151                                 q("UPDATE `contact` SET `url` = '%s', `name` = '%s', `nick` = '%s', `alias` = '%s',
152                                                 `about` = '%s', `location` = '%s',
153                                                 `success_update` = '%s', `last-update` = '%s'
154                                         WHERE `id` = %d",
155                                         dbesc($author["author-link"]), dbesc($contact["name"]), dbesc($contact["nick"]),
156                                         dbesc($contact["alias"]), dbesc($contact["about"]), dbesc($contact["location"]),
157                                         dbesc(datetime_convert()), dbesc(datetime_convert()), intval($cid));
158
159                                 // Update the avatar
160                                 update_contact_avatar($author["author-avatar"], 0, $cid);
161                         }
162
163                         $contact["generation"] = 2;
164                         $contact["hide"] = false; // OStatus contacts are never hidden
165                         $contact["photo"] = $author["author-avatar"];
166                         update_gcontact($contact);
167                 }
168
169                 return($author);
170         }
171
172         /**
173          * @brief Fetches author data from a given XML string
174          *
175          * @param string $xml The XML
176          * @param array $importer user record of the importing user
177          *
178          * @return array Array of author related entries for the item
179          */
180         public static function salmon_author($xml, $importer) {
181
182                 if ($xml == "")
183                         return;
184
185                 $doc = new DOMDocument();
186                 @$doc->loadXML($xml);
187
188                 $xpath = new DomXPath($doc);
189                 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
190                 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
191                 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
192                 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
193                 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
194                 $xpath->registerNamespace('poco', NAMESPACE_POCO);
195                 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
196                 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
197
198                 $entries = $xpath->query('/atom:entry');
199
200                 foreach ($entries AS $entry) {
201                         // fetch the author
202                         $author = self::fetchauthor($xpath, $entry, $importer, $contact, true);
203                         return $author;
204                 }
205         }
206
207         /**
208          * @brief Imports an XML string containing OStatus elements
209          *
210          * @param string $xml The XML
211          * @param array $importer user record of the importing user
212          * @param $contact
213          * @param array $hub Called by reference, returns the fetched hub data
214          */
215         public static function import($xml,$importer,&$contact, &$hub) {
216                 /// @todo this function is too long. It has to be split in many parts
217
218                 logger("Import OStatus message", LOGGER_DEBUG);
219
220                 if ($xml == "")
221                         return;
222
223                 //$tempfile = tempnam(get_temppath(), "import");
224                 //file_put_contents($tempfile, $xml);
225
226                 $doc = new DOMDocument();
227                 @$doc->loadXML($xml);
228
229                 $xpath = new DomXPath($doc);
230                 $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
231                 $xpath->registerNamespace('thr', NAMESPACE_THREAD);
232                 $xpath->registerNamespace('georss', NAMESPACE_GEORSS);
233                 $xpath->registerNamespace('activity', NAMESPACE_ACTIVITY);
234                 $xpath->registerNamespace('media', NAMESPACE_MEDIA);
235                 $xpath->registerNamespace('poco', NAMESPACE_POCO);
236                 $xpath->registerNamespace('ostatus', NAMESPACE_OSTATUS);
237                 $xpath->registerNamespace('statusnet', NAMESPACE_STATUSNET);
238
239                 $gub = "";
240                 $hub_attributes = $xpath->query("/atom:feed/atom:link[@rel='hub']")->item(0)->attributes;
241                 if (is_object($hub_attributes))
242                         foreach($hub_attributes AS $hub_attribute)
243                                 if ($hub_attribute->name == "href") {
244                                         $hub = $hub_attribute->textContent;
245                                         logger("Found hub ".$hub, LOGGER_DEBUG);
246                                 }
247
248                 $header = array();
249                 $header["uid"] = $importer["uid"];
250                 $header["network"] = NETWORK_OSTATUS;
251                 $header["type"] = "remote";
252                 $header["wall"] = 0;
253                 $header["origin"] = 0;
254                 $header["gravity"] = GRAVITY_PARENT;
255
256                 // it could either be a received post or a post we fetched by ourselves
257                 // depending on that, the first node is different
258                 $first_child = $doc->firstChild->tagName;
259
260                 if ($first_child == "feed")
261                         $entries = $xpath->query('/atom:feed/atom:entry');
262                 else
263                         $entries = $xpath->query('/atom:entry');
264
265                 $conversation = "";
266                 $conversationlist = array();
267                 $item_id = 0;
268
269                 // Reverse the order of the entries
270                 $entrylist = array();
271
272                 foreach ($entries AS $entry)
273                         $entrylist[] = $entry;
274
275                 foreach (array_reverse($entrylist) AS $entry) {
276
277                         $mention = false;
278
279                         // fetch the author
280                         if ($first_child == "feed")
281                                 $author = self::fetchauthor($xpath, $doc->firstChild, $importer, $contact, false);
282                         else
283                                 $author = self::fetchauthor($xpath, $entry, $importer, $contact, false);
284
285                         $value = $xpath->evaluate('atom:author/poco:preferredUsername/text()', $context)->item(0)->nodeValue;
286                         if ($value != "")
287                                 $nickname = $value;
288                         else
289                                 $nickname = $author["author-name"];
290
291                         $item = array_merge($header, $author);
292
293                         // Now get the item
294                         $item["uri"] = $xpath->query('atom:id/text()', $entry)->item(0)->nodeValue;
295
296                         $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
297                                 intval($importer["uid"]), dbesc($item["uri"]));
298                         if ($r) {
299                                 logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
300                                 continue;
301                         }
302
303                         $item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
304                         $item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
305
306                         if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
307                                 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
308                                 $item["body"] = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
309                         } elseif ($item["object-type"] == ACTIVITY_OBJ_QUESTION)
310                                 $item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
311
312                         $item["object"] = $xml;
313                         $item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
314
315                         /// @TODO
316                         /// Delete a message
317                         if ($item["verb"] == "qvitter-delete-notice") {
318                                 // ignore "Delete" messages (by now)
319                                 logger("Ignore delete message ".print_r($item, true));
320                                 continue;
321                         }
322
323                         if ($item["verb"] == ACTIVITY_JOIN) {
324                                 // ignore "Join" messages
325                                 logger("Ignore join message ".print_r($item, true));
326                                 continue;
327                         }
328
329                         if ($item["verb"] == ACTIVITY_FOLLOW) {
330                                 new_follower($importer, $contact, $item, $nickname);
331                                 continue;
332                         }
333
334                         if ($item["verb"] == NAMESPACE_OSTATUS."/unfollow") {
335                                 lose_follower($importer, $contact, $item, $dummy);
336                                 continue;
337                         }
338
339                         if ($item["verb"] == ACTIVITY_FAVORITE) {
340                                 $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue;
341                                 logger("Favorite ".$orig_uri." ".print_r($item, true));
342
343                                 $item["verb"] = ACTIVITY_LIKE;
344                                 $item["parent-uri"] = $orig_uri;
345                                 $item["gravity"] = GRAVITY_LIKE;
346                         }
347
348                         if ($item["verb"] == NAMESPACE_OSTATUS."/unfavorite") {
349                                 // Ignore "Unfavorite" message
350                                 logger("Ignore unfavorite message ".print_r($item, true));
351                                 continue;
352                         }
353
354                         // http://activitystrea.ms/schema/1.0/rsvp-yes
355                         if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE)))
356                                 logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
357
358                         $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
359                         $item["edited"] = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
360                         $conversation = $xpath->query('ostatus:conversation/text()', $entry)->item(0)->nodeValue;
361
362                         $related = "";
363
364                         $inreplyto = $xpath->query('thr:in-reply-to', $entry);
365                         if (is_object($inreplyto->item(0))) {
366                                 foreach($inreplyto->item(0)->attributes AS $attributes) {
367                                         if ($attributes->name == "ref")
368                                                 $item["parent-uri"] = $attributes->textContent;
369                                         if ($attributes->name == "href")
370                                                 $related = $attributes->textContent;
371                                 }
372                         }
373
374                         $georsspoint = $xpath->query('georss:point', $entry);
375                         if ($georsspoint)
376                                 $item["coord"] = $georsspoint->item(0)->nodeValue;
377
378                         $categories = $xpath->query('atom:category', $entry);
379                         if ($categories) {
380                                 foreach ($categories AS $category) {
381                                         foreach($category->attributes AS $attributes)
382                                                 if ($attributes->name == "term") {
383                                                         $term = $attributes->textContent;
384                                                         if(strlen($item["tag"]))
385                                                                 $item["tag"] .= ',';
386                                                         $item["tag"] .= "#[url=".App::get_baseurl()."/search?tag=".$term."]".$term."[/url]";
387                                                 }
388                                 }
389                         }
390
391                         $self = "";
392                         $enclosure = "";
393
394                         $links = $xpath->query('atom:link', $entry);
395                         if ($links) {
396                                 $rel = "";
397                                 $href = "";
398                                 $type = "";
399                                 $length = "0";
400                                 $title = "";
401                                 foreach ($links AS $link) {
402                                         foreach($link->attributes AS $attributes) {
403                                                 if ($attributes->name == "href")
404                                                         $href = $attributes->textContent;
405                                                 if ($attributes->name == "rel")
406                                                         $rel = $attributes->textContent;
407                                                 if ($attributes->name == "type")
408                                                         $type = $attributes->textContent;
409                                                 if ($attributes->name == "length")
410                                                         $length = $attributes->textContent;
411                                                 if ($attributes->name == "title")
412                                                         $title = $attributes->textContent;
413                                         }
414                                         if (($rel != "") AND ($href != ""))
415                                                 switch($rel) {
416                                                         case "alternate":
417                                                                 $item["plink"] = $href;
418                                                                 if (($item["object-type"] == ACTIVITY_OBJ_QUESTION) OR
419                                                                         ($item["object-type"] == ACTIVITY_OBJ_EVENT))
420                                                                         $item["body"] .= add_page_info($href);
421                                                                 break;
422                                                         case "ostatus:conversation":
423                                                                 $conversation = $href;
424                                                                 break;
425                                                         case "enclosure":
426                                                                 $enclosure = $href;
427                                                                 if(strlen($item["attach"]))
428                                                                         $item["attach"] .= ',';
429
430                                                                 $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'" title="'.$title.'"[/attach]';
431                                                                 break;
432                                                         case "related":
433                                                                 if ($item["object-type"] != ACTIVITY_OBJ_BOOKMARK) {
434                                                                         if (!isset($item["parent-uri"]))
435                                                                                 $item["parent-uri"] = $href;
436
437                                                                         if ($related == "")
438                                                                                 $related = $href;
439                                                                 } else
440                                                                         $item["body"] .= add_page_info($href);
441                                                                 break;
442                                                         case "self":
443                                                                 $self = $href;
444                                                                 break;
445                                                         case "mentioned":
446                                                                 // Notification check
447                                                                 if ($importer["nurl"] == normalise_link($href))
448                                                                         $mention = true;
449                                                                 break;
450                                                 }
451                                 }
452                         }
453
454                         $local_id = "";
455                         $repeat_of = "";
456
457                         $notice_info = $xpath->query('statusnet:notice_info', $entry);
458                         if ($notice_info AND ($notice_info->length > 0)) {
459                                 foreach($notice_info->item(0)->attributes AS $attributes) {
460                                         if ($attributes->name == "source")
461                                                 $item["app"] = strip_tags($attributes->textContent);
462                                         if ($attributes->name == "local_id")
463                                                 $local_id = $attributes->textContent;
464                                         if ($attributes->name == "repeat_of")
465                                                 $repeat_of = $attributes->textContent;
466                                 }
467                         }
468
469                         // Is it a repeated post?
470                         if (($repeat_of != "") OR ($item["verb"] == ACTIVITY_SHARE)) {
471                                 $activityobjects = $xpath->query('activity:object', $entry)->item(0);
472
473                                 if (is_object($activityobjects)) {
474
475                                         $orig_uri = $xpath->query("activity:object/atom:id", $activityobjects)->item(0)->nodeValue;
476                                         if (!isset($orig_uri))
477                                                 $orig_uri = $xpath->query('atom:id/text()', $activityobjects)->item(0)->nodeValue;
478
479                                         $orig_links = $xpath->query("activity:object/atom:link[@rel='alternate']", $activityobjects);
480                                         if ($orig_links AND ($orig_links->length > 0))
481                                                 foreach($orig_links->item(0)->attributes AS $attributes)
482                                                         if ($attributes->name == "href")
483                                                                 $orig_link = $attributes->textContent;
484
485                                         if (!isset($orig_link))
486                                                 $orig_link = $xpath->query("atom:link[@rel='alternate']", $activityobjects)->item(0)->nodeValue;
487
488                                         if (!isset($orig_link))
489                                                 $orig_link =  self::convert_href($orig_uri);
490
491                                         $orig_body = $xpath->query('activity:object/atom:content/text()', $activityobjects)->item(0)->nodeValue;
492                                         if (!isset($orig_body))
493                                                 $orig_body = $xpath->query('atom:content/text()', $activityobjects)->item(0)->nodeValue;
494
495                                         $orig_created = $xpath->query('atom:published/text()', $activityobjects)->item(0)->nodeValue;
496                                         $orig_edited = $xpath->query('atom:updated/text()', $activityobjects)->item(0)->nodeValue;
497
498                                         $orig_contact = $contact;
499                                         $orig_author = self::fetchauthor($xpath, $activityobjects, $importer, $orig_contact, false);
500
501                                         $item["author-name"] = $orig_author["author-name"];
502                                         $item["author-link"] = $orig_author["author-link"];
503                                         $item["author-avatar"] = $orig_author["author-avatar"];
504                                         $item["body"] = add_page_info_to_body(html2bbcode($orig_body));
505                                         $item["created"] = $orig_created;
506                                         $item["edited"] = $orig_edited;
507
508                                         $item["uri"] = $orig_uri;
509                                         $item["plink"] = $orig_link;
510
511                                         $item["verb"] = $xpath->query('activity:verb/text()', $activityobjects)->item(0)->nodeValue;
512
513                                         $item["object-type"] = $xpath->query('activity:object/activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
514                                         if (!isset($item["object-type"]))
515                                                 $item["object-type"] = $xpath->query('activity:object-type/text()', $activityobjects)->item(0)->nodeValue;
516                                 }
517                         }
518
519                         //if ($enclosure != "")
520                         //      $item["body"] .= add_page_info($enclosure);
521
522                         if (isset($item["parent-uri"])) {
523                                 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
524                                         intval($importer["uid"]), dbesc($item["parent-uri"]));
525
526                                 // Only fetch missing stuff if it is a comment or reshare.
527                                 if (in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_SHARE)) AND
528                                         !dbm::is_result($r) AND ($related != "")) {
529                                         $reply_path = str_replace("/notice/", "/api/statuses/show/", $related).".atom";
530
531                                         if ($reply_path != $related) {
532                                                 logger("Fetching related items for user ".$importer["uid"]." from ".$reply_path, LOGGER_DEBUG);
533                                                 $reply_xml = fetch_url($reply_path);
534
535                                                 $reply_contact = $contact;
536                                                 self::import($reply_xml,$importer,$reply_contact, $reply_hub);
537
538                                                 // After the import try to fetch the parent item again
539                                                 $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
540                                                         intval($importer["uid"]), dbesc($item["parent-uri"]));
541                                         }
542                                 }
543                                 if ($r) {
544                                         $item["type"] = 'remote-comment';
545                                         $item["gravity"] = GRAVITY_COMMENT;
546                                 }
547                         } else
548                                 $item["parent-uri"] = $item["uri"];
549
550                         $item_id = self::completion($conversation, $importer["uid"], $item, $self);
551
552                         if (!$item_id) {
553                                 logger("Error storing item", LOGGER_DEBUG);
554                                 continue;
555                         }
556
557                         logger("Item was stored with id ".$item_id, LOGGER_DEBUG);
558                 }
559         }
560
561         /**
562          * @brief Create an url out of an uri
563          *
564          * @param string $href URI in the format "parameter1:parameter1:..."
565          *
566          * @return string URL in the format http(s)://....
567          */
568         public static function convert_href($href) {
569                 $elements = explode(":",$href);
570
571                 if ((count($elements) <= 2) OR ($elements[0] != "tag"))
572                         return $href;
573
574                 $server = explode(",", $elements[1]);
575                 $conversation = explode("=", $elements[2]);
576
577                 if ((count($elements) == 4) AND ($elements[2] == "post"))
578                         return "http://".$server[0]."/notice/".$elements[3];
579
580                 if ((count($conversation) != 2) OR ($conversation[1] ==""))
581                         return $href;
582
583                 if ($elements[3] == "objectType=thread")
584                         return "http://".$server[0]."/conversation/".$conversation[1];
585                 else
586                         return "http://".$server[0]."/notice/".$conversation[1];
587
588                 return $href;
589         }
590
591         /**
592          * @brief Checks if there are entries in conversations that aren't present on our side
593          *
594          * @param bool $mentions Fetch conversations where we are mentioned
595          * @param bool $override Override the interval setting
596          */
597         public static function check_conversations($mentions = false, $override = false) {
598                 $last = get_config('system','ostatus_last_poll');
599
600                 $poll_interval = intval(get_config('system','ostatus_poll_interval'));
601                 if (!$poll_interval) {
602                         $poll_interval = self::OSTATUS_DEFAULT_POLL_INTERVAL;
603                 }
604
605                 // Don't poll if the interval is set negative
606                 if (($poll_interval < 0) AND !$override) {
607                         return;
608                 }
609
610                 if (!$mentions) {
611                         $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
612                         if (!$poll_timeframe) {
613                                 $poll_timeframe = self::OSTATUS_DEFAULT_POLL_TIMEFRAME;
614                         }
615                 } else {
616                         $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
617                         if (!$poll_timeframe) {
618                                 $poll_timeframe = self::OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS;
619                         }
620                 }
621
622
623                 if ($last AND !$override) {
624                         $next = $last + ($poll_interval * 60);
625                         if ($next > time()) {
626                                 logger('poll interval not reached');
627                                 return;
628                         }
629                 }
630
631                 logger('cron_start');
632
633                 $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
634
635                 if ($mentions) {
636                         $conversations = q("SELECT `term`.`oid`, `term`.`url`, `term`.`uid` FROM `term`
637                                                 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `term`.`oid` AND `thread`.`uid` = `term`.`uid`
638                                                 WHERE `term`.`type` = 7 AND `term`.`term` > '%s' AND `thread`.`mention`
639                                                 GROUP BY `term`.`url`, `term`.`uid` ORDER BY `term`.`term` DESC", dbesc($start));
640                 } else {
641                         $conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
642                                                 WHERE `type` = 7 AND `term` > '%s'
643                                                 GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
644                 }
645
646                 foreach ($conversations AS $conversation) {
647                         self::completion($conversation['url'], $conversation['uid']);
648                 }
649
650                 logger('cron_end');
651
652                 set_config('system','ostatus_last_poll', time());
653         }
654
655         /**
656          * @brief Updates the gcontact table with actor data from the conversation
657          *
658          * @param object $actor The actor object that contains the contact data
659          */
660         private function conv_fetch_actor($actor) {
661
662                 // We set the generation to "3" since the data here is not as reliable as the data we get on other occasions
663                 $contact = array("network" => NETWORK_OSTATUS, "generation" => 3);
664
665                 if (isset($actor->url))
666                         $contact["url"] = $actor->url;
667
668                 if (isset($actor->displayName))
669                         $contact["name"] = $actor->displayName;
670
671                 if (isset($actor->portablecontacts_net->displayName))
672                         $contact["name"] = $actor->portablecontacts_net->displayName;
673
674                 if (isset($actor->portablecontacts_net->preferredUsername))
675                         $contact["nick"] = $actor->portablecontacts_net->preferredUsername;
676
677                 if (isset($actor->id))
678                         $contact["alias"] = $actor->id;
679
680                 if (isset($actor->summary))
681                         $contact["about"] = $actor->summary;
682
683                 if (isset($actor->portablecontacts_net->note))
684                         $contact["about"] = $actor->portablecontacts_net->note;
685
686                 if (isset($actor->portablecontacts_net->addresses->formatted))
687                         $contact["location"] = $actor->portablecontacts_net->addresses->formatted;
688
689
690                 if (isset($actor->image->url))
691                         $contact["photo"] = $actor->image->url;
692
693                 if (isset($actor->image->width))
694                         $avatarwidth = $actor->image->width;
695
696                 if (is_array($actor->status_net->avatarLinks))
697                         foreach ($actor->status_net->avatarLinks AS $avatar) {
698                                 if ($avatarsize < $avatar->width) {
699                                         $contact["photo"] = $avatar->url;
700                                         $avatarsize = $avatar->width;
701                                 }
702                         }
703
704                 $contact["hide"] = false; // OStatus contacts are never hidden
705                 update_gcontact($contact);
706         }
707
708         /**
709          * @brief Fetches the conversation url for a given item link or conversation id
710          *
711          * @param string $self The link to the posting
712          * @param string $conversation_id The conversation id
713          *
714          * @return string The conversation url
715          */
716         private function fetch_conversation($self, $conversation_id = "") {
717
718                 if ($conversation_id != "") {
719                         $elements = explode(":", $conversation_id);
720
721                         if ((count($elements) <= 2) OR ($elements[0] != "tag"))
722                                 return $conversation_id;
723                 }
724
725                 if ($self == "")
726                         return "";
727
728                 $json = str_replace(".atom", ".json", $self);
729
730                 $raw = fetch_url($json);
731                 if ($raw == "")
732                         return "";
733
734                 $data = json_decode($raw);
735                 if (!is_object($data))
736                         return "";
737
738                 $conversation_id = $data->statusnet_conversation_id;
739
740                 $pos = strpos($self, "/api/statuses/show/");
741                 $base_url = substr($self, 0, $pos);
742
743                 return $base_url."/conversation/".$conversation_id;
744         }
745
746         /**
747          * @brief Fetches actor details of a given actor and user id
748          *
749          * @param string $actor The actor url
750          * @param int $uid The user id
751          * @param int $contact_id The default contact-id
752          *
753          * @return array Array with actor details
754          */
755         private function get_actor_details($actor, $uid, $contact_id) {
756
757                 $details = array();
758
759                 $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'",
760                                         $uid, normalise_link($actor), NETWORK_STATUSNET);
761
762                 if (!$contact)
763                         $contact = q("SELECT `id`, `rel`, `network` FROM `contact` WHERE `uid` = %d AND `alias` IN ('%s', '%s') AND `network` != '%s'",
764                                         $uid, $actor, normalise_link($actor), NETWORK_STATUSNET);
765
766                 if ($contact) {
767                         logger("Found contact for url ".$actor, LOGGER_DEBUG);
768                         $details["contact_id"] = $contact[0]["id"];
769                         $details["network"] = $contact[0]["network"];
770
771                         $details["not_following"] = !in_array($contact[0]["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND));
772                 } else {
773                         logger("No contact found for user ".$uid." and url ".$actor, LOGGER_DEBUG);
774
775                         // Adding a global contact
776                         /// @TODO Use this data for the post
777                         $details["global_contact_id"] = get_contact($actor, 0);
778
779                         logger("Global contact ".$global_contact_id." found for url ".$actor, LOGGER_DEBUG);
780
781                         $details["contact_id"] = $contact_id;
782                         $details["network"] = NETWORK_OSTATUS;
783
784                         $details["not_following"] = true;
785                 }
786
787                 return $details;
788         }
789
790         /**
791          * @brief Stores an item and completes the thread
792          *
793          * @param string $conversation_url The URI of the conversation
794          * @param integer $uid The user id
795          * @param array $item Data of the item that is to be posted
796          *
797          * @return integer The item id of the posted item array
798          */
799         private function completion($conversation_url, $uid, $item = array(), $self = "") {
800
801                 /// @todo This function is totally ugly and has to be rewritten totally
802
803                 $item_stored = -1;
804
805                 $conversation_url = self::fetch_conversation($self, $conversation_url);
806
807                 // If the thread shouldn't be completed then store the item and go away
808                 // Don't do a completion on liked content
809                 if (((intval(get_config('system','ostatus_poll_interval')) == -2) AND (count($item) > 0)) OR
810                         ($item["verb"] == ACTIVITY_LIKE) OR ($conversation_url == "")) {
811                         $item_stored = item_store($item, true);
812                         return($item_stored);
813                 }
814
815                 // Get the parent
816                 $parents = q("SELECT `item`.`id`, `item`.`parent`, `item`.`uri`, `item`.`contact-id`, `item`.`type`,
817                                 `item`.`verb`, `item`.`visible` FROM `term`
818                                 STRAIGHT_JOIN `item` AS `thritem` ON `thritem`.`parent` = `term`.`oid`
819                                 STRAIGHT_JOIN `item` ON `item`.`parent` = `thritem`.`parent`
820                                 WHERE `term`.`uid` = %d AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`url` = '%s'",
821                                 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
822
823 /*              2016-10-23: The old query will be kept until we are sure that the query above is a good and fast replacement
824
825                 $parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
826                                 (SELECT `parent` FROM `item` WHERE `id` IN
827                                         (SELECT `oid` FROM `term` WHERE `uid` = %d AND `otype` = %d AND `type` = %d AND `url` = '%s'))",
828                                 intval($uid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc($conversation_url));
829 */
830                 if ($parents)
831                         $parent = $parents[0];
832                 elseif (count($item) > 0) {
833                         $parent = $item;
834                         $parent["type"] = "remote";
835                         $parent["verb"] = ACTIVITY_POST;
836                         $parent["visible"] = 1;
837                 } else {
838                         // Preset the parent
839                         $r = q("SELECT `id` FROM `contact` WHERE `self` AND `uid`=%d", $uid);
840                         if (!$r)
841                                 return(-2);
842
843                         $parent = array();
844                         $parent["id"] = 0;
845                         $parent["parent"] = 0;
846                         $parent["uri"] = "";
847                         $parent["contact-id"] = $r[0]["id"];
848                         $parent["type"] = "remote";
849                         $parent["verb"] = ACTIVITY_POST;
850                         $parent["visible"] = 1;
851                 }
852
853                 $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
854                 $pageno = 1;
855                 $items = array();
856
857                 logger('fetching conversation url '.$conv.' (Self: '.$self.') for user '.$uid);
858
859                 do {
860                         $conv_arr = z_fetch_url($conv."?page=".$pageno);
861
862                         // If it is a non-ssl site and there is an error, then try ssl or vice versa
863                         if (!$conv_arr["success"] AND (substr($conv, 0, 7) == "http://")) {
864                                 $conv = str_replace("http://", "https://", $conv);
865                                 $conv_as = fetch_url($conv."?page=".$pageno);
866                         } elseif (!$conv_arr["success"] AND (substr($conv, 0, 8) == "https://")) {
867                                 $conv = str_replace("https://", "http://", $conv);
868                                 $conv_as = fetch_url($conv."?page=".$pageno);
869                         } else
870                                 $conv_as = $conv_arr["body"];
871
872                         $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
873                         $conv_as = json_decode($conv_as);
874
875                         $no_of_items = sizeof($items);
876
877                         if (@is_array($conv_as->items))
878                                 foreach ($conv_as->items AS $single_item)
879                                         $items[$single_item->id] = $single_item;
880
881                         if ($no_of_items == sizeof($items))
882                                 break;
883
884                         $pageno++;
885
886                 } while (true);
887
888                 logger('fetching conversation done. Found '.count($items).' items');
889
890                 if (!sizeof($items)) {
891                         if (count($item) > 0) {
892                                 $item_stored = item_store($item, true);
893
894                                 if ($item_stored) {
895                                         logger("Conversation ".$conversation_url." couldn't be fetched. Item uri ".$item["uri"]." stored: ".$item_stored, LOGGER_DEBUG);
896                                         self::store_conversation($item_id, $conversation_url);
897                                 }
898
899                                 return($item_stored);
900                         } else
901                                 return(-3);
902                 }
903
904                 $items = array_reverse($items);
905
906                 $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self`", intval($uid));
907                 $importer = $r[0];
908
909                 $new_parent = true;
910
911                 foreach ($items as $single_conv) {
912
913                         // Update the gcontact table
914                         self::conv_fetch_actor($single_conv->actor);
915
916                         // Test - remove before flight
917                         //$tempfile = tempnam(get_temppath(), "conversation");
918                         //file_put_contents($tempfile, json_encode($single_conv));
919
920                         $mention = false;
921
922                         if (isset($single_conv->object->id))
923                                 $single_conv->id = $single_conv->object->id;
924
925                         $plink = self::convert_href($single_conv->id);
926                         if (isset($single_conv->object->url))
927                                 $plink = self::convert_href($single_conv->object->url);
928
929                         if (@!$single_conv->id)
930                                 continue;
931
932                         logger("Got id ".$single_conv->id, LOGGER_DEBUG);
933
934                         if ($first_id == "") {
935                                 $first_id = $single_conv->id;
936
937                                 // The first post of the conversation isn't our first post. There are three options:
938                                 // 1. Our conversation hasn't the "real" thread starter
939                                 // 2. This first post is a post inside our thread
940                                 // 3. This first post is a post inside another thread
941                                 if (($first_id != $parent["uri"]) AND ($parent["uri"] != "")) {
942
943                                         $new_parent = true;
944
945                                         $new_parents = q("SELECT `id`, `parent`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `id` IN
946                                                                 (SELECT `parent` FROM `item`
947                                                                         WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s')) LIMIT 1",
948                                                 intval($uid), dbesc($first_id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
949                                         if ($new_parents) {
950                                                 if ($new_parents[0]["parent"] == $parent["parent"]) {
951                                                         // Option 2: This post is already present inside our thread - but not as thread starter
952                                                         logger("Option 2: uri present in our thread: ".$first_id, LOGGER_DEBUG);
953                                                         $first_id = $parent["uri"];
954                                                 } else {
955                                                         // Option 3: Not so good. We have mixed parents. We have to see how to clean this up.
956                                                         // For now just take the new parent.
957                                                         $parent = $new_parents[0];
958                                                         $first_id = $parent["uri"];
959                                                         logger("Option 3: mixed parents for uri ".$first_id, LOGGER_DEBUG);
960                                                 }
961                                         } else {
962                                                 // Option 1: We hadn't got the real thread starter
963                                                 // We have to clean up our existing messages.
964                                                 $parent["id"] = 0;
965                                                 $parent["uri"] = $first_id;
966                                                 logger("Option 1: we have a new parent: ".$first_id, LOGGER_DEBUG);
967                                         }
968                                 } elseif ($parent["uri"] == "") {
969                                         $parent["id"] = 0;
970                                         $parent["uri"] = $first_id;
971                                 }
972                         }
973
974                         $parent_uri = $parent["uri"];
975
976                         // "context" only seems to exist on older servers
977                         if (isset($single_conv->context->inReplyTo->id)) {
978                                 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
979                                                         intval($uid), dbesc($single_conv->context->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
980                                 if ($parent_exists)
981                                         $parent_uri = $single_conv->context->inReplyTo->id;
982                         }
983
984                         // This is the current way
985                         if (isset($single_conv->object->inReplyTo->id)) {
986                                 $parent_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
987                                                         intval($uid), dbesc($single_conv->object->inReplyTo->id), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
988                                 if ($parent_exists)
989                                         $parent_uri = $single_conv->object->inReplyTo->id;
990                         }
991
992                         $message_exists = q("SELECT `id`, `parent`, `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s','%s') LIMIT 1",
993                                                         intval($uid), dbesc($single_conv->id),
994                                                         dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
995                         if ($message_exists) {
996                                 logger("Message ".$single_conv->id." already existed on the system", LOGGER_DEBUG);
997
998                                 if ($parent["id"] != 0) {
999                                         $existing_message = $message_exists[0];
1000
1001                                         // We improved the way we fetch OStatus messages, this shouldn't happen very often now
1002                                         /// @TODO We have to change the shadow copies as well. This way here is really ugly.
1003                                         if ($existing_message["parent"] != $parent["id"]) {
1004                                                 logger('updating id '.$existing_message["id"].' with parent '.$existing_message["parent"].' to parent '.$parent["id"].' uri '.$parent["uri"].' thread '.$parent_uri, LOGGER_DEBUG);
1005
1006                                                 // Update the parent id of the selected item
1007                                                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `id` = %d",
1008                                                         intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["id"]));
1009
1010                                                 // Update the parent uri in the thread - but only if it points to itself
1011                                                 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE `id` = %d AND `uri` = `thr-parent`",
1012                                                         dbesc($parent_uri), intval($existing_message["id"]));
1013
1014                                                 // try to change all items of the same parent
1015                                                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
1016                                                         intval($parent["id"]), dbesc($parent["uri"]), intval($existing_message["parent"]));
1017
1018                                                 // Update the parent uri in the thread - but only if it points to itself
1019                                                 $r = q("UPDATE `item` SET `thr-parent` = '%s' WHERE (`parent` = %d) AND (`uri` = `thr-parent`)",
1020                                                         dbesc($parent["uri"]), intval($existing_message["parent"]));
1021
1022                                                 // Now delete the thread
1023                                                 delete_thread($existing_message["parent"]);
1024                                         }
1025                                 }
1026
1027                                 // The item we are having on the system is the one that we wanted to store via the item array
1028                                 if (isset($item["uri"]) AND ($item["uri"] == $existing_message["uri"])) {
1029                                         $item = array();
1030                                         $item_stored = 0;
1031                                 }
1032
1033                                 continue;
1034                         }
1035
1036                         if (is_array($single_conv->to))
1037                                 foreach($single_conv->to AS $to)
1038                                         if ($importer["nurl"] == normalise_link($to->id))
1039                                                 $mention = true;
1040
1041                         $actor = $single_conv->actor->id;
1042                         if (isset($single_conv->actor->url))
1043                                 $actor = $single_conv->actor->url;
1044
1045                         $details = self::get_actor_details($actor, $uid, $parent["contact-id"]);
1046
1047                         // Do we only want to import threads that were started by our contacts?
1048                         if ($details["not_following"] AND $new_parent AND get_config('system','ostatus_full_threads')) {
1049                                 logger("Don't import uri ".$first_id." because user ".$uid." doesn't follow the person ".$actor, LOGGER_DEBUG);
1050                                 continue;
1051                         }
1052
1053                         $arr = array();
1054                         $arr["network"] = $details["network"];
1055                         $arr["uri"] = $single_conv->id;
1056                         $arr["plink"] = $plink;
1057                         $arr["uid"] = $uid;
1058                         $arr["contact-id"] = $details["contact_id"];
1059                         $arr["parent-uri"] = $parent_uri;
1060                         $arr["created"] = $single_conv->published;
1061                         $arr["edited"] = $single_conv->published;
1062                         $arr["owner-name"] = $single_conv->actor->displayName;
1063                         if ($arr["owner-name"] == '')
1064                                 $arr["owner-name"] = $single_conv->actor->contact->displayName;
1065                         if ($arr["owner-name"] == '')
1066                                 $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
1067
1068                         $arr["owner-link"] = $actor;
1069                         $arr["owner-avatar"] = $single_conv->actor->image->url;
1070                         $arr["author-name"] = $arr["owner-name"];
1071                         $arr["author-link"] = $actor;
1072                         $arr["author-avatar"] = $single_conv->actor->image->url;
1073                         $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->content));
1074
1075                         if (isset($single_conv->status_net->notice_info->source))
1076                                 $arr["app"] = strip_tags($single_conv->status_net->notice_info->source);
1077                         elseif (isset($single_conv->statusnet->notice_info->source))
1078                                 $arr["app"] = strip_tags($single_conv->statusnet->notice_info->source);
1079                         elseif (isset($single_conv->statusnet_notice_info->source))
1080                                 $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
1081                         elseif (isset($single_conv->provider->displayName))
1082                                 $arr["app"] = $single_conv->provider->displayName;
1083                         else
1084                                 $arr["app"] = "OStatus";
1085
1086
1087                         $arr["object"] = json_encode($single_conv);
1088                         $arr["verb"] = $parent["verb"];
1089                         $arr["visible"] = $parent["visible"];
1090                         $arr["location"] = $single_conv->location->displayName;
1091                         $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
1092
1093                         // Is it a reshared item?
1094                         if (isset($single_conv->verb) AND ($single_conv->verb == "share") AND isset($single_conv->object)) {
1095                                 if (is_array($single_conv->object))
1096                                         $single_conv->object = $single_conv->object[0];
1097
1098                                 logger("Found reshared item ".$single_conv->object->id);
1099
1100                                 // $single_conv->object->context->conversation;
1101
1102                                 if (isset($single_conv->object->object->id))
1103                                         $arr["uri"] = $single_conv->object->object->id;
1104                                 else
1105                                         $arr["uri"] = $single_conv->object->id;
1106
1107                                 if (isset($single_conv->object->object->url))
1108                                         $plink = self::convert_href($single_conv->object->object->url);
1109                                 else
1110                                         $plink = self::convert_href($single_conv->object->url);
1111
1112                                 if (isset($single_conv->object->object->content))
1113                                         $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->object->content));
1114                                 else
1115                                         $arr["body"] = add_page_info_to_body(html2bbcode($single_conv->object->content));
1116
1117                                 $arr["plink"] = $plink;
1118
1119                                 $arr["created"] = $single_conv->object->published;
1120                                 $arr["edited"] = $single_conv->object->published;
1121
1122                                 $arr["author-name"] = $single_conv->object->actor->displayName;
1123                                 if ($arr["owner-name"] == '')
1124                                         $arr["author-name"] = $single_conv->object->actor->contact->displayName;
1125
1126                                 $arr["author-link"] = $single_conv->object->actor->url;
1127                                 $arr["author-avatar"] = $single_conv->object->actor->image->url;
1128
1129                                 $arr["app"] = $single_conv->object->provider->displayName."#";
1130                                 //$arr["verb"] = $single_conv->object->verb;
1131
1132                                 $arr["location"] = $single_conv->object->location->displayName;
1133                                 $arr["coord"] = trim($single_conv->object->location->lat." ".$single_conv->object->location->lon);
1134                         }
1135
1136                         if ($arr["location"] == "")
1137                                 unset($arr["location"]);
1138
1139                         if ($arr["coord"] == "")
1140                                 unset($arr["coord"]);
1141
1142                         // Copy fields from given item array
1143                         if (isset($item["uri"]) AND (($item["uri"] == $arr["uri"]) OR ($item["uri"] ==  $single_conv->id))) {
1144                                 $copy_fields = array("owner-name", "owner-link", "owner-avatar", "author-name", "author-link", "author-avatar",
1145                                                         "gravity", "body", "object-type", "object", "verb", "created", "edited", "coord", "tag",
1146                                                         "title", "attach", "app", "type", "location", "contact-id", "uri");
1147                                 foreach ($copy_fields AS $field)
1148                                         if (isset($item[$field]))
1149                                                 $arr[$field] = $item[$field];
1150
1151                         }
1152
1153                         $newitem = item_store($arr);
1154                         if (!$newitem) {
1155                                 logger("Item wasn't stored ".print_r($arr, true), LOGGER_DEBUG);
1156                                 continue;
1157                         }
1158
1159                         if (isset($item["uri"]) AND ($item["uri"] == $arr["uri"])) {
1160                                 $item = array();
1161                                 $item_stored = $newitem;
1162                         }
1163
1164                         logger('Stored new item '.$plink.' for parent '.$arr["parent-uri"].' under id '.$newitem, LOGGER_DEBUG);
1165
1166                         // Add the conversation entry (but don't fetch the whole conversation)
1167                         self::store_conversation($newitem, $conversation_url);
1168
1169                         // If the newly created item is the top item then change the parent settings of the thread
1170                         // This shouldn't happen anymore. This is supposed to be absolote.
1171                         if ($arr["uri"] == $first_id) {
1172                                 logger('setting new parent to id '.$newitem);
1173                                 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
1174                                         intval($uid), intval($newitem));
1175                                 if ($new_parents)
1176                                         $parent = $new_parents[0];
1177                         }
1178                 }
1179
1180                 if (($item_stored < 0) AND (count($item) > 0)) {
1181
1182                         if (get_config('system','ostatus_full_threads')) {
1183                                 $details = self::get_actor_details($item["owner-link"], $uid, $item["contact-id"]);
1184                                 if ($details["not_following"]) {
1185                                         logger("Don't import uri ".$item["uri"]." because user ".$uid." doesn't follow the person ".$item["owner-link"], LOGGER_DEBUG);
1186                                         return false;
1187                                 }
1188                         }
1189
1190                         $item_stored = item_store($item, true);
1191                         if ($item_stored) {
1192                                 logger("Uri ".$item["uri"]." wasn't found in conversation ".$conversation_url, LOGGER_DEBUG);
1193                                 self::store_conversation($item_stored, $conversation_url);
1194                         }
1195                 }
1196
1197                 return($item_stored);
1198         }
1199
1200         /**
1201          * @brief Stores conversation data into the database
1202          *
1203          * @param integer $itemid The id of the item
1204          * @param string $conversation_url The uri of the conversation
1205          */
1206         private function store_conversation($itemid, $conversation_url) {
1207
1208                 $conversation_url = self::convert_href($conversation_url);
1209
1210                 $messages = q("SELECT `uid`, `parent`, `created`, `received`, `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
1211                 if (!$messages)
1212                         return;
1213                 $message = $messages[0];
1214
1215                 // Store conversation url if not done before
1216                 $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
1217                         intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
1218
1219                 if (!$conversation) {
1220                         $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`, `created`, `received`, `guid`) VALUES (%d, %d, %d, %d, '%s', '%s', '%s', '%s', '%s')",
1221                                 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION),
1222                                 dbesc($message["created"]), dbesc($conversation_url), dbesc($message["created"]), dbesc($message["received"]), dbesc($message["guid"]));
1223                         logger('Storing conversation url '.$conversation_url.' for id '.$itemid);
1224                 }
1225         }
1226
1227         /**
1228          * @brief Checks if the current post is a reshare
1229          *
1230          * @param array $item The item array of thw post
1231          *
1232          * @return string The guid if the post is a reshare
1233          */
1234         private function get_reshared_guid($item) {
1235                 $body = trim($item["body"]);
1236
1237                 // Skip if it isn't a pure repeated messages
1238                 // Does it start with a share?
1239                 if (strpos($body, "[share") > 0)
1240                         return("");
1241
1242                 // Does it end with a share?
1243                 if (strlen($body) > (strrpos($body, "[/share]") + 8))
1244                         return("");
1245
1246                 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
1247                 // Skip if there is no shared message in there
1248                 if ($body == $attributes)
1249                         return(false);
1250
1251                 $guid = "";
1252                 preg_match("/guid='(.*?)'/ism", $attributes, $matches);
1253                 if ($matches[1] != "")
1254                         $guid = $matches[1];
1255
1256                 preg_match('/guid="(.*?)"/ism', $attributes, $matches);
1257                 if ($matches[1] != "")
1258                         $guid = $matches[1];
1259
1260                 return $guid;
1261         }
1262
1263         /**
1264          * @brief Cleans the body of a post if it contains picture links
1265          *
1266          * @param string $body The body
1267          *
1268          * @return string The cleaned body
1269          */
1270         private function format_picture_post($body) {
1271                 $siteinfo = get_attached_data($body);
1272
1273                 if (($siteinfo["type"] == "photo")) {
1274                         if (isset($siteinfo["preview"]))
1275                                 $preview = $siteinfo["preview"];
1276                         else
1277                                 $preview = $siteinfo["image"];
1278
1279                         // Is it a remote picture? Then make a smaller preview here
1280                         $preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
1281
1282                         // Is it a local picture? Then make it smaller here
1283                         $preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
1284                         $preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
1285
1286                         if (isset($siteinfo["url"]))
1287                                 $url = $siteinfo["url"];
1288                         else
1289                                 $url = $siteinfo["image"];
1290
1291                         $body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
1292                 }
1293
1294                 return $body;
1295         }
1296
1297         /**
1298          * @brief Adds the header elements to the XML document
1299          *
1300          * @param object $doc XML document
1301          * @param array $owner Contact data of the poster
1302          *
1303          * @return object header root element
1304          */
1305         private function add_header($doc, $owner) {
1306
1307                 $a = get_app();
1308
1309                 $root = $doc->createElementNS(NAMESPACE_ATOM1, 'feed');
1310                 $doc->appendChild($root);
1311
1312                 $root->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1313                 $root->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1314                 $root->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1315                 $root->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1316                 $root->setAttribute("xmlns:poco", NAMESPACE_POCO);
1317                 $root->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1318                 $root->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1319
1320                 $attributes = array("uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
1321                 xml::add_element($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
1322                 xml::add_element($doc, $root, "id", App::get_baseurl()."/profile/".$owner["nick"]);
1323                 xml::add_element($doc, $root, "title", sprintf("%s timeline", $owner["name"]));
1324                 xml::add_element($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], $a->config["sitename"]));
1325                 xml::add_element($doc, $root, "logo", $owner["photo"]);
1326                 xml::add_element($doc, $root, "updated", datetime_convert("UTC", "UTC", "now", ATOM_TIME));
1327
1328                 $author = self::add_author($doc, $owner);
1329                 $root->appendChild($author);
1330
1331                 $attributes = array("href" => $owner["url"], "rel" => "alternate", "type" => "text/html");
1332                 xml::add_element($doc, $root, "link", "", $attributes);
1333
1334                 /// @TODO We have to find out what this is
1335                 /// $attributes = array("href" => App::get_baseurl()."/sup",
1336                 ///             "rel" => "http://api.friendfeed.com/2008/03#sup",
1337                 ///             "type" => "application/json");
1338                 /// xml::add_element($doc, $root, "link", "", $attributes);
1339
1340                 self::hublinks($doc, $root);
1341
1342                 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "salmon");
1343                 xml::add_element($doc, $root, "link", "", $attributes);
1344
1345                 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-replies");
1346                 xml::add_element($doc, $root, "link", "", $attributes);
1347
1348                 $attributes = array("href" => App::get_baseurl()."/salmon/".$owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention");
1349                 xml::add_element($doc, $root, "link", "", $attributes);
1350
1351                 $attributes = array("href" => App::get_baseurl()."/api/statuses/user_timeline/".$owner["nick"].".atom",
1352                                 "rel" => "self", "type" => "application/atom+xml");
1353                 xml::add_element($doc, $root, "link", "", $attributes);
1354
1355                 return $root;
1356         }
1357
1358         /**
1359          * @brief Add the link to the push hubs to the XML document
1360          *
1361          * @param object $doc XML document
1362          * @param object $root XML root element where the hub links are added
1363          */
1364         public static function hublinks($doc, $root) {
1365                 $hub = get_config('system','huburl');
1366
1367                 $hubxml = '';
1368                 if(strlen($hub)) {
1369                         $hubs = explode(',', $hub);
1370                         if(count($hubs)) {
1371                                 foreach($hubs as $h) {
1372                                         $h = trim($h);
1373                                         if(! strlen($h))
1374                                                 continue;
1375                                         if ($h === '[internal]')
1376                                                 $h = App::get_baseurl() . '/pubsubhubbub';
1377                                         xml::add_element($doc, $root, "link", "", array("href" => $h, "rel" => "hub"));
1378                                 }
1379                         }
1380                 }
1381         }
1382
1383         /**
1384          * @brief Adds attachement data to the XML document
1385          *
1386          * @param object $doc XML document
1387          * @param object $root XML root element where the hub links are added
1388          * @param array $item Data of the item that is to be posted
1389          */
1390         private function get_attachment($doc, $root, $item) {
1391                 $o = "";
1392                 $siteinfo = get_attached_data($item["body"]);
1393
1394                 switch($siteinfo["type"]) {
1395                         case 'link':
1396                                 $attributes = array("rel" => "enclosure",
1397                                                 "href" => $siteinfo["url"],
1398                                                 "type" => "text/html; charset=UTF-8",
1399                                                 "length" => "",
1400                                                 "title" => $siteinfo["title"]);
1401                                 xml::add_element($doc, $root, "link", "", $attributes);
1402                                 break;
1403                         case 'photo':
1404                                 $imgdata = get_photo_info($siteinfo["image"]);
1405                                 $attributes = array("rel" => "enclosure",
1406                                                 "href" => $siteinfo["image"],
1407                                                 "type" => $imgdata["mime"],
1408                                                 "length" => intval($imgdata["size"]));
1409                                 xml::add_element($doc, $root, "link", "", $attributes);
1410                                 break;
1411                         case 'video':
1412                                 $attributes = array("rel" => "enclosure",
1413                                                 "href" => $siteinfo["url"],
1414                                                 "type" => "text/html; charset=UTF-8",
1415                                                 "length" => "",
1416                                                 "title" => $siteinfo["title"]);
1417                                 xml::add_element($doc, $root, "link", "", $attributes);
1418                                 break;
1419                         default:
1420                                 break;
1421                 }
1422
1423                 if (($siteinfo["type"] != "photo") AND isset($siteinfo["image"])) {
1424                         $photodata = get_photo_info($siteinfo["image"]);
1425
1426                         $attributes = array("rel" => "preview", "href" => $siteinfo["image"], "media:width" => $photodata[0], "media:height" => $photodata[1]);
1427                         xml::add_element($doc, $root, "link", "", $attributes);
1428                 }
1429
1430
1431                 $arr = explode('[/attach],',$item['attach']);
1432                 if(count($arr)) {
1433                         foreach($arr as $r) {
1434                                 $matches = false;
1435                                 $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
1436                                 if($cnt) {
1437                                         $attributes = array("rel" => "enclosure",
1438                                                         "href" => $matches[1],
1439                                                         "type" => $matches[3]);
1440
1441                                         if(intval($matches[2]))
1442                                                 $attributes["length"] = intval($matches[2]);
1443
1444                                         if(trim($matches[4]) != "")
1445                                                 $attributes["title"] = trim($matches[4]);
1446
1447                                         xml::add_element($doc, $root, "link", "", $attributes);
1448                                 }
1449                         }
1450                 }
1451         }
1452
1453         /**
1454          * @brief Adds the author element to the XML document
1455          *
1456          * @param object $doc XML document
1457          * @param array $owner Contact data of the poster
1458          *
1459          * @return object author element
1460          */
1461         private function add_author($doc, $owner) {
1462
1463                 $r = q("SELECT `homepage` FROM `profile` WHERE `uid` = %d AND `is-default` LIMIT 1", intval($owner["uid"]));
1464                 if ($r)
1465                         $profile = $r[0];
1466
1467                 $author = $doc->createElement("author");
1468                 xml::add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON);
1469                 xml::add_element($doc, $author, "uri", $owner["url"]);
1470                 xml::add_element($doc, $author, "name", $owner["name"]);
1471                 xml::add_element($doc, $author, "summary", bbcode($owner["about"], false, false, 7));
1472
1473                 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]);
1474                 xml::add_element($doc, $author, "link", "", $attributes);
1475
1476                 $attributes = array(
1477                                 "rel" => "avatar",
1478                                 "type" => "image/jpeg", // To-Do?
1479                                 "media:width" => 175,
1480                                 "media:height" => 175,
1481                                 "href" => $owner["photo"]);
1482                 xml::add_element($doc, $author, "link", "", $attributes);
1483
1484                 if (isset($owner["thumb"])) {
1485                         $attributes = array(
1486                                         "rel" => "avatar",
1487                                         "type" => "image/jpeg", // To-Do?
1488                                         "media:width" => 80,
1489                                         "media:height" => 80,
1490                                         "href" => $owner["thumb"]);
1491                         xml::add_element($doc, $author, "link", "", $attributes);
1492                 }
1493
1494                 xml::add_element($doc, $author, "poco:preferredUsername", $owner["nick"]);
1495                 xml::add_element($doc, $author, "poco:displayName", $owner["name"]);
1496                 xml::add_element($doc, $author, "poco:note", bbcode($owner["about"], false, false, 7));
1497
1498                 if (trim($owner["location"]) != "") {
1499                         $element = $doc->createElement("poco:address");
1500                         xml::add_element($doc, $element, "poco:formatted", $owner["location"]);
1501                         $author->appendChild($element);
1502                 }
1503
1504                 if (trim($profile["homepage"]) != "") {
1505                         $urls = $doc->createElement("poco:urls");
1506                         xml::add_element($doc, $urls, "poco:type", "homepage");
1507                         xml::add_element($doc, $urls, "poco:value", $profile["homepage"]);
1508                         xml::add_element($doc, $urls, "poco:primary", "true");
1509                         $author->appendChild($urls);
1510                 }
1511
1512                 if (count($profile)) {
1513                         xml::add_element($doc, $author, "followers", "", array("url" => App::get_baseurl()."/viewcontacts/".$owner["nick"]));
1514                         xml::add_element($doc, $author, "statusnet:profile_info", "", array("local_id" => $owner["uid"]));
1515                 }
1516
1517                 return $author;
1518         }
1519
1520         /**
1521          * @TODO Picture attachments should look like this:
1522          *      <a href="https://status.pirati.ca/attachment/572819" title="https://status.pirati.ca/file/heluecht-20151202T222602-rd3u49p.gif"
1523          *      class="attachment thumbnail" id="attachment-572819" rel="nofollow external">https://status.pirati.ca/attachment/572819</a>
1524          *
1525         */
1526
1527         /**
1528          * @brief Returns the given activity if present - otherwise returns the "post" activity
1529          *
1530          * @param array $item Data of the item that is to be posted
1531          *
1532          * @return string activity
1533          */
1534         function construct_verb($item) {
1535                 if ($item['verb'])
1536                         return $item['verb'];
1537                 return ACTIVITY_POST;
1538         }
1539
1540         /**
1541          * @brief Returns the given object type if present - otherwise returns the "note" object type
1542          *
1543          * @param array $item Data of the item that is to be posted
1544          *
1545          * @return string Object type
1546          */
1547         function construct_objecttype($item) {
1548                 if (in_array($item['object-type'], array(ACTIVITY_OBJ_NOTE, ACTIVITY_OBJ_COMMENT)))
1549                         return $item['object-type'];
1550                 return ACTIVITY_OBJ_NOTE;
1551         }
1552
1553         /**
1554          * @brief Adds an entry element to the XML document
1555          *
1556          * @param object $doc XML document
1557          * @param array $item Data of the item that is to be posted
1558          * @param array $owner Contact data of the poster
1559          * @param bool $toplevel
1560          *
1561          * @return object Entry element
1562          */
1563         private function entry($doc, $item, $owner, $toplevel = false) {
1564                 $repeated_guid = self::get_reshared_guid($item);
1565                 if ($repeated_guid != "")
1566                         $xml = self::reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel);
1567
1568                 if ($xml)
1569                         return $xml;
1570
1571                 if ($item["verb"] == ACTIVITY_LIKE) {
1572                         return self::like_entry($doc, $item, $owner, $toplevel);
1573                 } elseif (in_array($item["verb"], array(ACTIVITY_FOLLOW, NAMESPACE_OSTATUS."/unfollow"))) {
1574                         return self::follow_entry($doc, $item, $owner, $toplevel);
1575                 } else {
1576                         return self::note_entry($doc, $item, $owner, $toplevel);
1577                 }
1578         }
1579
1580         /**
1581          * @brief Adds a source entry to the XML document
1582          *
1583          * @param object $doc XML document
1584          * @param array $contact Array of the contact that is added
1585          *
1586          * @return object Source element
1587          */
1588         private function source_entry($doc, $contact) {
1589                 $source = $doc->createElement("source");
1590                 xml::add_element($doc, $source, "id", $contact["poll"]);
1591                 xml::add_element($doc, $source, "title", $contact["name"]);
1592                 xml::add_element($doc, $source, "link", "", array("rel" => "alternate",
1593                                                                 "type" => "text/html",
1594                                                                 "href" => $contact["alias"]));
1595                 xml::add_element($doc, $source, "link", "", array("rel" => "self",
1596                                                                 "type" => "application/atom+xml",
1597                                                                 "href" => $contact["poll"]));
1598                 xml::add_element($doc, $source, "icon", $contact["photo"]);
1599                 xml::add_element($doc, $source, "updated", datetime_convert("UTC","UTC",$contact["success_update"]."+00:00",ATOM_TIME));
1600
1601                 return $source;
1602         }
1603
1604         /**
1605          * @brief Fetches contact data from the contact or the gcontact table
1606          *
1607          * @param string $url URL of the contact
1608          * @param array $owner Contact data of the poster
1609          *
1610          * @return array Contact array
1611          */
1612         private function contact_entry($url, $owner) {
1613
1614                 $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `uid` IN (0, %d) ORDER BY `uid` DESC LIMIT 1",
1615                         dbesc(normalise_link($url)), intval($owner["uid"]));
1616                 if ($r) {
1617                         $contact = $r[0];
1618                         $contact["uid"] = -1;
1619                 }
1620
1621                 if (!$r) {
1622                         $r = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1623                                 dbesc(normalise_link($url)));
1624                         if ($r) {
1625                                 $contact = $r[0];
1626                                 $contact["uid"] = -1;
1627                                 $contact["success_update"] = $contact["updated"];
1628                         }
1629                 }
1630
1631                 if (!$r)
1632                         $contact = owner;
1633
1634                 if (!isset($contact["poll"])) {
1635                         $data = probe_url($url);
1636                         $contact["poll"] = $data["poll"];
1637
1638                         if (!$contact["alias"])
1639                                 $contact["alias"] = $data["alias"];
1640                 }
1641
1642                 if (!isset($contact["alias"]))
1643                         $contact["alias"] = $contact["url"];
1644
1645                 return $contact;
1646         }
1647
1648         /**
1649          * @brief Adds an entry element with reshared content
1650          *
1651          * @param object $doc XML document
1652          * @param array $item Data of the item that is to be posted
1653          * @param array $owner Contact data of the poster
1654          * @param $repeated_guid
1655          * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1656          *
1657          * @return object Entry element
1658          */
1659         private function reshare_entry($doc, $item, $owner, $repeated_guid, $toplevel) {
1660
1661                 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1662                         logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1663                 }
1664
1665                 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1666
1667                 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `guid` = '%s' AND NOT `private` AND `network` IN ('%s', '%s', '%s') LIMIT 1",
1668                         intval($owner["uid"]), dbesc($repeated_guid),
1669                         dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
1670                 if ($r)
1671                         $repeated_item = $r[0];
1672                 else
1673                         return false;
1674
1675                 $contact = self::contact_entry($repeated_item['author-link'], $owner);
1676
1677                 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1678
1679                 $title = $owner["nick"]." repeated a notice by ".$contact["nick"];
1680
1681                 self::entry_content($doc, $entry, $item, $owner, $title, ACTIVITY_SHARE, false);
1682
1683                 $as_object = $doc->createElement("activity:object");
1684
1685                 xml::add_element($doc, $as_object, "activity:object-type", NAMESPACE_ACTIVITY_SCHEMA."activity");
1686
1687                 self::entry_content($doc, $as_object, $repeated_item, $owner, "", "", false);
1688
1689                 $author = self::add_author($doc, $contact);
1690                 $as_object->appendChild($author);
1691
1692                 $as_object2 = $doc->createElement("activity:object");
1693
1694                 xml::add_element($doc, $as_object2, "activity:object-type", self::construct_objecttype($repeated_item));
1695
1696                 $title = sprintf("New comment by %s", $contact["nick"]);
1697
1698                 self::entry_content($doc, $as_object2, $repeated_item, $owner, $title);
1699
1700                 $as_object->appendChild($as_object2);
1701
1702                 self::entry_footer($doc, $as_object, $item, $owner, false);
1703
1704                 $source = self::source_entry($doc, $contact);
1705
1706                 $as_object->appendChild($source);
1707
1708                 $entry->appendChild($as_object);
1709
1710                 self::entry_footer($doc, $entry, $item, $owner);
1711
1712                 return $entry;
1713         }
1714
1715         /**
1716          * @brief Adds an entry element with a "like"
1717          *
1718          * @param object $doc XML document
1719          * @param array $item Data of the item that is to be posted
1720          * @param array $owner Contact data of the poster
1721          * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1722          *
1723          * @return object Entry element with "like"
1724          */
1725         private function like_entry($doc, $item, $owner, $toplevel) {
1726
1727                 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1728                         logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1729                 }
1730
1731                 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1732
1733                 $verb = NAMESPACE_ACTIVITY_SCHEMA."favorite";
1734                 self::entry_content($doc, $entry, $item, $owner, "Favorite", $verb, false);
1735
1736                 $as_object = $doc->createElement("activity:object");
1737
1738                 $parent = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d",
1739                         dbesc($item["thr-parent"]), intval($item["uid"]));
1740                 $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1741
1742                 xml::add_element($doc, $as_object, "activity:object-type", self::construct_objecttype($parent[0]));
1743
1744                 self::entry_content($doc, $as_object, $parent[0], $owner, "New entry");
1745
1746                 $entry->appendChild($as_object);
1747
1748                 self::entry_footer($doc, $entry, $item, $owner);
1749
1750                 return $entry;
1751         }
1752
1753         /**
1754          * @brief Adds the person object element to the XML document
1755          *
1756          * @param object $doc XML document
1757          * @param array $owner Contact data of the poster
1758          * @param array $contact Contact data of the target
1759          *
1760          * @return object author element
1761          */
1762         private function add_person_object($doc, $owner, $contact) {
1763
1764                 $object = $doc->createElement("activity:object");
1765                 xml::add_element($doc, $object, "activity:object-type", ACTIVITY_OBJ_PERSON);
1766
1767                 if ($contact['network'] == NETWORK_PHANTOM) {
1768                         xml::add_element($doc, $object, "id", $contact['url']);
1769                         return $object;
1770                 }
1771
1772                 xml::add_element($doc, $object, "id", $contact["alias"]);
1773                 xml::add_element($doc, $object, "title", $contact["nick"]);
1774
1775                 $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $contact["url"]);
1776                 xml::add_element($doc, $object, "link", "", $attributes);
1777
1778                 $attributes = array(
1779                                 "rel" => "avatar",
1780                                 "type" => "image/jpeg", // To-Do?
1781                                 "media:width" => 175,
1782                                 "media:height" => 175,
1783                                 "href" => $contact["photo"]);
1784                 xml::add_element($doc, $object, "link", "", $attributes);
1785
1786                 xml::add_element($doc, $object, "poco:preferredUsername", $contact["nick"]);
1787                 xml::add_element($doc, $object, "poco:displayName", $contact["name"]);
1788
1789                 if (trim($contact["location"]) != "") {
1790                         $element = $doc->createElement("poco:address");
1791                         xml::add_element($doc, $element, "poco:formatted", $contact["location"]);
1792                         $object->appendChild($element);
1793                 }
1794
1795                 return $object;
1796         }
1797
1798         /**
1799          * @brief Adds a follow/unfollow entry element
1800          *
1801          * @param object $doc XML document
1802          * @param array $item Data of the follow/unfollow message
1803          * @param array $owner Contact data of the poster
1804          * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1805          *
1806          * @return object Entry element
1807          */
1808         private function follow_entry($doc, $item, $owner, $toplevel) {
1809
1810                 $item["id"] = $item["parent"] = 0;
1811                 $item["created"] = $item["edited"] = date("c");
1812                 $item["private"] = true;
1813
1814                 $contact = Probe::uri($item['follow']);
1815
1816                 if ($contact['alias'] == '') {
1817                         $contact['alias'] = $contact["url"];
1818                 } else {
1819                         $item['follow'] = $contact['alias'];
1820                 }
1821
1822                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
1823                         intval($owner['uid']), dbesc(normalise_link($contact["url"])));
1824
1825                 if (dbm::is_result($r)) {
1826                         $connect_id = $r[0]['id'];
1827                 } else {
1828                         $connect_id = 0;
1829                 }
1830
1831                 if ($item['verb'] == ACTIVITY_FOLLOW) {
1832                         $message = t('%s is now following %s.');
1833                         $title = t('following');
1834                         $action = "subscription";
1835                 } else {
1836                         $message = t('%s stopped following %s.');
1837                         $title = t('stopped following');
1838                         $action = "unfollow";
1839                 }
1840
1841                 $item["uri"] = $item['parent-uri'] = $item['thr-parent'] =
1842                                 'tag:'.get_app()->get_hostname().
1843                                 ','.date('Y-m-d').':'.$action.':'.$owner['uid'].
1844                                 ':person:'.$connect_id.':'.$item['created'];
1845
1846                 $item["body"] = sprintf($message, $owner["nick"], $contact["nick"]);
1847
1848                 self::entry_header($doc, $entry, $owner, $toplevel);
1849
1850                 self::entry_content($doc, $entry, $item, $owner, $title);
1851
1852                 $object = self::add_person_object($doc, $owner, $contact);
1853                 $entry->appendChild($object);
1854
1855                 self::entry_footer($doc, $entry, $item, $owner);
1856
1857                 return $entry;
1858         }
1859
1860         /**
1861          * @brief Adds a regular entry element
1862          *
1863          * @param object $doc XML document
1864          * @param array $item Data of the item that is to be posted
1865          * @param array $owner Contact data of the poster
1866          * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1867          *
1868          * @return object Entry element
1869          */
1870         private function note_entry($doc, $item, $owner, $toplevel) {
1871
1872                 if (($item["id"] != $item["parent"]) AND (normalise_link($item["author-link"]) != normalise_link($owner["url"]))) {
1873                         logger("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", LOGGER_DEBUG);
1874                 }
1875
1876                 $title = self::entry_header($doc, $entry, $owner, $toplevel);
1877
1878                 xml::add_element($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
1879
1880                 self::entry_content($doc, $entry, $item, $owner, $title);
1881
1882                 self::entry_footer($doc, $entry, $item, $owner);
1883
1884                 return $entry;
1885         }
1886
1887         /**
1888          * @brief Adds a header element to the XML document
1889          *
1890          * @param object $doc XML document
1891          * @param object $entry The entry element where the elements are added
1892          * @param array $owner Contact data of the poster
1893          * @param bool $toplevel Is it for en entry element (false) or a feed entry (true)?
1894          *
1895          * @return string The title for the element
1896          */
1897         private function entry_header($doc, &$entry, $owner, $toplevel) {
1898                 /// @todo Check if this title stuff is really needed (I guess not)
1899                 if (!$toplevel) {
1900                         $entry = $doc->createElement("entry");
1901                         $title = sprintf("New note by %s", $owner["nick"]);
1902                 } else {
1903                         $entry = $doc->createElementNS(NAMESPACE_ATOM1, "entry");
1904
1905                         $entry->setAttribute("xmlns:thr", NAMESPACE_THREAD);
1906                         $entry->setAttribute("xmlns:georss", NAMESPACE_GEORSS);
1907                         $entry->setAttribute("xmlns:activity", NAMESPACE_ACTIVITY);
1908                         $entry->setAttribute("xmlns:media", NAMESPACE_MEDIA);
1909                         $entry->setAttribute("xmlns:poco", NAMESPACE_POCO);
1910                         $entry->setAttribute("xmlns:ostatus", NAMESPACE_OSTATUS);
1911                         $entry->setAttribute("xmlns:statusnet", NAMESPACE_STATUSNET);
1912
1913                         $author = self::add_author($doc, $owner);
1914                         $entry->appendChild($author);
1915
1916                         $title = sprintf("New comment by %s", $owner["nick"]);
1917                 }
1918                 return $title;
1919         }
1920
1921         /**
1922          * @brief Adds elements to the XML document
1923          *
1924          * @param object $doc XML document
1925          * @param object $entry Entry element where the content is added
1926          * @param array $item Data of the item that is to be posted
1927          * @param array $owner Contact data of the poster
1928          * @param string $title Title for the post
1929          * @param string $verb The activity verb
1930          * @param bool $complete Add the "status_net" element?
1931          */
1932         private function entry_content($doc, $entry, $item, $owner, $title, $verb = "", $complete = true) {
1933
1934                 if ($verb == "")
1935                         $verb = self::construct_verb($item);
1936
1937                 xml::add_element($doc, $entry, "id", $item["uri"]);
1938                 xml::add_element($doc, $entry, "title", $title);
1939
1940                 $body = self::format_picture_post($item['body']);
1941
1942                 if ($item['title'] != "")
1943                         $body = "[b]".$item['title']."[/b]\n\n".$body;
1944
1945                 $body = bbcode($body, false, false, 7);
1946
1947                 xml::add_element($doc, $entry, "content", $body, array("type" => "html"));
1948
1949                 xml::add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
1950                                                                 "href" => App::get_baseurl()."/display/".$item["guid"]));
1951
1952                 if ($complete AND ($item["id"] > 0))
1953                         xml::add_element($doc, $entry, "status_net", "", array("notice_id" => $item["id"]));
1954
1955                 xml::add_element($doc, $entry, "activity:verb", $verb);
1956
1957                 xml::add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME));
1958                 xml::add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME));
1959         }
1960
1961         /**
1962          * @brief Adds the elements at the foot of an entry to the XML document
1963          *
1964          * @param object $doc XML document
1965          * @param object $entry The entry element where the elements are added
1966          * @param array $item Data of the item that is to be posted
1967          * @param array $owner Contact data of the poster
1968          * @param $complete
1969          */
1970         private function entry_footer($doc, $entry, $item, $owner, $complete = true) {
1971
1972                 $mentioned = array();
1973
1974                 if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
1975                         $parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
1976                         $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);
1977
1978                         $attributes = array(
1979                                         "ref" => $parent_item,
1980                                         "type" => "text/html",
1981                                         "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
1982                         xml::add_element($doc, $entry, "thr:in-reply-to", "", $attributes);
1983
1984                         $attributes = array(
1985                                         "rel" => "related",
1986                                         "href" => App::get_baseurl()."/display/".$parent[0]["guid"]);
1987                         xml::add_element($doc, $entry, "link", "", $attributes);
1988
1989                         $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"];
1990                         $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"];
1991
1992                         $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'",
1993                                         intval($owner["uid"]),
1994                                         dbesc($parent_item));
1995                         if ($thrparent) {
1996                                 $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"];
1997                                 $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"];
1998                         }
1999                 }
2000
2001                 if (intval($item["parent"]) > 0) {
2002                         $conversation = App::get_baseurl()."/display/".$owner["nick"]."/".$item["parent"];
2003                         xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $conversation));
2004                         xml::add_element($doc, $entry, "ostatus:conversation", $conversation);
2005                 }
2006
2007                 $tags = item_getfeedtags($item);
2008
2009                 if(count($tags))
2010                         foreach($tags as $t)
2011                                 if ($t[0] == "@")
2012                                         $mentioned[$t[1]] = $t[1];
2013
2014                 // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS)
2015                 $newmentions = array();
2016                 foreach ($mentioned AS $mention) {
2017                         $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention);
2018                         $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention);
2019                 }
2020                 $mentioned = $newmentions;
2021
2022                 foreach ($mentioned AS $mention) {
2023                         $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'",
2024                                 intval($owner["uid"]),
2025                                 dbesc(normalise_link($mention)));
2026                         if ($r[0]["forum"] OR $r[0]["prv"])
2027                                 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
2028                                                                                         "ostatus:object-type" => ACTIVITY_OBJ_GROUP,
2029                                                                                         "href" => $mention));
2030                         else
2031                                 xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
2032                                                                                         "ostatus:object-type" => ACTIVITY_OBJ_PERSON,
2033                                                                                         "href" => $mention));
2034                 }
2035
2036                 if (!$item["private"]) {
2037                         xml::add_element($doc, $entry, "link", "", array("rel" => "ostatus:attention",
2038                                                                         "href" => "http://activityschema.org/collection/public"));
2039                         xml::add_element($doc, $entry, "link", "", array("rel" => "mentioned",
2040                                                                         "ostatus:object-type" => "http://activitystrea.ms/schema/1.0/collection",
2041                                                                         "href" => "http://activityschema.org/collection/public"));
2042                 }
2043
2044                 if(count($tags))
2045                         foreach($tags as $t)
2046                                 if ($t[0] != "@")
2047                                         xml::add_element($doc, $entry, "category", "", array("term" => $t[2]));
2048
2049                 self::get_attachment($doc, $entry, $item);
2050
2051                 if ($complete AND ($item["id"] > 0)) {
2052                         $app = $item["app"];
2053                         if ($app == "")
2054                                 $app = "web";
2055
2056                         $attributes = array("local_id" => $item["id"], "source" => $app);
2057
2058                         if (isset($parent["id"]))
2059                                 $attributes["repeat_of"] = $parent["id"];
2060
2061                         if ($item["coord"] != "")
2062                                 xml::add_element($doc, $entry, "georss:point", $item["coord"]);
2063
2064                         xml::add_element($doc, $entry, "statusnet:notice_info", "", $attributes);
2065                 }
2066         }
2067
2068         /**
2069          * @brief Creates the XML feed for a given nickname
2070          *
2071          * @param app $a The application class
2072          * @param string $owner_nick Nickname of the feed owner
2073          * @param string $last_update Date of the last update
2074          *
2075          * @return string XML feed
2076          */
2077         public static function feed(App $a, $owner_nick, $last_update) {
2078
2079                 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`timezone`, `user`.`page-flags`
2080                                 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
2081                                 WHERE `contact`.`self` AND `user`.`nickname` = '%s' LIMIT 1",
2082                                 dbesc($owner_nick));
2083                 if (!$r)
2084                         return;
2085
2086                 $owner = $r[0];
2087
2088                 if(!strlen($last_update))
2089                         $last_update = 'now -30 days';
2090
2091                 $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
2092                 $authorid = get_contact($owner["url"], 0);
2093
2094                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item` USE INDEX (`uid_contactid_created`)
2095                                 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `item`.`parent`
2096                                 WHERE `item`.`uid` = %d AND `item`.`contact-id` = %d AND
2097                                         `item`.`author-id` = %d AND `item`.`created` > '%s' AND
2098                                         NOT `item`.`deleted` AND NOT `item`.`private` AND
2099                                         `thread`.`network` IN ('%s', '%s')
2100                                 ORDER BY `item`.`created` DESC LIMIT 300",
2101                                 intval($owner["uid"]), intval($owner["id"]),
2102                                 intval($authorid), dbesc($check_date),
2103                                 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN));
2104
2105 /*              2016-10-23: The old query will be kept until we are sure that the query above is a good and fast replacement
2106
2107                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item`
2108                                 STRAIGHT_JOIN `thread` ON `thread`.`iid` = `item`.`parent`
2109                                 LEFT JOIN `item` AS `thritem` ON `thritem`.`uri`=`item`.`thr-parent` AND `thritem`.`uid`=`item`.`uid`
2110                                 WHERE `item`.`uid` = %d AND `item`.`received` > '%s' AND NOT `item`.`private` AND NOT `item`.`deleted`
2111                                         AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
2112                                         AND ((`item`.`wall` AND (`item`.`parent` = `item`.`id`))
2113                                                 OR (`item`.`network` = '%s' AND ((`thread`.`network` IN ('%s', '%s')) OR (`thritem`.`network` IN ('%s', '%s')))) AND `thread`.`mention`)
2114                                         AND ((`item`.`owner-link` IN ('%s', '%s') AND (`item`.`parent` = `item`.`id`))
2115                                                 OR (`item`.`author-link` IN ('%s', '%s')))
2116                                 ORDER BY `item`.`id` DESC
2117                                 LIMIT 0, 300",
2118                                 intval($owner["uid"]), dbesc($check_date), dbesc(NETWORK_DFRN),
2119                                 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
2120                                 //dbesc(NETWORK_OSTATUS), dbesc(NETWORK_OSTATUS),
2121                                 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
2122                                 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DFRN),
2123                                 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"])),
2124                                 dbesc($owner["nurl"]), dbesc(str_replace("http://", "https://", $owner["nurl"]))
2125                         );
2126 */
2127                 $doc = new DOMDocument('1.0', 'utf-8');
2128                 $doc->formatOutput = true;
2129
2130                 $root = self::add_header($doc, $owner);
2131
2132                 foreach ($items AS $item) {
2133                         $entry = self::entry($doc, $item, $owner);
2134                         $root->appendChild($entry);
2135                 }
2136
2137                 return(trim($doc->saveXML()));
2138         }
2139
2140         /**
2141          * @brief Creates the XML for a salmon message
2142          *
2143          * @param array $item Data of the item that is to be posted
2144          * @param array $owner Contact data of the poster
2145          *
2146          * @return string XML for the salmon
2147          */
2148         public static function salmon($item,$owner) {
2149
2150                 $doc = new DOMDocument('1.0', 'utf-8');
2151                 $doc->formatOutput = true;
2152
2153                 $entry = self::entry($doc, $item, $owner, true);
2154
2155                 $doc->appendChild($entry);
2156
2157                 return(trim($doc->saveXML()));
2158         }
2159 }
2160 ?>