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