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