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