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