]> git.mxchange.org Git - friendica.git/blob - src/Model/Item.php
Merge remote-tracking branch 'upstream/2022.05-rc' into performance
[friendica.git] / src / Model / Item.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Model;
23
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Content\Text\HTML;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Session;
31 use Friendica\Core\System;
32 use Friendica\Model\Tag;
33 use Friendica\Core\Worker;
34 use Friendica\Database\DBA;
35 use Friendica\DI;
36 use Friendica\Model\Post;
37 use Friendica\Protocol\Activity;
38 use Friendica\Protocol\ActivityPub;
39 use Friendica\Protocol\Diaspora;
40 use Friendica\Util\DateTimeFormat;
41 use Friendica\Util\Map;
42 use Friendica\Util\Network;
43 use Friendica\Util\Proxy;
44 use Friendica\Util\Strings;
45 use Friendica\Worker\Delivery;
46 use LanguageDetection\Language;
47
48 class Item
49 {
50         // Posting types, inspired by https://www.w3.org/TR/activitystreams-vocabulary/#object-types
51         const PT_ARTICLE = 0;
52         const PT_NOTE = 1;
53         const PT_PAGE = 2;
54         const PT_IMAGE = 16;
55         const PT_AUDIO = 17;
56         const PT_VIDEO = 18;
57         const PT_DOCUMENT = 19;
58         const PT_EVENT = 32;
59         const PT_POLL = 33;
60         const PT_PERSONAL_NOTE = 128;
61
62         // Posting reasons (Why had a post been stored for a user?)
63         const PR_NONE = 0;
64         const PR_TAG = 64;
65         const PR_TO = 65;
66         const PR_CC = 66;
67         const PR_BTO = 67;
68         const PR_BCC = 68;
69         const PR_FOLLOWER = 69;
70         const PR_ANNOUNCEMENT = 70;
71         const PR_COMMENT = 71;
72         const PR_STORED = 72;
73         const PR_GLOBAL = 73;
74         const PR_RELAY = 74;
75         const PR_FETCHED = 75;
76
77         // system.accept_only_sharer setting values
78         const COMPLETION_NONE    = 1;
79         const COMPLETION_COMMENT = 0;
80         const COMPLETION_LIKE    = 2;
81
82         // Field list that is used to display the items
83         const DISPLAY_FIELDLIST = [
84                 'uid', 'id', 'parent', 'guid', 'network', 'gravity',
85                 'uri-id', 'uri', 'thr-parent-id', 'thr-parent', 'parent-uri-id', 'parent-uri',
86                 'commented', 'created', 'edited', 'received', 'verb', 'object-type', 'postopts', 'plink',
87                 'wall', 'private', 'starred', 'origin', 'parent-origin', 'title', 'body', 'language',
88                 'content-warning', 'location', 'coord', 'app', 'rendered-hash', 'rendered-html', 'object',
89                 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'mention', 'global',
90                 'author-id', 'author-link', 'author-name', 'author-avatar', 'author-network', 'author-updated', 'author-gsid', 'author-addr',
91                 'owner-id', 'owner-link', 'owner-name', 'owner-avatar', 'owner-network', 'owner-contact-type', 'owner-updated',
92                 'causer-id', 'causer-link', 'causer-name', 'causer-avatar', 'causer-contact-type', 'causer-network',
93                 'contact-id', 'contact-uid', 'contact-link', 'contact-name', 'contact-avatar',
94                 'writable', 'self', 'cid', 'alias',
95                 'event-created', 'event-edited', 'event-start', 'event-finish',
96                 'event-summary', 'event-desc', 'event-location', 'event-type',
97                 'event-nofinish', 'event-ignore', 'event-id',
98                 'delivery_queue_count', 'delivery_queue_done', 'delivery_queue_failed'
99         ];
100
101         // Field list that is used to deliver items via the protocols
102         const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri-id', 'uri', 'thr-parent', 'parent-uri', 'guid',
103                         'parent-guid', 'received', 'created', 'edited', 'verb', 'object-type', 'object', 'target',
104                         'private', 'title', 'body', 'raw-body', 'location', 'coord', 'app',
105                         'inform', 'deleted', 'extid', 'post-type', 'post-reason', 'gravity',
106                         'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
107                         'author-id', 'author-link', 'author-name', 'author-avatar', 'owner-id', 'owner-link', 'contact-uid',
108                         'signed_text', 'network', 'wall', 'contact-id', 'plink', 'origin',
109                         'thr-parent-id', 'parent-uri-id', 'postopts', 'pubmail',
110                         'event-created', 'event-edited', 'event-start', 'event-finish',
111                         'event-summary', 'event-desc', 'event-location', 'event-type',
112                         'event-nofinish', 'event-ignore', 'event-id'];
113
114         // All fields in the item table
115         const ITEM_FIELDLIST = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent',
116                         'guid', 'uri-id', 'parent-uri-id', 'thr-parent-id', 'vid',
117                         'contact-id', 'wall', 'gravity', 'extid', 'psid',
118                         'created', 'edited', 'commented', 'received', 'changed', 'verb',
119                         'postopts', 'plink', 'resource-id', 'event-id', 'inform',
120                         'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'post-type', 'post-reason',
121                         'private', 'pubmail', 'visible', 'starred',
122                         'unseen', 'deleted', 'origin', 'mention', 'global', 'network',
123                         'title', 'content-warning', 'body', 'location', 'coord', 'app',
124                         'rendered-hash', 'rendered-html', 'object-type', 'object', 'target-type', 'target',
125                         'author-id', 'author-link', 'author-name', 'author-avatar', 'author-network',
126                         'owner-id', 'owner-link', 'owner-name', 'owner-avatar', 'causer-id'];
127
128         // List of all verbs that don't need additional content data.
129         // Never reorder or remove entries from this list. Just add new ones at the end, if needed.
130         const ACTIVITIES = [
131                 Activity::LIKE, Activity::DISLIKE,
132                 Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE,
133                 Activity::FOLLOW,
134                 Activity::ANNOUNCE];
135
136         const PUBLIC = 0;
137         const PRIVATE = 1;
138         const UNLISTED = 2;
139
140         /**
141          * Update existing item entries
142          *
143          * @param array $fields    The fields that are to be changed
144          * @param array $condition The condition for finding the item entries
145          *
146          * In the future we may have to change permissions as well.
147          * Then we had to add the user id as third parameter.
148          *
149          * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
150          *
151          * @return integer|boolean number of affected rows - or "false" if there was an error
152          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
153          */
154         public static function update(array $fields, array $condition)
155         {
156                 if (empty($condition) || empty($fields)) {
157                         return false;
158                 }
159
160                 if (isset($fields['extid'])) {
161                         $fields['external-id'] = ItemURI::getIdByURI($fields['extid']);
162                 }
163
164                 if (!empty($fields['verb'])) {
165                         $fields['vid'] = Verb::getID($fields['verb']);
166                 }
167
168                 if (!empty($fields['edited'])) {
169                         $previous = Post::selectFirst(['edited'], $condition);
170                 }
171
172                 $rows = Post::update($fields, $condition);
173                 if (is_bool($rows)) {
174                         return $rows;
175                 }
176
177                 // We only need to call the line by line update for specific fields
178                 if (empty($fields['body']) && empty($fields['file']) &&
179                         empty($fields['attach']) && empty($fields['edited'])) {
180                         return $rows;
181                 }
182
183                 Logger::info('Updating per single row method', ['fields' => $fields, 'condition' => $condition]);
184
185                 $items = Post::select(['id', 'origin', 'uri-id', 'uid', 'author-network'], $condition);
186
187                 $notify_items = [];
188
189                 while ($item = DBA::fetch($items)) {
190                         if (!empty($fields['body'])) {
191                                 Post\Media::insertFromAttachmentData($item['uri-id'], $fields['body']);
192
193                                 $content_fields = ['raw-body' => trim($fields['raw-body'] ?? $fields['body'])];
194
195                                 // Remove all media attachments from the body and store them in the post-media table
196                                 // @todo On shared postings (Diaspora style and commented reshare) don't fetch content from the shared part
197                                 $content_fields['raw-body'] = Post\Media::insertFromBody($item['uri-id'], $content_fields['raw-body']);
198                                 $content_fields['raw-body'] = self::setHashtags($content_fields['raw-body']);
199
200                                 if ($item['author-network'] != Protocol::DFRN) {
201                                         Post\Media::insertFromRelevantUrl($item['uri-id'], $content_fields['raw-body']);
202                                 }
203
204                                 Post\Content::update($item['uri-id'], $content_fields);
205                         }
206
207                         if (!empty($fields['file'])) {
208                                 Post\Category::storeTextByURIId($item['uri-id'], $item['uid'], $fields['file']);
209                         }
210
211                         if (!empty($fields['attach'])) {
212                                 Post\Media::insertFromAttachment($item['uri-id'], $fields['attach']);
213                         }
214
215                         // We only need to notfiy others when it is an original entry from us.
216                         // Only call the notifier when the item had been edited and records had been changed.
217                         if ($item['origin'] && !empty($fields['edited']) && ($previous['edited'] != $fields['edited'])) {
218                                 $notify_items[] = $item['id'];
219                         }
220                 }
221
222                 DBA::close($items);
223
224                 foreach ($notify_items as $notify_item) {
225                         $post = Post::selectFirst(['uri-id', 'uid'], ['id' => $notify_item]);
226                         Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, (int)$post['uri-id'], (int)$post['uid']);
227                 }
228
229                 return $rows;
230         }
231
232         /**
233          * Delete an item and notify others about it - if it was ours
234          *
235          * @param array   $condition The condition for finding the item entries
236          * @param integer $priority  Priority for the notification
237          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
238          */
239         public static function markForDeletion($condition, $priority = PRIORITY_HIGH)
240         {
241                 $items = Post::select(['id'], $condition);
242                 while ($item = Post::fetch($items)) {
243                         self::markForDeletionById($item['id'], $priority);
244                 }
245                 DBA::close($items);
246         }
247
248         /**
249          * Delete an item for an user and notify others about it - if it was ours
250          *
251          * @param array   $condition The condition for finding the item entries
252          * @param integer $uid       User who wants to delete this item
253          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
254          */
255         public static function deleteForUser($condition, $uid)
256         {
257                 if ($uid == 0) {
258                         return;
259                 }
260
261                 $items = Post::select(['id', 'uid', 'uri-id'], $condition);
262                 while ($item = Post::fetch($items)) {
263                         if (in_array($item['uid'], [$uid, 0])) {
264                                 Post\User::update($item['uri-id'], $uid, ['hidden' => true], true);
265                                 Post\ThreadUser::update($item['uri-id'], $uid, ['hidden' => true], true);
266                         }
267
268                         if ($item['uid'] == $uid) {
269                                 self::markForDeletionById($item['id'], PRIORITY_HIGH);
270                         } elseif ($item['uid'] != 0) {
271                                 Logger::notice('Wrong ownership. Not deleting item', ['id' => $item['id']]);
272                         }
273                 }
274                 DBA::close($items);
275         }
276
277         /**
278          * Mark an item for deletion, delete related data and notify others about it - if it was ours
279          *
280          * @param integer $item_id
281          * @param integer $priority Priority for the notification
282          *
283          * @return boolean success
284          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
285          */
286         public static function markForDeletionById($item_id, $priority = PRIORITY_HIGH)
287         {
288                 Logger::info('Mark item for deletion by id', ['id' => $item_id, 'callstack' => System::callstack()]);
289                 // locate item to be deleted
290                 $fields = ['id', 'uri', 'uri-id', 'uid', 'parent', 'parent-uri-id', 'origin',
291                         'deleted', 'resource-id', 'event-id',
292                         'verb', 'object-type', 'object', 'target', 'contact-id', 'psid', 'gravity'];
293                 $item = Post::selectFirst($fields, ['id' => $item_id]);
294                 if (!DBA::isResult($item)) {
295                         Logger::info('Item not found.', ['id' => $item_id]);
296                         return false;
297                 }
298
299                 if ($item['deleted']) {
300                         Logger::info('Item has already been marked for deletion.', ['id' => $item_id]);
301                         return false;
302                 }
303
304                 $parent = Post::selectFirst(['origin'], ['id' => $item['parent']]);
305                 if (!DBA::isResult($parent)) {
306                         $parent = ['origin' => false];
307                 }
308
309                 // clean up categories and tags so they don't end up as orphans
310                 Post\Category::deleteByURIId($item['uri-id'], $item['uid']);
311
312                 /*
313                  * If item is a link to a photo resource, nuke all the associated photos
314                  * (visitors will not have photo resources)
315                  * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
316                  * generate a resource-id and therefore aren't intimately linked to the item.
317                  */
318                 /// @TODO: this should first check if photo is used elsewhere
319                 if (strlen($item['resource-id'])) {
320                         Photo::delete(['resource-id' => $item['resource-id'], 'uid' => $item['uid']]);
321                 }
322
323                 // If item is a link to an event, delete the event.
324                 if (intval($item['event-id'])) {
325                         Event::delete($item['event-id']);
326                 }
327
328                 // If item has attachments, drop them
329                 $attachments = Post\Media::getByURIId($item['uri-id'], [Post\Media::DOCUMENT]);
330                 foreach($attachments as $attachment) {
331                         if (preg_match("|attach/(\d+)|", $attachment['url'], $matches)) {
332                                 Attach::delete(['id' => $matches[1], 'uid' => $item['uid']]);
333                         }
334                 }
335
336                 // Set the item to "deleted"
337                 $item_fields = ['deleted' => true, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
338                 Post::update($item_fields, ['id' => $item['id']]);
339
340                 Post\Category::storeTextByURIId($item['uri-id'], $item['uid'], '');
341
342                 if (!Post::exists(["`uri-id` = ? AND `uid` != 0 AND NOT `deleted`", $item['uri-id']])) {
343                         self::markForDeletion(['uri-id' => $item['uri-id'], 'uid' => 0, 'deleted' => false], $priority);
344                 }
345
346                 Post\DeliveryData::delete($item['uri-id']);
347
348                 // If it's the parent of a comment thread, kill all the kids
349                 if ($item['gravity'] == GRAVITY_PARENT) {
350                         self::markForDeletion(['parent' => $item['parent'], 'deleted' => false], $priority);
351                 }
352
353                 // Is it our comment and/or our thread?
354                 if (($item['origin'] || $parent['origin']) && ($item['uid'] != 0)) {
355                         // When we delete the original post we will delete all existing copies on the server as well
356                         self::markForDeletion(['uri-id' => $item['uri-id'], 'deleted' => false], $priority);
357
358                         // send the notification upstream/downstream
359                         if ($priority) {
360                                 Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", Delivery::DELETION, (int)$item['uri-id'], (int)$item['uid']);
361                         }
362                 } elseif ($item['uid'] != 0) {
363                         Post\User::update($item['uri-id'], $item['uid'], ['hidden' => true]);
364                         Post\ThreadUser::update($item['uri-id'], $item['uid'], ['hidden' => true]);
365                 }
366
367                 Logger::info('Item has been marked for deletion.', ['id' => $item_id]);
368
369                 return true;
370         }
371
372         public static function guid($item, $notify)
373         {
374                 if (!empty($item['guid'])) {
375                         return trim($item['guid']);
376                 }
377
378                 if ($notify) {
379                         // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
380                         // We add the hash of our own host because our host is the original creator of the post.
381                         $prefix_host = DI::baseUrl()->getHostname();
382                 } else {
383                         $prefix_host = '';
384
385                         // We are only storing the post so we create a GUID from the original hostname.
386                         if (!empty($item['author-link'])) {
387                                 $parsed = parse_url($item['author-link']);
388                                 if (!empty($parsed['host'])) {
389                                         $prefix_host = $parsed['host'];
390                                 }
391                         }
392
393                         if (empty($prefix_host) && !empty($item['plink'])) {
394                                 $parsed = parse_url($item['plink']);
395                                 if (!empty($parsed['host'])) {
396                                         $prefix_host = $parsed['host'];
397                                 }
398                         }
399
400                         if (empty($prefix_host) && !empty($item['uri'])) {
401                                 $parsed = parse_url($item['uri']);
402                                 if (!empty($parsed['host'])) {
403                                         $prefix_host = $parsed['host'];
404                                 }
405                         }
406
407                         // Is it in the format data@host.tld? - Used for mail contacts
408                         if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
409                                 $mailparts = explode('@', $item['author-link']);
410                                 $prefix_host = array_pop($mailparts);
411                         }
412                 }
413
414                 if (!empty($item['plink'])) {
415                         $guid = self::guidFromUri($item['plink'], $prefix_host);
416                 } elseif (!empty($item['uri'])) {
417                         $guid = self::guidFromUri($item['uri'], $prefix_host);
418                 } else {
419                         $guid = System::createUUID(hash('crc32', $prefix_host));
420                 }
421
422                 return $guid;
423         }
424
425         private static function contactId($item)
426         {
427                 if (!empty($item['contact-id']) && DBA::exists('contact', ['self' => true, 'id' => $item['contact-id']])) {
428                         return $item['contact-id'];
429                 } elseif (($item['gravity'] == GRAVITY_PARENT) && !empty($item['uid']) && !empty($item['contact-id']) && Contact::isSharing($item['contact-id'], $item['uid'])) {
430                         return $item['contact-id'];
431                 } elseif (!empty($item['uid']) && !Contact::isSharing($item['author-id'], $item['uid'])) {
432                         return $item['author-id'];
433                 } elseif (!empty($item['contact-id'])) {
434                         return $item['contact-id'];
435                 } else {
436                         $contact_id = Contact::getIdForURL($item['author-link'], $item['uid']);
437                         if (!empty($contact_id)) {
438                                 return $contact_id;
439                         }
440                 }
441                 return $item['author-id'];
442         }
443
444         /**
445          * Write an item array into a spool file to be inserted later.
446          * This command is called whenever there are issues storing an item.
447          *
448          * @param array $item The item fields that are to be inserted
449          * @throws \Exception
450          */
451         private static function spool($orig_item)
452         {
453                 // Now we store the data in the spool directory
454                 // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
455                 $file = 'item-' . round(microtime(true) * 10000) . '-' . mt_rand() . '.msg';
456
457                 $spoolpath = System::getSpoolPath();
458                 if ($spoolpath != "") {
459                         $spool = $spoolpath . '/' . $file;
460
461                         file_put_contents($spool, json_encode($orig_item));
462                         Logger::warning("Item wasn't stored - Item was spooled into file", ['file' => $file]);
463                 }
464         }
465
466         /**
467          * Check if the item array is a duplicate
468          *
469          * @param array $item
470          * @return boolean is it a duplicate?
471          */
472         private static function isDuplicate(array $item)
473         {
474                 // Checking if there is already an item with the same guid
475                 $condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
476                 if (Post::exists($condition)) {
477                         Logger::notice('Found already existing item', $condition);
478                         return true;
479                 }
480
481                 $condition = ['uri-id' => $item['uri-id'], 'uid' => $item['uid'],
482                         'network' => [$item['network'], Protocol::DFRN]];
483                 if (Post::exists($condition)) {
484                         Logger::notice('duplicated item with the same uri found.', $condition);
485                         return true;
486                 }
487
488                 // On Friendica and Diaspora the GUID is unique
489                 if (in_array($item['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
490                         $condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
491                         if (Post::exists($condition)) {
492                                 Logger::notice('duplicated item with the same guid found.', $condition);
493                                 return true;
494                         }
495                 } elseif ($item['network'] == Protocol::OSTATUS) {
496                         // Check for an existing post with the same content. There seems to be a problem with OStatus.
497                         $condition = ["`body` = ? AND `network` = ? AND `created` = ? AND `contact-id` = ? AND `uid` = ?",
498                                         $item['body'], $item['network'], $item['created'], $item['contact-id'], $item['uid']];
499                         if (Post::exists($condition)) {
500                                 Logger::notice('duplicated item with the same body found.', $item);
501                                 return true;
502                         }
503                 }
504
505                 /*
506                  * Check for already added items.
507                  * There is a timing issue here that sometimes creates double postings.
508                  * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
509                  */
510                 if (($item['uid'] == 0) && Post::exists(['uri-id' => $item['uri-id'], 'uid' => 0])) {
511                         Logger::notice('Global item already stored.', ['uri-id' => $item['uri-id'], 'network' => $item['network']]);
512                         return true;
513                 }
514
515                 return false;
516         }
517
518         /**
519          * Check if the item array is valid
520          *
521          * @param array $item
522          * @return boolean item is valid
523          */
524         public static function isValid(array $item)
525         {
526                 // When there is no content then we don't post it
527                 if (($item['body'] . $item['title'] == '') && (empty($item['uri-id']) || !Post\Media::existsByURIId($item['uri-id']))) {
528                         Logger::notice('No body, no title.');
529                         return false;
530                 }
531
532                 if (!empty($item['uid'])) {
533                         $owner = User::getOwnerDataById($item['uid'], false);
534                         if (!$owner) {
535                                 Logger::notice('Missing item user owner data', ['uid' => $item['uid']]);
536                                 return false;
537                         }
538
539                         if ($owner['account_expired'] || $owner['account_removed']) {
540                                 Logger::notice('Item user has been deleted/expired/removed', ['uid' => $item['uid'], 'deleted' => $owner['deleted'], 'account_expired' => $owner['account_expired'], 'account_removed' => $owner['account_removed']]);
541                                 return false;
542                         }
543                 }
544
545                 if (!empty($item['author-id']) && Contact::isBlocked($item['author-id'])) {
546                         Logger::notice('Author is blocked node-wide', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
547                         return false;
548                 }
549
550                 if (!empty($item['author-link']) && Network::isUrlBlocked($item['author-link'])) {
551                         Logger::notice('Author server is blocked', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
552                         return false;
553                 }
554
555                 if (!empty($item['owner-id']) && Contact::isBlocked($item['owner-id'])) {
556                         Logger::notice('Owner is blocked node-wide', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
557                         return false;
558                 }
559
560                 if (!empty($item['owner-link']) && Network::isUrlBlocked($item['owner-link'])) {
561                         Logger::notice('Owner server is blocked', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
562                         return false;
563                 }
564
565                 if (!empty($item['uid']) && !self::isAllowedByUser($item, $item['uid'])) {
566                         return false;
567                 }
568
569                 if ($item['verb'] == Activity::FOLLOW) {
570                         if (!$item['origin'] && ($item['author-id'] == Contact::getPublicIdByUserId($item['uid']))) {
571                                 // Our own follow request can be relayed to us. We don't store it to avoid notification chaos.
572                                 Logger::info("Follow: Don't store not origin follow request", ['parent-uri' => $item['parent-uri']]);
573                                 return false;
574                         }
575
576                         $condition = ['verb' => Activity::FOLLOW, 'uid' => $item['uid'],
577                                 'parent-uri' => $item['parent-uri'], 'author-id' => $item['author-id']];
578                         if (Post::exists($condition)) {
579                                 // It happens that we receive multiple follow requests by the same author - we only store one.
580                                 Logger::info('Follow: Found existing follow request from author', ['author-id' => $item['author-id'], 'parent-uri' => $item['parent-uri']]);
581                                 return false;
582                         }
583                 }
584
585                 return true;
586         }
587
588         /**
589          * Check if the item array is too old
590          *
591          * @param array $item
592          * @return boolean item is too old
593          */
594         public static function isTooOld(array $item)
595         {
596                 // check for create date and expire time
597                 $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0);
598
599                 $user = DBA::selectFirst('user', ['expire'], ['uid' => $item['uid']]);
600                 if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
601                         $expire_interval = $user['expire'];
602                 }
603
604                 if (($expire_interval > 0) && !empty($item['created'])) {
605                         $expire_date = time() - ($expire_interval * 86400);
606                         $created_date = strtotime($item['created']);
607                         if ($created_date < $expire_date) {
608                                 Logger::notice('Item created before expiration interval.', [
609                                         'created' => date('c', $created_date),
610                                         'expired' => date('c', $expire_date),
611                                         '$item' => $item
612                                 ]);
613                                 return true;
614                         }
615                 }
616
617                 return false;
618         }
619
620         /**
621          * Return the id of the given item array if it has been stored before
622          *
623          * @param array $item
624          * @return integer item id
625          */
626         private static function getDuplicateID(array $item)
627         {
628                 if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
629                         $condition = ["`uri-id` = ? AND `uid` = ? AND `network` IN (?, ?, ?, ?)",
630                                 $item['uri-id'], $item['uid'],
631                                 Protocol::ACTIVITYPUB, Protocol::DIASPORA, Protocol::DFRN, Protocol::OSTATUS];
632                         $existing = Post::selectFirst(['id', 'network'], $condition);
633                         if (DBA::isResult($existing)) {
634                                 // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
635                                 if ($item['uid'] != 0) {
636                                         Logger::notice('Item already existed for user', [
637                                                 'uri-id' => $item['uri-id'],
638                                                 'uid' => $item['uid'],
639                                                 'network' => $item['network'],
640                                                 'existing_id' => $existing["id"],
641                                                 'existing_network' => $existing["network"]
642                                         ]);
643                                 }
644
645                                 return $existing["id"];
646                         }
647                 }
648                 return 0;
649         }
650
651         /**
652          * Fetch top-level parent data for the given item array
653          *
654          * @param array $item
655          * @return array item array with parent data
656          * @throws \Exception
657          */
658         private static function getTopLevelParent(array $item)
659         {
660                 $fields = ['uid', 'uri', 'parent-uri', 'id', 'deleted',
661                         'uri-id', 'parent-uri-id',
662                         'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
663                         'wall', 'private', 'origin', 'author-id'];
664                 $condition = ['uri-id' => $item['thr-parent-id'], 'uid' => $item['uid']];
665                 $params = ['order' => ['id' => false]];
666                 $parent = Post::selectFirst($fields, $condition, $params);
667
668                 if (!DBA::isResult($parent) && $item['origin']) {
669                         $stored = Item::storeForUserByUriId($item['thr-parent-id'], $item['uid']);
670                         Logger::info('Stored thread parent item for user', ['uri-id' => $item['thr-parent-id'], 'uid' => $item['uid'], 'stored' => $stored]);
671                         $parent = Post::selectFirst($fields, $condition, $params);
672                 }
673
674                 if (!DBA::isResult($parent)) {
675                         Logger::notice('item parent was not found - ignoring item', ['thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
676                         return [];
677                 }
678
679                 if ($parent['uri-id'] == $parent['parent-uri-id']) {
680                         return $parent;
681                 }
682
683                 $condition = ['uri-id' => $parent['parent-uri-id'],
684                         'parent-uri-id' => $parent['parent-uri-id'],
685                         'uid' => $parent['uid']];
686                 $params = ['order' => ['id' => false]];
687                 $toplevel_parent = Post::selectFirst($fields, $condition, $params);
688
689                 if (!DBA::isResult($toplevel_parent) && $item['origin']) {
690                         $stored = Item::storeForUserByUriId($item['parent-uri-id'], $item['uid']);
691                         Logger::info('Stored parent item for user', ['uri-id' => $item['parent-uri-id'], 'uid' => $item['uid'], 'stored' => $stored]);
692                         $toplevel_parent = Post::selectFirst($fields, $condition, $params);
693                 }
694
695                 if (!DBA::isResult($toplevel_parent)) {
696                         Logger::notice('item top level parent was not found - ignoring item', ['parent-uri-id' => $parent['parent-uri-id'], 'uid' => $parent['uid']]);
697                         return [];
698                 }
699
700                 return $toplevel_parent;
701         }
702
703         /**
704          * Get the gravity for the given item array
705          *
706          * @param array $item
707          * @return integer gravity
708          */
709         private static function getGravity(array $item)
710         {
711                 $activity = DI::activity();
712
713                 if (isset($item['gravity'])) {
714                         return intval($item['gravity']);
715                 } elseif ($item['parent-uri-id'] === $item['uri-id']) {
716                         return GRAVITY_PARENT;
717                 } elseif ($activity->match($item['verb'], Activity::POST)) {
718                         return GRAVITY_COMMENT;
719                 } elseif ($activity->match($item['verb'], Activity::FOLLOW)) {
720                         return GRAVITY_ACTIVITY;
721                 } elseif ($activity->match($item['verb'], Activity::ANNOUNCE)) {
722                         return GRAVITY_ACTIVITY;
723                 }
724                 Logger::info('Unknown gravity for verb', ['verb' => $item['verb']]);
725                 return GRAVITY_UNKNOWN;   // Should not happen
726         }
727
728         public static function insert(array $item, bool $notify = false, bool $post_local = true)
729         {
730                 $orig_item = $item;
731
732                 $priority = PRIORITY_HIGH;
733
734                 // If it is a posting where users should get notifications, then define it as wall posting
735                 if ($notify) {
736                         $item['wall'] = 1;
737                         $item['origin'] = 1;
738                         $item['network'] = Protocol::DFRN;
739                         $item['protocol'] = Conversation::PARCEL_DIRECT;
740                         $item['direction'] = Conversation::PUSH;
741
742                         if (in_array($notify, PRIORITIES)) {
743                                 $priority = $notify;
744                         }
745                 } else {
746                         $item['network'] = trim(($item['network'] ?? '') ?: Protocol::PHANTOM);
747                 }
748
749                 $uid = intval($item['uid']);
750
751                 $item['guid'] = self::guid($item, $notify);
752                 $item['uri'] = substr(trim($item['uri'] ?? '') ?: self::newURI($item['uid'], $item['guid']), 0, 255);
753
754                 // Store URI data
755                 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
756
757                 // Backward compatibility: parent-uri used to be the direct parent uri.
758                 // If it is provided without a thr-parent, it probably is the old behavior.
759                 $item['thr-parent'] = trim($item['thr-parent'] ?? $item['parent-uri'] ?? $item['uri']);
760                 $item['parent-uri'] = $item['thr-parent'];
761
762                 $item['thr-parent-id'] = $item['parent-uri-id'] = ItemURI::getIdByURI($item['thr-parent']);
763
764                 // Store conversation data
765                 $item = Conversation::insert($item);
766
767                 /*
768                  * Do we already have this item?
769                  * We have to check several networks since Friendica posts could be repeated
770                  * via OStatus (maybe Diasporsa as well)
771                  */
772                 $duplicate = self::getDuplicateID($item);
773                 if ($duplicate) {
774                         return $duplicate;
775                 }
776
777                 // Additional duplicate checks
778                 /// @todo Check why the first duplication check returns the item number and the second a 0
779                 if (self::isDuplicate($item)) {
780                         return 0;
781                 }
782
783                 if (!isset($item['post-type'])) {
784                         $item['post-type'] = empty($item['title']) ? self::PT_NOTE : self::PT_ARTICLE;
785                 }
786
787                 $item['wall']          = intval($item['wall'] ?? 0);
788                 $item['extid']         = trim($item['extid'] ?? '');
789                 $item['author-name']   = trim($item['author-name'] ?? '');
790                 $item['author-link']   = trim($item['author-link'] ?? '');
791                 $item['author-avatar'] = trim($item['author-avatar'] ?? '');
792                 $item['owner-name']    = trim($item['owner-name'] ?? '');
793                 $item['owner-link']    = trim($item['owner-link'] ?? '');
794                 $item['owner-avatar']  = trim($item['owner-avatar'] ?? '');
795                 $item['received']      = (isset($item['received'])  ? DateTimeFormat::utc($item['received'])  : DateTimeFormat::utcNow());
796                 $item['created']       = (isset($item['created'])   ? DateTimeFormat::utc($item['created'])   : $item['received']);
797                 $item['edited']        = (isset($item['edited'])    ? DateTimeFormat::utc($item['edited'])    : $item['created']);
798                 $item['changed']       = (isset($item['changed'])   ? DateTimeFormat::utc($item['changed'])   : $item['created']);
799                 $item['commented']     = (isset($item['commented']) ? DateTimeFormat::utc($item['commented']) : $item['created']);
800                 $item['title']         = substr(trim($item['title'] ?? ''), 0, 255);
801                 $item['location']      = trim($item['location'] ?? '');
802                 $item['coord']         = trim($item['coord'] ?? '');
803                 $item['visible']       = (isset($item['visible']) ? intval($item['visible']) : 1);
804                 $item['deleted']       = 0;
805                 $item['verb']          = trim($item['verb'] ?? '');
806                 $item['object-type']   = trim($item['object-type'] ?? '');
807                 $item['object']        = trim($item['object'] ?? '');
808                 $item['target-type']   = trim($item['target-type'] ?? '');
809                 $item['target']        = trim($item['target'] ?? '');
810                 $item['plink']         = substr(trim($item['plink'] ?? ''), 0, 255);
811                 $item['allow_cid']     = trim($item['allow_cid'] ?? '');
812                 $item['allow_gid']     = trim($item['allow_gid'] ?? '');
813                 $item['deny_cid']      = trim($item['deny_cid'] ?? '');
814                 $item['deny_gid']      = trim($item['deny_gid'] ?? '');
815                 $item['private']       = intval($item['private'] ?? self::PUBLIC);
816                 $item['body']          = trim($item['body'] ?? '');
817                 $item['raw-body']      = trim($item['raw-body'] ?? $item['body']);
818                 $item['app']           = trim($item['app'] ?? '');
819                 $item['origin']        = intval($item['origin'] ?? 0);
820                 $item['postopts']      = trim($item['postopts'] ?? '');
821                 $item['resource-id']   = trim($item['resource-id'] ?? '');
822                 $item['event-id']      = intval($item['event-id'] ?? 0);
823                 $item['inform']        = trim($item['inform'] ?? '');
824                 $item['file']          = trim($item['file'] ?? '');
825
826                 // Communities aren't working with the Diaspora protoccol
827                 if (($uid != 0) && ($item['network'] == Protocol::DIASPORA)) {
828                         $user = User::getById($uid, ['account-type']);
829                         if ($user['account-type'] == Contact::TYPE_COMMUNITY) {
830                                 Logger::info('Community posts are not supported via Diaspora');
831                                 return 0;
832                         }
833                 }
834
835                 // Items cannot be stored before they happen ...
836                 if ($item['created'] > DateTimeFormat::utcNow()) {
837                         $item['created'] = DateTimeFormat::utcNow();
838                 }
839
840                 // We haven't invented time travel by now.
841                 if ($item['edited'] > DateTimeFormat::utcNow()) {
842                         $item['edited'] = DateTimeFormat::utcNow();
843                 }
844
845                 $item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
846
847                 $item['gravity'] = self::getGravity($item);
848
849                 $item['language'] = self::getLanguage($item);
850
851                 $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
852                         'photo' => $item['author-avatar'], 'network' => $item['network']];
853                 $item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, null, $default);
854
855                 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
856                         'photo' => $item['owner-avatar'], 'network' => $item['network']];
857                 $item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, null, $default);
858
859                 $actor = ($item['gravity'] == GRAVITY_PARENT) ? $item['owner-id'] : $item['author-id'];
860                 if (!$item['origin'] && ($item['uid'] != 0) && Contact::isSharing($actor, $item['uid'])) {
861                         $item['post-reason'] = self::PR_FOLLOWER;
862                 }
863
864                 // Ensure that there is an avatar cache
865                 Contact::checkAvatarCache($item['author-id']);
866                 Contact::checkAvatarCache($item['owner-id']);
867
868                 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
869                 $item["contact-id"] = self::contactId($item);
870
871                 if (!empty($item['direction']) && in_array($item['direction'], [Conversation::PUSH, Conversation::RELAY]) &&
872                         empty($item['origin']) &&self::isTooOld($item)) {
873                         Logger::info('Item is too old', ['item' => $item]);
874                         return 0;
875                 }
876
877                 if (!self::isValid($item)) {
878                         return 0;
879                 }
880
881                 if ($item['gravity'] !== GRAVITY_PARENT) {
882                         $toplevel_parent = self::getTopLevelParent($item);
883                         if (empty($toplevel_parent)) {
884                                 return 0;
885                         }
886
887                         // If the thread originated from this node, we check the permission against the thread starter
888                         $condition = ['uri-id' => $toplevel_parent['uri-id'], 'wall' => true];
889                         $localTopLevelParent = Post::selectFirst(['uid'], $condition);
890                         if (!empty($localTopLevelParent['uid']) && !self::isAllowedByUser($item, $localTopLevelParent['uid'])) {
891                                 return 0;
892                         }
893
894                         $parent_id             = $toplevel_parent['id'];
895                         $item['parent-uri']    = $toplevel_parent['uri'];
896                         $item['parent-uri-id'] = $toplevel_parent['uri-id'];
897                         $item['deleted']       = $toplevel_parent['deleted'];
898
899                         // Reshares have to keep their permissions to allow forums to work
900                         if (!$item['origin'] || ($item['verb'] != Activity::ANNOUNCE)) {
901                                 $item['allow_cid']     = $toplevel_parent['allow_cid'];
902                                 $item['allow_gid']     = $toplevel_parent['allow_gid'];
903                                 $item['deny_cid']      = $toplevel_parent['deny_cid'];
904                                 $item['deny_gid']      = $toplevel_parent['deny_gid'];
905                         }
906
907                         $parent_origin         = $toplevel_parent['origin'];
908
909                         // Don't federate received participation messages
910                         if ($item['verb'] != Activity::FOLLOW) {
911                                 $item['wall'] = $toplevel_parent['wall'];
912                         } else {
913                                 $item['wall'] = false;
914                                 // Participations are technical messages, so they are set to "seen" automatically
915                                 $item['unseen'] = false;
916                         }
917
918                         /*
919                          * If the parent is private, force privacy for the entire conversation
920                          * This differs from the above settings as it subtly allows comments from
921                          * email correspondents to be private even if the overall thread is not.
922                          */
923                         if ($toplevel_parent['private']) {
924                                 $item['private'] = $toplevel_parent['private'];
925                         }
926
927                         // If its a post that originated here then tag the thread as "mention"
928                         if ($item['origin'] && $item['uid']) {
929                                 DBA::update('post-thread-user', ['mention' => true], ['uri-id' => $item['parent-uri-id'], 'uid' => $item['uid']]);
930                                 Logger::info('tagged thread as mention', ['parent' => $parent_id, 'parent-uri-id' => $item['parent-uri-id'], 'uid' => $item['uid']]);
931                         }
932
933                         // Update the contact relations
934                         Contact\Relation::store($toplevel_parent['author-id'], $item['author-id'], $item['created']);
935                 } else {
936                         $parent_id = 0;
937                         $parent_origin = $item['origin'];
938                 }
939
940                 $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
941                 $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
942
943                 // Is this item available in the global items (with uid=0)?
944                 if ($item["uid"] == 0) {
945                         $item["global"] = true;
946
947                         // Set the global flag on all items if this was a global item entry
948                         Post::update(['global' => true], ['uri-id' => $item['uri-id']]);
949                 } else {
950                         $item['global'] = Post::exists(['uid' => 0, 'uri-id' => $item['uri-id']]);
951                 }
952
953                 // ACL settings
954                 if (!empty($item["allow_cid"] . $item["allow_gid"] . $item["deny_cid"] . $item["deny_gid"])) {
955                         $item["private"] = self::PRIVATE;
956                 }
957
958                 if ($notify && $post_local) {
959                         $item['edit'] = false;
960                         $item['parent'] = $parent_id;
961
962                         // Trigger automatic reactions for addons
963                         if (!isset($item['api_source'])) {
964                                 $item['api_source'] = true;
965                         }
966
967                         // We have to tell the hooks who we are - this really should be improved
968                         if (!local_user()) {
969                                 $_SESSION['authenticated'] = true;
970                                 $_SESSION['uid'] = $uid;
971                                 $dummy_session = true;
972                         } else {
973                                 $dummy_session = false;
974                         }
975
976                         Hook::callAll('post_local', $item);
977
978                         if ($dummy_session) {
979                                 unset($_SESSION['authenticated']);
980                                 unset($_SESSION['uid']);
981                         }
982                 } elseif (!$notify) {
983                         Hook::callAll('post_remote', $item);
984                 }
985
986                 if (!empty($item['cancel'])) {
987                         Logger::notice('post cancelled by addon.');
988                         return 0;
989                 }
990
991                 if (empty($item['vid']) && !empty($item['verb'])) {
992                         $item['vid'] = Verb::getID($item['verb']);
993                 }
994
995                 // Creates or assigns the permission set
996                 $item['psid'] = DI::permissionSet()->selectOrCreate(
997                         DI::permissionSetFactory()->createFromString(
998                                 $item['uid'],
999                                 $item['allow_cid'],
1000                                 $item['allow_gid'],
1001                                 $item['deny_cid'],
1002                                 $item['deny_gid']
1003                 ))->id;
1004
1005                 if (!empty($item['extid'])) {
1006                         $item['external-id'] = ItemURI::getIdByURI($item['extid']);
1007                 }
1008
1009                 if ($item['verb'] == Activity::ANNOUNCE) {
1010                         self::setOwnerforResharedItem($item);
1011                 }
1012
1013                 if (isset($item['attachments'])) {
1014                         foreach ($item['attachments'] as $attachment) {
1015                                 $attachment['uri-id'] = $item['uri-id'];
1016                                 Post\Media::insert($attachment);
1017                         }
1018                         unset($item['attachments']);
1019                 }
1020
1021                 Post\Media::insertFromAttachmentData($item['uri-id'], $item['body']);
1022
1023                 // Remove all media attachments from the body and store them in the post-media table
1024                 $item['raw-body'] = Post\Media::insertFromBody($item['uri-id'], $item['raw-body']);
1025                 $item['raw-body'] = self::setHashtags($item['raw-body']);
1026
1027                 if (!DBA::exists('contact', ['id' => $item['author-id'], 'network' => Protocol::DFRN])) {
1028                         Post\Media::insertFromRelevantUrl($item['uri-id'], $item['raw-body']);
1029                 }
1030
1031                 // Check for hashtags in the body and repair or add hashtag links
1032                 $item['body'] = self::setHashtags($item['body']);
1033
1034                 if (stristr($item['verb'], Activity::POKE)) {
1035                         $notify_type = Delivery::POKE;
1036                 } else {
1037                         $notify_type = Delivery::POST;
1038                 }
1039
1040                 // Filling item related side tables
1041                 if (!empty($item['attach'])) {
1042                         Post\Media::insertFromAttachment($item['uri-id'], $item['attach']);
1043                 }
1044
1045                 if (empty($item['event-id'])) {
1046                         unset($item['event-id']);
1047
1048                         $ev = Event::fromBBCode($item['body']);
1049                         if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
1050                                 Logger::info('Event found.');
1051                                 $ev['cid']       = $item['contact-id'];
1052                                 $ev['uid']       = $item['uid'];
1053                                 $ev['uri']       = $item['uri'];
1054                                 $ev['edited']    = $item['edited'];
1055                                 $ev['private']   = $item['private'];
1056                                 $ev['guid']      = $item['guid'];
1057                                 $ev['plink']     = $item['plink'];
1058                                 $ev['network']   = $item['network'];
1059                                 $ev['protocol']  = $item['protocol'] ?? Conversation::PARCEL_UNKNOWN;
1060                                 $ev['direction'] = $item['direction'] ?? Conversation::UNKNOWN;
1061                                 $ev['source']    = $item['source'] ?? '';
1062
1063                                 $event = DBA::selectFirst('event', ['id'], ['uri' => $item['uri'], 'uid' => $item['uid']]);
1064                                 if (DBA::isResult($event)) {
1065                                         $ev['id'] = $event['id'];
1066                                 }
1067
1068                                 $event_id = Event::store($ev);
1069                                 $item = Event::getItemArrayForImportedId($event_id, $item);
1070
1071                                 Logger::info('Event was stored', ['id' => $event_id]);
1072                         }
1073                 }
1074
1075                 if (empty($item['causer-id'])) {
1076                         unset($item['causer-id']);
1077                 }
1078
1079                 if (in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN])) {
1080                         $content_warning = BBCode::getAbstract($item['body'], Protocol::ACTIVITYPUB);
1081                         if (!empty($content_warning) && empty($item['content-warning'])) {
1082                                 $item['content-warning'] = $content_warning;
1083                         }
1084                 }
1085
1086                 Post::insert($item['uri-id'], $item);
1087
1088                 if ($item['gravity'] == GRAVITY_PARENT) {
1089                         Post\Thread::insert($item['uri-id'], $item);
1090                 }
1091
1092                 if (!in_array($item['verb'], self::ACTIVITIES)) {
1093                         Post\Content::insert($item['uri-id'], $item);
1094                 }
1095
1096                 // Create Diaspora signature
1097                 if ($item['origin'] && empty($item['diaspora_signed_text']) && ($item['gravity'] != GRAVITY_PARENT)) {
1098                         $signed = Diaspora::createCommentSignature($item);
1099                         if (!empty($signed)) {
1100                                 $item['diaspora_signed_text'] = json_encode($signed);
1101                         }
1102                 }
1103
1104                 if (!empty($item['diaspora_signed_text'])) {
1105                         DBA::replace('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $item['diaspora_signed_text']]);
1106                 }
1107
1108                 // Attached file links
1109                 if (!empty($item['file'])) {
1110                         Post\Category::storeTextByURIId($item['uri-id'], $item['uid'], $item['file']);
1111                 }
1112
1113                 // Delivery relevant data
1114                 $delivery_data = Post\DeliveryData::extractFields($item);
1115
1116                 if (!empty($item['origin']) || !empty($item['wall']) || !empty($delivery_data['postopts']) || !empty($delivery_data['inform'])) {
1117                         Post\DeliveryData::insert($item['uri-id'], $delivery_data);
1118                 }
1119
1120                 // Store tags from the body if this hadn't been handled previously in the protocol classes
1121                 if (!Tag::existsForPost($item['uri-id'])) {
1122                         Tag::storeFromBody($item['uri-id'], $item['body']);
1123                 }
1124
1125                 $condition = ['uri-id' => $item['uri-id'], 'uid' => $item['uid']];
1126                 if (Post::exists($condition)) {
1127                         Logger::notice('Item is already inserted - aborting', $condition);
1128                         return 0;
1129                 }
1130
1131                 $post_user_id = Post\User::insert($item['uri-id'], $item['uid'], $item);
1132                 if (!$post_user_id) {
1133                         Logger::notice('Post-User is already inserted - aborting', ['uid' => $item['uid'], 'uri-id' => $item['uri-id']]);
1134                         return 0;
1135                 }
1136
1137                 if ($item['gravity'] == GRAVITY_PARENT) {
1138                         $item['post-user-id'] = $post_user_id;
1139                         Post\ThreadUser::insert($item['uri-id'], $item['uid'], $item);
1140                 }
1141
1142                 Logger::notice('created item', ['post-id' => $post_user_id, 'uid' => $item['uid'], 'network' => $item['network'], 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
1143
1144                 $posted_item = Post::selectFirst(self::ITEM_FIELDLIST, ['post-user-id' => $post_user_id]);
1145                 if (!DBA::isResult($posted_item)) {
1146                         // On failure store the data into a spool file so that the "SpoolPost" worker can try again later.
1147                         Logger::warning('Could not store item. it will be spooled', ['id' => $post_user_id]);
1148                         self::spool($orig_item);
1149                         return 0;
1150                 }
1151
1152                 // update the commented timestamp on the parent
1153                 if (DI::config()->get('system', 'like_no_comment')) {
1154                         // Update when it is a comment
1155                         $update_commented = in_array($posted_item['gravity'], [GRAVITY_PARENT, GRAVITY_COMMENT]);
1156                 } else {
1157                         // Update when it isn't a follow or tag verb
1158                         $update_commented = !in_array($posted_item['verb'], [Activity::FOLLOW, Activity::TAG]);
1159                 }
1160
1161                 if ($update_commented) {
1162                         $fields = ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
1163                 } else {
1164                         $fields = ['changed' => DateTimeFormat::utcNow()];
1165                 }
1166
1167                 Post::update($fields, ['uri-id' => $posted_item['parent-uri-id'], 'uid' => $posted_item['uid']]);
1168
1169                 // In that function we check if this is a forum post. Additionally we delete the item under certain circumstances
1170                 if (self::tagDeliver($posted_item['uid'], $post_user_id)) {
1171                         // Get the user information for the logging
1172                         $user = User::getById($uid);
1173
1174                         Logger::notice('Item had been deleted', ['id' => $post_user_id, 'user' => $uid, 'account-type' => $user['account-type']]);
1175                         return 0;
1176                 }
1177
1178                 if ($notify) {
1179                         if (!\Friendica\Content\Feature::isEnabled($posted_item['uid'], 'explicit_mentions') && ($posted_item['gravity'] == GRAVITY_COMMENT)) {
1180                                 Tag::createImplicitMentions($posted_item['uri-id'], $posted_item['thr-parent-id']);
1181                         }
1182                         Hook::callAll('post_local_end', $posted_item);
1183                 } else {
1184                         Hook::callAll('post_remote_end', $posted_item);
1185                 }
1186
1187                 if ($posted_item['gravity'] === GRAVITY_PARENT) {
1188                         self::addShadow($post_user_id);
1189                 } else {
1190                         self::addShadowPost($post_user_id);
1191                 }
1192
1193                 self::updateContact($posted_item);
1194
1195                 Post\UserNotification::setNotification($posted_item['uri-id'], $posted_item['uid']);
1196
1197                 // Distribute items to users who subscribed to their tags
1198                 self::distributeByTags($posted_item);
1199
1200                 // Automatically reshare the item if the "remote_self" option is selected
1201                 self::autoReshare($posted_item);
1202
1203                 $transmit = $notify || ($posted_item['visible'] && ($parent_origin || $posted_item['origin']));
1204
1205                 if ($transmit) {
1206                         // Don't relay participation messages
1207                         if (($posted_item['verb'] == Activity::FOLLOW) &&
1208                                 (!$posted_item['origin'] || ($posted_item['author-id'] != Contact::getPublicIdByUserId($uid)))) {
1209                                 Logger::info('Participation messages will not be relayed', ['item' => $posted_item['id'], 'uri' => $posted_item['uri'], 'verb' => $posted_item['verb']]);
1210                                 $transmit = false;
1211                         }
1212                 }
1213
1214                 if ($transmit) {
1215                         Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, (int)$posted_item['uri-id'], (int)$posted_item['uid']);
1216                 }
1217
1218                 return $post_user_id;
1219         }
1220
1221         /**
1222          * Change the owner of a parent item if it had been shared by a forum
1223          *
1224          * (public) forum posts in the new format consist of the regular post by the author
1225          * followed by an announce message sent from the forum account.
1226          * Changing the owner helps in grouping forum posts.
1227          *
1228          * @param array $item
1229          * @return void
1230          */
1231         private static function setOwnerforResharedItem(array $item)
1232         {
1233                 $parent = Post::selectFirst(['id', 'causer-id', 'owner-id', 'author-id', 'author-link', 'origin', 'post-reason'],
1234                         ['uri-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
1235                 if (!DBA::isResult($parent)) {
1236                         Logger::error('Parent not found', ['uri-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
1237                         return;
1238                 }
1239
1240                 $author = Contact::selectFirst(['url', 'contact-type', 'network'], ['id' => $item['author-id']]);
1241                 if (!DBA::isResult($author)) {
1242                         Logger::error('Author not found', ['id' => $item['author-id']]);
1243                         return;
1244                 }
1245
1246                 $self_contact = Contact::selectFirst(['id'], ['uid' => $item['uid'], 'self' => true]);
1247                 $self = !empty($self_contact) ? $self_contact['id'] : 0;
1248
1249                 $cid = Contact::getIdForURL($author['url'], $item['uid']);
1250                 if (empty($cid) || (!Contact::isSharing($cid, $item['uid']) && ($cid != $self))) {
1251                         Logger::info('The resharer is not a following contact: quit', ['resharer' => $author['url'], 'uid' => $item['uid'], 'cid' => $cid]);
1252                         return;
1253                 }
1254
1255                 if ($author['contact-type'] != Contact::TYPE_COMMUNITY) {
1256                         if ($parent['post-reason'] == self::PR_ANNOUNCEMENT) {
1257                                 Logger::info('The parent is already marked as announced: quit', ['causer' => $parent['causer-id'], 'owner' => $parent['owner-id'], 'author' => $parent['author-id'], 'uid' => $item['uid']]);
1258                                 return;
1259                         }
1260
1261                         if (Contact::isSharing($parent['owner-id'], $item['uid'])) {
1262                                 Logger::info('The resharer is no forum: quit', ['resharer' => $item['author-id'], 'owner' => $parent['owner-id'], 'author' => $parent['author-id'], 'uid' => $item['uid']]);
1263                                 return;
1264                         }
1265                 }
1266
1267                 self::update(['post-reason' => self::PR_ANNOUNCEMENT, 'causer-id' => $item['author-id']], ['id' => $parent['id']]);
1268                 Logger::info('Set announcement post-reason', ['uri-id' => $item['uri-id'], 'thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
1269         }
1270
1271         /**
1272          * Distribute the given item to users who subscribed to their tags
1273          *
1274          * @param array $item     Processed item
1275          */
1276         private static function distributeByTags(array $item)
1277         {
1278                 if (($item['uid'] != 0) || ($item['gravity'] != GRAVITY_PARENT) || !in_array($item['network'], Protocol::FEDERATED)) {
1279                         return;
1280                 }
1281
1282                 $uids = Tag::getUIDListByURIId($item['uri-id']);
1283                 foreach ($uids as $uid) {
1284                         if (Contact::isSharing($item['author-id'], $uid)) {
1285                                 $fields = [];
1286                         } else {
1287                                 $fields = ['post-reason' => self::PR_TAG];
1288                         }
1289
1290                         $stored = self::storeForUserByUriId($item['uri-id'], $uid, $fields);
1291                         Logger::info('Stored item for users', ['uri-id' => $item['uri-id'], 'uid' => $uid, 'fields' => $fields, 'stored' => $stored]);
1292                 }
1293         }
1294
1295         /**
1296          * Distributes public items to the receivers
1297          *
1298          * @param integer $itemid      Item ID that should be added
1299          * @param string  $signed_text Original text (for Diaspora signatures), JSON encoded.
1300          * @throws \Exception
1301          */
1302         public static function distribute($itemid, $signed_text = '')
1303         {
1304                 $condition = ["`id` IN (SELECT `parent` FROM `post-user-view` WHERE `id` = ?)", $itemid];
1305                 $parent = Post::selectFirst(['owner-id'], $condition);
1306                 if (!DBA::isResult($parent)) {
1307                         Logger::warning('Item not found', ['condition' => $condition]);
1308                         return;
1309                 }
1310
1311                 // Only distribute public items from native networks
1312                 $condition = ['id' => $itemid, 'uid' => 0,
1313                         'network' => array_merge(Protocol::FEDERATED ,['']),
1314                         'visible' => true, 'deleted' => false, 'private' => [self::PUBLIC, self::UNLISTED]];
1315                 $item = Post::selectFirst(self::ITEM_FIELDLIST, $condition);
1316                 if (!DBA::isResult($item)) {
1317                         Logger::warning('Item not found', ['condition' => $condition]);
1318                         return;
1319                 }
1320
1321                 $origin = $item['origin'];
1322
1323                 $users = [];
1324
1325                 /// @todo add a field "pcid" in the contact table that referrs to the public contact id.
1326                 $owner = DBA::selectFirst('contact', ['url', 'nurl', 'alias'], ['id' => $parent['owner-id']]);
1327                 if (!DBA::isResult($owner)) {
1328                         return;
1329                 }
1330
1331                 $condition = ['nurl' => $owner['nurl'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
1332                 $contacts = DBA::select('contact', ['uid'], $condition);
1333                 while ($contact = DBA::fetch($contacts)) {
1334                         if ($contact['uid'] == 0) {
1335                                 continue;
1336                         }
1337
1338                         $users[$contact['uid']] = $contact['uid'];
1339                 }
1340                 DBA::close($contacts);
1341
1342                 $condition = ['alias' => $owner['url'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
1343                 $contacts = DBA::select('contact', ['uid'], $condition);
1344                 while ($contact = DBA::fetch($contacts)) {
1345                         if ($contact['uid'] == 0) {
1346                                 continue;
1347                         }
1348
1349                         $users[$contact['uid']] = $contact['uid'];
1350                 }
1351                 DBA::close($contacts);
1352
1353                 if (!empty($owner['alias'])) {
1354                         $condition = ['nurl' => Strings::normaliseLink($owner['alias']), 'rel' => [Contact::SHARING, Contact::FRIEND]];
1355                         $contacts = DBA::select('contact', ['uid'], $condition);
1356                         while ($contact = DBA::fetch($contacts)) {
1357                                 if ($contact['uid'] == 0) {
1358                                         continue;
1359                                 }
1360
1361                                 $users[$contact['uid']] = $contact['uid'];
1362                         }
1363                         DBA::close($contacts);
1364                 }
1365
1366                 $origin_uid = 0;
1367
1368                 if ($item['uri-id'] != $item['parent-uri-id']) {
1369                         $parents = Post::select(['uid', 'origin'], ["`uri-id` = ? AND `uid` != 0", $item['parent-uri-id']]);
1370                         while ($parent = Post::fetch($parents)) {
1371                                 $users[$parent['uid']] = $parent['uid'];
1372                                 if ($parent['origin'] && !$origin) {
1373                                         $origin_uid = $parent['uid'];
1374                                 }
1375                         }
1376                         DBA::close($parents);
1377                 }
1378
1379                 foreach ($users as $uid) {
1380                         if ($origin_uid == $uid) {
1381                                 $item['diaspora_signed_text'] = $signed_text;
1382                         }
1383                         self::storeForUser($item, $uid);
1384                 }
1385         }
1386
1387         /**
1388          * Store a public item defined by their URI-ID for the given users
1389          *
1390          * @param integer $uri_id     URI-ID of the given item
1391          * @param integer $uid        The user that will receive the item entry
1392          * @param array   $fields     Additional fields to be stored
1393          * @param integer $source_uid User id of the source post
1394          * @return integer stored item id
1395          */
1396         public static function storeForUserByUriId(int $uri_id, int $uid, array $fields = [], int $source_uid = 0)
1397         {
1398                 if ($uid == $source_uid) {
1399                         Logger::warning('target UID must not be be equal to the source UID', ['uri-id' => $uri_id, 'uid' => $uid]);
1400                         return 0;
1401                 }
1402
1403                 $item = Post::selectFirst(self::ITEM_FIELDLIST, ['uri-id' => $uri_id, 'uid' => $source_uid]);
1404                 if (!DBA::isResult($item)) {
1405                         Logger::warning('Item could not be fetched', ['uri-id' => $uri_id, 'uid' => $source_uid]);
1406                         return 0;
1407                 }
1408
1409                 if (($source_uid == 0) && (($item['private'] == self::PRIVATE) || !in_array($item['network'], Protocol::FEDERATED))) {
1410                         Logger::notice('Item is private or not from a federated network. It will not be stored for the user.', ['uri-id' => $uri_id, 'uid' => $uid, 'private' => $item['private'], 'network' => $item['network']]);
1411                         return 0;
1412                 }
1413
1414                 $item['post-reason'] = self::PR_STORED;
1415
1416                 $item = array_merge($item, $fields);
1417
1418                 $is_reshare = ($item['gravity'] == GRAVITY_ACTIVITY) && ($item['verb'] == Activity::ANNOUNCE);
1419
1420                 if ((($item['gravity'] == GRAVITY_PARENT) || $is_reshare) &&
1421                         DI::pConfig()->get($uid, 'system', 'accept_only_sharer') == self::COMPLETION_NONE &&
1422                         !Contact::isSharingByURL($item['author-link'], $uid) &&
1423                         !Contact::isSharingByURL($item['owner-link'], $uid)) {
1424                         Logger::info('Contact is not a follower, thread will not be stored', ['author' => $item['author-link'], 'uid' => $uid]);
1425                         return 0;
1426                 }
1427
1428                 if ((($item['gravity'] == GRAVITY_COMMENT) || $is_reshare) && !Post::exists(['uri-id' => $item['thr-parent-id'], 'uid' => $uid])) {
1429                         // Fetch the origin user for the post
1430                         $origin_uid = self::GetOriginUidForUriId($item['thr-parent-id'], $uid);
1431                         if (is_null($origin_uid)) {
1432                                 Logger::info('Origin item was not found', ['uid' => $uid, 'uri-id' => $item['thr-parent-id']]);
1433                                 return 0;
1434                         }
1435
1436                         $causer = $item['causer-id'] ?: $item['author-id'];
1437                         $result = self::storeForUserByUriId($item['thr-parent-id'], $uid, ['causer-id' => $causer, 'post-reason' => self::PR_FETCHED], $origin_uid);
1438                         Logger::info('Fetched thread parent', ['uri-id' => $item['thr-parent-id'], 'uid' => $uid, 'causer' => $causer, 'result' => $result]);
1439                 }
1440
1441                 $stored = self::storeForUser($item, $uid);
1442                 Logger::info('Item stored for user', ['uri-id' => $item['uri-id'], 'uid' => $uid, 'source-uid' => $source_uid, 'stored' => $stored]);
1443                 return $stored;
1444         }
1445
1446         /**
1447          * Returns the origin uid of a post if the given user is allowed to see it.
1448          *
1449          * @param int $uriid
1450          * @param int $uid
1451          * @return int
1452          */
1453         private static function GetOriginUidForUriId(int $uriid, int $uid)
1454         {
1455                 if (Post::exists(['uri-id' => $uriid, 'uid' => $uid])) {
1456                         return $uid;
1457                 }
1458
1459                 $post = Post::selectFirst(['uid', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'private'], ['uri-id' => $uriid, 'origin' => true]);
1460                 if (!empty($post)) {
1461                         if (in_array($post['private'], [Item::PUBLIC, Item::UNLISTED])) {
1462                                 return $post['uid'];
1463                         }
1464
1465                         $pcid = Contact::getPublicIdByUserId($uid);
1466                         if (empty($pcid)) {
1467                                 return null;
1468                         }
1469
1470                         foreach (Item::enumeratePermissions($post, true) as $receiver) {
1471                                 if ($receiver == $pcid) {
1472                                         return $post['uid'];
1473                                 }
1474                         }
1475
1476                         return null;
1477                 }
1478
1479                 if (Post::exists(['uri-id' => $uriid, 'uid' => 0])) {
1480                         return 0;
1481                 }
1482
1483                 // When the post belongs to a a forum then all forum users are allowed to access it
1484                 foreach (Tag::getByURIId($uriid, [Tag::MENTION, Tag::EXCLUSIVE_MENTION]) as $tag) {
1485                         if (DBA::exists('contact', ['uid' => $uid, 'nurl' => Strings::normaliseLink($tag['url']), 'contact-type' => Contact::TYPE_COMMUNITY])) {
1486                                 $target_uid = User::getIdForURL($tag['url']);
1487                                 if (!empty($target_uid)) {
1488                                         return $target_uid;
1489                                 }
1490                         }
1491                 }
1492
1493                 return null;
1494         }
1495
1496         /**
1497          * Store a public item array for the given users
1498          *
1499          * @param array   $item   The item entry that will be stored
1500          * @param integer $uid    The user that will receive the item entry
1501          * @return integer stored item id
1502          * @throws \Exception
1503          */
1504         private static function storeForUser(array $item, int $uid)
1505         {
1506                 if (Post::exists(['uri-id' => $item['uri-id'], 'uid' => $uid])) {
1507                         if (!empty($item['event-id'])) {
1508                                 $post = Post::selectFirst(['event-id'], ['uri-id' => $item['uri-id'], 'uid' => $uid]);
1509                                 if (!empty($post['event-id'])) {
1510                                         $event = DBA::selectFirst('event', ['edited', 'start', 'finish', 'summary', 'desc', 'location', 'nofinish', 'adjust'], ['id' => $item['event-id']]);
1511                                         if (!empty($event)) {
1512                                                 // We aren't using "Event::store" here, since we don't want to trigger any further action
1513                                                 $ret = DBA::update('event', $event, ['id' => $post['event-id']]);
1514                                                 Logger::info('Event updated', ['uid' => $uid, 'source-event' => $item['event-id'], 'target-event' => $post['event-id'], 'ret' => $ret]);
1515                                         }
1516                                 }
1517                         }
1518                         Logger::info('Item already exists', ['uri-id' => $item['uri-id'], 'uid' => $uid]);
1519                         return 0;
1520                 }
1521
1522                 // Data from the "post-user" table
1523                 unset($item['id']);
1524                 unset($item['mention']);
1525                 unset($item['starred']);
1526                 unset($item['unseen']);
1527                 unset($item['psid']);
1528                 unset($item['pinned']);
1529                 unset($item['ignored']);
1530                 unset($item['pubmail']);
1531                 unset($item['event-id']);
1532                 unset($item['hidden']);
1533                 unset($item['notification-type']);
1534                 unset($item['post-reason']);
1535
1536                 // Data from the "post-delivery-data" table
1537                 unset($item['postopts']);
1538                 unset($item['inform']);
1539
1540                 $item['uid'] = $uid;
1541                 $item['origin'] = 0;
1542                 $item['wall'] = 0;
1543
1544                 if ($item['gravity'] == GRAVITY_PARENT) {
1545                         $contact = Contact::getByURLForUser($item['owner-link'], $uid, false, ['id']);
1546                 } else {
1547                         $contact = Contact::getByURLForUser($item['author-link'], $uid, false, ['id']);
1548                 }
1549
1550                 if (!empty($contact['id'])) {
1551                         $item['contact-id'] = $contact['id'];
1552                 } else {
1553                         // Shouldn't happen at all
1554                         Logger::warning('contact-id could not be fetched', ['uid' => $uid, 'item' => $item]);
1555                         $self = DBA::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
1556                         if (!DBA::isResult($self)) {
1557                                 // Shouldn't happen even less
1558                                 Logger::warning('self contact could not be fetched', ['uid' => $uid, 'item' => $item]);
1559                                 return 0;
1560                         }
1561                         $item['contact-id'] = $self['id'];
1562                 }
1563
1564                 $notify = false;
1565                 if ($item['gravity'] == GRAVITY_PARENT) {
1566                         $contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
1567                         if (DBA::isResult($contact)) {
1568                                 $notify = self::isRemoteSelf($contact, $item);
1569                         }
1570                 }
1571
1572                 $distributed = self::insert($item, $notify);
1573
1574                 if (!$distributed) {
1575                         Logger::info("Distributed item wasn't stored", ['uri-id' => $item['uri-id'], 'user' => $uid]);
1576                 } else {
1577                         Logger::info('Distributed item was stored', ['uri-id' => $item['uri-id'], 'user' => $uid, 'stored' => $distributed]);
1578                 }
1579                 return $distributed;
1580         }
1581
1582         /**
1583          * Add a shadow entry for a given item id that is a thread starter
1584          *
1585          * We store every public item entry additionally with the user id "0".
1586          * This is used for the community page and for the search.
1587          * It is planned that in the future we will store public item entries only once.
1588          *
1589          * @param integer $itemid Item ID that should be added
1590          * @throws \Exception
1591          */
1592         private static function addShadow($itemid)
1593         {
1594                 $fields = ['uid', 'private', 'visible', 'deleted', 'network', 'uri-id'];
1595                 $condition = ['id' => $itemid, 'gravity' => GRAVITY_PARENT];
1596                 $item = Post::selectFirst($fields, $condition);
1597
1598                 if (!DBA::isResult($item)) {
1599                         return;
1600                 }
1601
1602                 // is it already a copy?
1603                 if (($itemid == 0) || ($item['uid'] == 0)) {
1604                         return;
1605                 }
1606
1607                 // Is it a visible public post?
1608                 if (!$item["visible"] || $item["deleted"]  || ($item["private"] == self::PRIVATE)) {
1609                         return;
1610                 }
1611
1612                 // is it an entry from a connector? Only add an entry for natively connected networks
1613                 if (!in_array($item["network"], array_merge(Protocol::FEDERATED ,['']))) {
1614                         return;
1615                 }
1616
1617                 if (Post::exists(['uri-id' => $item['uri-id'], 'uid' => 0])) {
1618                         return;
1619                 }
1620
1621                 $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
1622
1623                 if (DBA::isResult($item)) {
1624                         // Preparing public shadow (removing user specific data)
1625                         $item['uid'] = 0;
1626                         unset($item['id']);
1627                         unset($item['parent']);
1628                         unset($item['wall']);
1629                         unset($item['mention']);
1630                         unset($item['origin']);
1631                         unset($item['starred']);
1632                         unset($item['postopts']);
1633                         unset($item['inform']);
1634                         unset($item['post-reason']);
1635                         if ($item['uri-id'] == $item['parent-uri-id']) {
1636                                 $item['contact-id'] = $item['owner-id'];
1637                         } else {
1638                                 $item['contact-id'] = $item['author-id'];
1639                         }
1640
1641                         $public_shadow = self::insert($item);
1642
1643                         Logger::info('Stored public shadow', ['thread' => $itemid, 'id' => $public_shadow]);
1644                 }
1645         }
1646
1647         /**
1648          * Add a shadow entry for a given item id that is a comment
1649          *
1650          * This function does the same like the function above - but for comments
1651          *
1652          * @param integer $itemid Item ID that should be added
1653          * @throws \Exception
1654          */
1655         private static function addShadowPost($itemid)
1656         {
1657                 $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
1658                 if (!DBA::isResult($item)) {
1659                         return;
1660                 }
1661
1662                 // Is it a toplevel post?
1663                 if ($item['gravity'] == GRAVITY_PARENT) {
1664                         self::addShadow($itemid);
1665                         return;
1666                 }
1667
1668                 // Is this a shadow entry?
1669                 if ($item['uid'] == 0) {
1670                         return;
1671                 }
1672
1673                 // Is there a shadow parent?
1674                 if (!Post::exists(['uri-id' => $item['parent-uri-id'], 'uid' => 0])) {
1675                         return;
1676                 }
1677
1678                 // Is there already a shadow entry?
1679                 if (Post::exists(['uri-id' => $item['uri-id'], 'uid' => 0])) {
1680                         return;
1681                 }
1682
1683                 // Save "origin" and "parent" state
1684                 $origin = $item['origin'];
1685                 $parent = $item['parent'];
1686
1687                 // Preparing public shadow (removing user specific data)
1688                 $item['uid'] = 0;
1689                 unset($item['id']);
1690                 unset($item['parent']);
1691                 unset($item['wall']);
1692                 unset($item['mention']);
1693                 unset($item['origin']);
1694                 unset($item['starred']);
1695                 unset($item['postopts']);
1696                 unset($item['inform']);
1697                 unset($item['post-reason']);
1698                 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
1699
1700                 $public_shadow = self::insert($item);
1701
1702                 Logger::info('Stored public shadow', ['uri-id' => $item['uri-id'], 'id' => $public_shadow]);
1703
1704                 // If this was a comment to a Diaspora post we don't get our comment back.
1705                 // This means that we have to distribute the comment by ourselves.
1706                 if ($origin && Post::exists(['id' => $parent, 'network' => Protocol::DIASPORA])) {
1707                         self::distribute($public_shadow);
1708                 }
1709         }
1710
1711         /**
1712          * Adds a language specification in a "language" element of given $arr.
1713          * Expects "body" element to exist in $arr.
1714          *
1715          * @param array $item
1716          * @return string detected language
1717          * @throws \Text_LanguageDetect_Exception
1718          */
1719         private static function getLanguage(array $item)
1720         {
1721                 if (!empty($item['language'])) {
1722                         return $item['language'];
1723                 }
1724
1725                 if (!in_array($item['gravity'], [GRAVITY_PARENT, GRAVITY_COMMENT]) || empty($item['body'])) {
1726                         return '';
1727                 }
1728
1729                 // Convert attachments to links
1730                 $naked_body = BBCode::removeAttachment($item['body']);
1731                 if (empty($naked_body)) {
1732                         return '';
1733                 }
1734
1735                 // Remove links and pictures
1736                 $naked_body = BBCode::removeLinks($naked_body);
1737
1738                 // Convert the title and the body to plain text
1739                 $naked_body = trim($item['title'] . "\n" . BBCode::toPlaintext($naked_body));
1740
1741                 // Remove possibly remaining links
1742                 $naked_body = preg_replace(Strings::autoLinkRegEx(), '', $naked_body);
1743
1744                 if (empty($naked_body)) {
1745                         return '';
1746                 }
1747
1748                 $availableLanguages = DI::l10n()->getAvailableLanguages();
1749                 // See https://github.com/friendica/friendica/issues/10511
1750                 // Persian is manually added to language detection until a persian translation is provided for the interface, at
1751                 // which point it will be automatically available through `getAvailableLanguages()` and this should be removed.
1752                 $availableLanguages['fa'] = 'fa';
1753
1754                 $ld = new Language(array_keys($availableLanguages));
1755                 $languages = $ld->detect($naked_body)->limit(0, 3)->close();
1756                 if (is_array($languages)) {
1757                         return json_encode($languages);
1758                 }
1759
1760                 return '';
1761         }
1762
1763         public static function getLanguageMessage(array $item)
1764         {
1765                 $iso639 = new \Matriphe\ISO639\ISO639;
1766
1767                 $used_languages = '';
1768                 foreach (json_decode($item['language'], true) as $language => $reliability) {
1769                         $used_languages .= $iso639->languageByCode1($language) . ' (' . $language . "): " . number_format($reliability, 5) . '\n';
1770                 }
1771                 $used_languages = DI::l10n()->t('Detected languages in this post:\n%s', $used_languages);
1772                 return $used_languages;
1773         }
1774
1775         /**
1776          * Creates an unique guid out of a given uri.
1777          * This function is used for messages outside the fediverse (Connector posts, feeds, Mails, ...)
1778          * Posts that are created on this system are using System::createUUID.
1779          * Received ActivityPub posts are using Processor::getGUIDByURL.
1780          *
1781          * @param string $uri uri of an item entry
1782          * @param string $host hostname for the GUID prefix
1783          * @return string unique guid
1784          */
1785         public static function guidFromUri($uri, $host)
1786         {
1787                 // Our regular guid routine is using this kind of prefix as well
1788                 // We have to avoid that different routines could accidentally create the same value
1789                 $parsed = parse_url($uri);
1790
1791                 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
1792                 unset($parsed["scheme"]);
1793
1794                 // Glue it together to be able to make a hash from it
1795                 $host_id = implode("/", $parsed);
1796
1797                 // Use a mixture of several hashes to provide some GUID like experience
1798                 return hash("crc32", $host) . '-'. hash('joaat', $host_id) . '-'. hash('fnv164', $host_id);
1799         }
1800
1801         /**
1802          * generate an unique URI
1803          *
1804          * @param integer $uid  User id
1805          * @param string  $guid An existing GUID (Otherwise it will be generated)
1806          *
1807          * @return string
1808          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1809          */
1810         public static function newURI($uid, $guid = "")
1811         {
1812                 if ($guid == "") {
1813                         $guid = System::createUUID();
1814                 }
1815
1816                 return DI::baseUrl()->get() . '/objects/' . $guid;
1817         }
1818
1819         /**
1820          * Set "success_update" and "last-item" to the date of the last time we heard from this contact
1821          *
1822          * This can be used to filter for inactive contacts.
1823          * Only do this for public postings to avoid privacy problems, since poco data is public.
1824          * Don't set this value if it isn't from the owner (could be an author that we don't know)
1825          *
1826          * @param array $arr Contains the just posted item record
1827          * @throws \Exception
1828          */
1829         private static function updateContact($arr)
1830         {
1831                 // Unarchive the author
1832                 $contact = DBA::selectFirst('contact', [], ['id' => $arr["author-id"]]);
1833                 if (DBA::isResult($contact)) {
1834                         Contact::unmarkForArchival($contact);
1835                 }
1836
1837                 // Unarchive the contact if it's not our own contact
1838                 $contact = DBA::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
1839                 if (DBA::isResult($contact)) {
1840                         Contact::unmarkForArchival($contact);
1841                 }
1842
1843                 /// @todo On private posts we could obfuscate the date
1844                 $update = ($arr['private'] != self::PRIVATE) || in_array($arr['network'], Protocol::FEDERATED);
1845
1846                 // Is it a forum? Then we don't care about the rules from above
1847                 if (!$update && in_array($arr["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN]) && ($arr["parent-uri-id"] === $arr["uri-id"])) {
1848                         if (DBA::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
1849                                 $update = true;
1850                         }
1851                 }
1852
1853                 if ($update) {
1854                         // The "self" contact id is used (for example in the connectors) when the contact is unknown
1855                         // So we have to ensure to only update the last item when it had been our own post,
1856                         // or it had been done by a "regular" contact.
1857                         if (!empty($arr['wall'])) {
1858                                 $condition = ['id' => $arr['contact-id']];
1859                         } else {
1860                                 $condition = ['id' => $arr['contact-id'], 'self' => false];
1861                         }
1862                         Contact::update(['failed' => false, 'success_update' => $arr['received'], 'last-item' => $arr['received']], $condition);
1863                 }
1864                 // Now do the same for the system wide contacts with uid=0
1865                 if ($arr['private'] != self::PRIVATE) {
1866                         Contact::update(['failed' => false, 'success_update' => $arr['received'], 'last-item' => $arr['received']],
1867                                 ['id' => $arr['owner-id']]);
1868
1869                         if ($arr['owner-id'] != $arr['author-id']) {
1870                                 Contact::update(['failed' => false, 'success_update' => $arr['received'], 'last-item' => $arr['received']],
1871                                         ['id' => $arr['author-id']]);
1872                         }
1873                 }
1874         }
1875
1876         public static function setHashtags($body)
1877         {
1878                 $body = BBCode::performWithEscapedTags($body, ['noparse', 'pre', 'code', 'img'], function ($body) {
1879                         $tags = BBCode::getTags($body);
1880
1881                         // No hashtags?
1882                         if (!count($tags)) {
1883                                 return $body;
1884                         }
1885
1886                         // This sorting is important when there are hashtags that are part of other hashtags
1887                         // Otherwise there could be problems with hashtags like #test and #test2
1888                         // Because of this we are sorting from the longest to the shortest tag.
1889                         usort($tags, function ($a, $b) {
1890                                 return strlen($b) <=> strlen($a);
1891                         });
1892
1893                         $URLSearchString = "^\[\]";
1894
1895                         // All hashtags should point to the home server if "local_tags" is activated
1896                         if (DI::config()->get('system', 'local_tags')) {
1897                                 $body = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1898                                         "#[url=" . DI::baseUrl() . "/search?tag=$2]$2[/url]", $body);
1899                         }
1900
1901                         // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
1902                         $body = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1903                                 function ($match) {
1904                                         return ("[url=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/url]");
1905                                 }, $body);
1906
1907                         $body = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
1908                                 function ($match) {
1909                                         return ("[bookmark=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/bookmark]");
1910                                 }, $body);
1911
1912                         $body = preg_replace_callback("/\[attachment (.*?)\](.*?)\[\/attachment\]/ism",
1913                                 function ($match) {
1914                                         return ("[attachment " . str_replace("#", "&num;", $match[1]) . "]" . $match[2] . "[/attachment]");
1915                                 }, $body);
1916
1917                         // Repair recursive urls
1918                         $body = preg_replace("/&num;\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1919                                 "&num;$2", $body);
1920
1921                         foreach ($tags as $tag) {
1922                                 if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || strlen($tag) < 2 || $tag[1] == '#') {
1923                                         continue;
1924                                 }
1925
1926                                 $basetag = str_replace('_', ' ', substr($tag, 1));
1927                                 $newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
1928
1929                                 $body = str_replace($tag, $newtag, $body);
1930                         }
1931
1932                         // Convert back the masked hashtags
1933                         $body = str_replace("&num;", "#", $body);
1934
1935                         return $body;
1936                 });
1937
1938                 return $body;
1939         }
1940
1941         /**
1942          * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
1943          *
1944          * @param int $uid
1945          * @param int $item_id
1946          * @return boolean true if item was deleted, else false
1947          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1948          * @throws \ImagickException
1949          */
1950         private static function tagDeliver($uid, $item_id)
1951         {
1952                 $mention = false;
1953
1954                 $owner = User::getOwnerDataById($uid);
1955                 if (!DBA::isResult($owner)) {
1956                         Logger::warning('User not found, quitting here.', ['uid' => $uid]);
1957                         return false;
1958                 }
1959
1960                 if ($owner['contact-type'] != User::ACCOUNT_TYPE_COMMUNITY) {
1961                         Logger::debug('Owner is no community, quitting here.', ['uid' => $uid, 'id' => $item_id]);
1962                         return false;
1963                 }
1964
1965                 $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT], 'origin' => false]);
1966                 if (!DBA::isResult($item)) {
1967                         Logger::debug('Post is an activity or origin or not found at all, quitting here.', ['id' => $item_id]);
1968                         return false;
1969                 }
1970
1971                 if ($item['gravity'] == GRAVITY_PARENT) {
1972                         $tags = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
1973                         foreach ($tags as $tag) {
1974                                 if (Strings::compareLink($owner['url'], $tag['url'])) {
1975                                         $mention = true;
1976                                         Logger::info('Mention found in tag.', ['url' => $tag['url'], 'uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
1977                                 }
1978                         }
1979
1980                         if (!$mention) {
1981                                 Logger::info('Top-level post without mention is deleted.', ['uri' => $item['uri'], $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
1982                                 Post\User::delete(['uri-id' => $item['uri-id'], 'uid' => $item['uid']]);
1983                                 return true;
1984                         }
1985
1986                         $arr = ['item' => $item, 'user' => $owner];
1987
1988                         Hook::callAll('tagged', $arr);
1989                 } else {
1990                         $tags = Tag::getByURIId($item['parent-uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
1991                         foreach ($tags as $tag) {
1992                                 if (Strings::compareLink($owner['url'], $tag['url'])) {
1993                                         $mention = true;
1994                                         Logger::info('Mention found in parent tag.', ['url' => $tag['url'], 'uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
1995                                 }
1996                         }
1997
1998                         if (!$mention) {
1999                                 Logger::debug('No mentions found in parent, quitting here.', ['id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
2000                                 return false;
2001                         }
2002                 }
2003
2004                 Logger::info('Community post will be distributed', ['uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
2005
2006                 if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
2007                         $allow_cid = '';
2008                         $allow_gid = '<' . Group::FOLLOWERS . '>';
2009                         $deny_cid  = '';
2010                         $deny_gid  = '';
2011                         self::performActivity($item['id'], 'announce', $uid, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
2012                 } else {
2013                         self::performActivity($item['id'], 'announce', $uid);
2014                 }
2015
2016                 Logger::info('Community post had been distributed', ['uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
2017                 return false;
2018         }
2019
2020         /**
2021          * Automatically reshare the item if the "remote_self" option is selected
2022          *
2023          * @param array $item
2024          * @return void
2025          */
2026         private static function autoReshare(array $item)
2027         {
2028                 if ($item['gravity'] != GRAVITY_PARENT) {
2029                         return;
2030                 }
2031
2032                 if (!DBA::exists('contact', ['id' => $item['contact-id'], 'remote_self' => Contact::MIRROR_NATIVE_RESHARE])) {
2033                         return;
2034                 }
2035
2036                 if (!in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN])) {
2037                         return;
2038                 }
2039
2040                 Logger::info('Automatically reshare item', ['uid' => $item['uid'], 'id' => $item['id'], 'guid' => $item['guid'], 'uri-id' => $item['uri-id']]);
2041
2042                 self::performActivity($item['id'], 'announce', $item['uid']);
2043         }
2044
2045         public static function isRemoteSelf($contact, &$datarray)
2046         {
2047                 if (!$contact['remote_self']) {
2048                         return false;
2049                 }
2050
2051                 // Prevent the forwarding of posts that are forwarded
2052                 if (!empty($datarray["extid"]) && ($datarray["extid"] == Protocol::DFRN)) {
2053                         Logger::info('Already forwarded');
2054                         return false;
2055                 }
2056
2057                 // Prevent to forward already forwarded posts
2058                 if ($datarray["app"] == DI::baseUrl()->getHostname()) {
2059                         Logger::info('Already forwarded (second test)');
2060                         return false;
2061                 }
2062
2063                 // Only forward posts
2064                 if ($datarray["verb"] != Activity::POST) {
2065                         Logger::info('No post');
2066                         return false;
2067                 }
2068
2069                 if (($contact['network'] != Protocol::FEED) && ($datarray['private'] == self::PRIVATE)) {
2070                         Logger::info('Not public');
2071                         return false;
2072                 }
2073
2074                 $datarray2 = $datarray;
2075                 Logger::info('remote-self start', ['contact' => $contact['url'], 'remote_self'=> $contact['remote_self'], 'item' => $datarray]);
2076                 if ($contact['remote_self'] == Contact::MIRROR_OWN_POST) {
2077                         $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
2078                                         ['uid' => $contact['uid'], 'self' => true]);
2079                         if (DBA::isResult($self)) {
2080                                 $datarray['contact-id'] = $self["id"];
2081
2082                                 $datarray['owner-name'] = $self["name"];
2083                                 $datarray['owner-link'] = $self["url"];
2084                                 $datarray['owner-avatar'] = $self["thumb"];
2085
2086                                 $datarray['author-name']   = $datarray['owner-name'];
2087                                 $datarray['author-link']   = $datarray['owner-link'];
2088                                 $datarray['author-avatar'] = $datarray['owner-avatar'];
2089
2090                                 unset($datarray['edited']);
2091
2092                                 unset($datarray['network']);
2093                                 unset($datarray['owner-id']);
2094                                 unset($datarray['author-id']);
2095                         }
2096
2097                         if ($contact['network'] != Protocol::FEED) {
2098                                 $old_uri_id = $datarray["uri-id"] ?? 0;
2099                                 $datarray["guid"] = System::createUUID();
2100                                 unset($datarray["plink"]);
2101                                 $datarray["uri"] = self::newURI($contact['uid'], $datarray["guid"]);
2102                                 $datarray["uri-id"] = ItemURI::getIdByURI($datarray["uri"]);
2103                                 $datarray["extid"] = Protocol::DFRN;
2104                                 $urlpart = parse_url($datarray2['author-link']);
2105                                 $datarray["app"] = $urlpart["host"];
2106                                 if (!empty($old_uri_id)) {
2107                                         Post\Media::copy($old_uri_id, $datarray["uri-id"]);
2108                                 }
2109
2110                                 unset($datarray["parent-uri"]);
2111                                 unset($datarray["thr-parent"]);
2112                         } else {
2113                                 $datarray['private'] = self::PUBLIC;
2114                         }
2115                 }
2116
2117                 if ($contact['network'] != Protocol::FEED) {
2118                         // Store the original post
2119                         $result = self::insert($datarray2);
2120                         Logger::info('remote-self post original item', ['contact' => $contact['url'], 'result'=> $result, 'item' => $datarray2]);
2121                 } else {
2122                         $datarray["app"] = "Feed";
2123                         $result = true;
2124                 }
2125
2126                 return (bool)$result;
2127         }
2128
2129         /**
2130          *
2131          * @param string $s
2132          * @param int    $uid
2133          * @param array  $item
2134          * @param int    $cid
2135          * @return string
2136          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2137          * @throws \ImagickException
2138          */
2139         public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
2140         {
2141                 if (DI::config()->get('system', 'disable_embedded')) {
2142                         return $s;
2143                 }
2144
2145                 Logger::info('check for photos');
2146                 $site = substr(DI::baseUrl(), strpos(DI::baseUrl(), '://'));
2147
2148                 $orig_body = $s;
2149                 $new_body = '';
2150
2151                 $img_start = strpos($orig_body, '[img');
2152                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2153                 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2154
2155                 while (($img_st_close !== false) && ($img_len !== false)) {
2156                         $img_st_close++; // make it point to AFTER the closing bracket
2157                         $image = substr($orig_body, $img_start + $img_st_close, $img_len);
2158
2159                         Logger::info('found photo', ['image' => $image]);
2160
2161                         if (stristr($image, $site . '/photo/')) {
2162                                 // Only embed locally hosted photos
2163                                 $replace = false;
2164                                 $i = basename($image);
2165                                 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
2166                                 $x = strpos($i, '-');
2167
2168                                 if ($x) {
2169                                         $res = substr($i, $x + 1);
2170                                         $i = substr($i, 0, $x);
2171                                         $photo = Photo::getPhotoForUser($uid, $i, $res);
2172                                         if (DBA::isResult($photo)) {
2173                                                 /*
2174                                                  * Check to see if we should replace this photo link with an embedded image
2175                                                  * 1. No need to do so if the photo is public
2176                                                  * 2. If there's a contact-id provided, see if they're in the access list
2177                                                  *    for the photo. If so, embed it.
2178                                                  * 3. Otherwise, if we have an item, see if the item permissions match the photo
2179                                                  *    permissions, regardless of order but first check to see if they're an exact
2180                                                  *    match to save some processing overhead.
2181                                                  */
2182                                                 if (self::hasPermissions($photo)) {
2183                                                         if ($cid) {
2184                                                                 $recips = self::enumeratePermissions($photo);
2185                                                                 if (in_array($cid, $recips)) {
2186                                                                         $replace = true;
2187                                                                 }
2188                                                         } elseif ($item) {
2189                                                                 if (self::samePermissions($uid, $item, $photo)) {
2190                                                                         $replace = true;
2191                                                                 }
2192                                                         }
2193                                                 }
2194                                                 if ($replace) {
2195                                                         $photo_img = Photo::getImageForPhoto($photo);
2196                                                         // If a custom width and height were specified, apply before embedding
2197                                                         if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
2198                                                                 Logger::info('scaling photo');
2199
2200                                                                 $width = intval($match[1]);
2201                                                                 $height = intval($match[2]);
2202
2203                                                                 $photo_img->scaleDown(max($width, $height));
2204                                                         }
2205
2206                                                         $data = $photo_img->asString();
2207                                                         $type = $photo_img->getType();
2208
2209                                                         Logger::info('replacing photo');
2210                                                         $image = 'data:' . $type . ';base64,' . base64_encode($data);
2211                                                         Logger::debug('replaced', ['image' => $image]);
2212                                                 }
2213                                         }
2214                                 }
2215                         }
2216
2217                         $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
2218                         $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
2219                         if ($orig_body === false) {
2220                                 $orig_body = '';
2221                         }
2222
2223                         $img_start = strpos($orig_body, '[img');
2224                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2225                         $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2226                 }
2227
2228                 $new_body = $new_body . $orig_body;
2229
2230                 return $new_body;
2231         }
2232
2233         private static function hasPermissions($obj)
2234         {
2235                 return !empty($obj['allow_cid']) || !empty($obj['allow_gid']) ||
2236                         !empty($obj['deny_cid']) || !empty($obj['deny_gid']);
2237         }
2238
2239         private static function samePermissions($uid, $obj1, $obj2)
2240         {
2241                 // first part is easy. Check that these are exactly the same.
2242                 if (($obj1['allow_cid'] == $obj2['allow_cid'])
2243                         && ($obj1['allow_gid'] == $obj2['allow_gid'])
2244                         && ($obj1['deny_cid'] == $obj2['deny_cid'])
2245                         && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
2246                         return true;
2247                 }
2248
2249                 // This is harder. Parse all the permissions and compare the resulting set.
2250                 $recipients1 = self::enumeratePermissions($obj1);
2251                 $recipients2 = self::enumeratePermissions($obj2);
2252                 sort($recipients1);
2253                 sort($recipients2);
2254
2255                 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
2256                 return ($recipients1 == $recipients2);
2257         }
2258
2259         /**
2260          * Returns an array of contact-ids that are allowed to see this object
2261          *
2262          * @param array $obj        Item array with at least uid, allow_cid, allow_gid, deny_cid and deny_gid
2263          * @param bool  $check_dead Prunes unavailable contacts from the result
2264          * @return array
2265          * @throws \Exception
2266          */
2267         public static function enumeratePermissions(array $obj, bool $check_dead = false)
2268         {
2269                 $aclFormater = DI::aclFormatter();
2270
2271                 $allow_people = $aclFormater->expand($obj['allow_cid']);
2272                 $allow_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['allow_gid']), $check_dead);
2273                 $deny_people  = $aclFormater->expand($obj['deny_cid']);
2274                 $deny_groups  = Group::expand($obj['uid'], $aclFormater->expand($obj['deny_gid']), $check_dead);
2275                 $recipients   = array_unique(array_merge($allow_people, $allow_groups));
2276                 $deny         = array_unique(array_merge($deny_people, $deny_groups));
2277                 $recipients   = array_diff($recipients, $deny);
2278                 return $recipients;
2279         }
2280
2281         public static function expire(int $uid, int $days, string $network = "", bool $force = false)
2282         {
2283                 if (!$uid || ($days < 1)) {
2284                         return;
2285                 }
2286
2287                 $condition = ["`uid` = ? AND NOT `deleted` AND `gravity` = ?",
2288                         $uid, GRAVITY_PARENT];
2289
2290                 /*
2291                  * $expire_network_only = save your own wall posts
2292                  * and just expire conversations started by others
2293                  */
2294                 $expire_network_only = DI::pConfig()->get($uid, 'expire', 'network_only', false);
2295
2296                 if ($expire_network_only) {
2297                         $condition[0] .= " AND NOT `wall`";
2298                 }
2299
2300                 if ($network != "") {
2301                         $condition[0] .= " AND `network` = ?";
2302                         $condition[] = $network;
2303                 }
2304
2305                 $condition[0] .= " AND `received` < ?";
2306                 $condition[] = DateTimeFormat::utc('now - ' . $days . ' day');
2307
2308                 $items = Post::select(['resource-id', 'starred', 'id', 'post-type', 'uid', 'uri-id'], $condition);
2309
2310                 if (!DBA::isResult($items)) {
2311                         return;
2312                 }
2313
2314                 $expire_items = DI::pConfig()->get($uid, 'expire', 'items', true);
2315
2316                 // Forcing expiring of items - but not notes and marked items
2317                 if ($force) {
2318                         $expire_items = true;
2319                 }
2320
2321                 $expire_notes = DI::pConfig()->get($uid, 'expire', 'notes', true);
2322                 $expire_starred = DI::pConfig()->get($uid, 'expire', 'starred', true);
2323                 $expire_photos = DI::pConfig()->get($uid, 'expire', 'photos', false);
2324
2325                 $expired = 0;
2326
2327                 $priority = DI::config()->get('system', 'expire-notify-priority');
2328
2329                 while ($item = Post::fetch($items)) {
2330                         // don't expire filed items
2331                         if (DBA::exists('post-category', ['uri-id' => $item['uri-id'], 'uid' => $item['uid'], 'type' => Post\Category::FILE])) {
2332                                 continue;
2333                         }
2334
2335                         // Only expire posts, not photos and photo comments
2336
2337                         if (!$expire_photos && !empty($item['resource-id'])) {
2338                                 continue;
2339                         } elseif (!$expire_starred && intval($item['starred'])) {
2340                                 continue;
2341                         } elseif (!$expire_notes && ($item['post-type'] == self::PT_PERSONAL_NOTE)) {
2342                                 continue;
2343                         } elseif (!$expire_items && ($item['post-type'] != self::PT_PERSONAL_NOTE)) {
2344                                 continue;
2345                         }
2346
2347                         self::markForDeletionById($item['id'], $priority);
2348
2349                         ++$expired;
2350                 }
2351                 DBA::close($items);
2352                 Logger::notice('User ' . $uid . ": expired $expired items; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2353         }
2354
2355         public static function firstPostDate($uid, $wall = false)
2356         {
2357                 $user = User::getById($uid, ['register_date']);
2358                 if (empty($user)) {
2359                         return false;
2360                 }
2361
2362                 $condition = ["`uid` = ? AND `wall` = ? AND NOT `deleted` AND `visible` AND `received` >= ?",
2363                         $uid, $wall, $user['register_date']];
2364                 $params = ['order' => ['received' => false]];
2365                 $thread = Post::selectFirstThread(['received'], $condition, $params);
2366                 if (DBA::isResult($thread)) {
2367                         $postdate = substr(DateTimeFormat::local($thread['received']), 0, 10);
2368                         return $postdate;
2369                 }
2370                 return false;
2371         }
2372
2373         /**
2374          * add/remove activity to an item
2375          *
2376          * Toggle activities as like,dislike,attend of an item
2377          *
2378          * @param int    $item_id
2379          * @param string $verb
2380          *            Activity verb. One of
2381          *            like, unlike, dislike, undislike, attendyes, unattendyes,
2382          *            attendno, unattendno, attendmaybe, unattendmaybe,
2383          *            announce, unannouce
2384          * @param int    $uid
2385          * @param string $allow_cid
2386          * @param string $allow_gid
2387          * @param string $deny_cid
2388          * @param string $deny_gid
2389          * @return bool
2390          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2391          * @throws \ImagickException
2392          * @hook  'post_local_end'
2393          *            array $arr
2394          *            'post_id' => ID of posted item
2395          */
2396         public static function performActivity(int $item_id, string $verb, int $uid, string $allow_cid = null, string $allow_gid = null, string $deny_cid = null, string $deny_gid = null)
2397         {
2398                 if (empty($uid)) {
2399                         return false;
2400                 }
2401
2402                 Logger::notice('Start create activity', ['verb' => $verb, 'item' => $item_id, 'user' => $uid]);
2403
2404                 $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
2405                 if (!DBA::isResult($item)) {
2406                         Logger::notice('like: unknown item', ['id' => $item_id]);
2407                         return false;
2408                 }
2409
2410                 $uri_id = $item['uri-id'];
2411
2412                 if (!in_array($item['uid'], [0, $uid])) {
2413                         return false;
2414                 }
2415
2416                 if (!Post::exists(['uri-id' => $item['parent-uri-id'], 'uid' => $uid])) {
2417                         $stored = self::storeForUserByUriId($item['parent-uri-id'], $uid);
2418                         if (($item['parent-uri-id'] == $item['uri-id']) && !empty($stored)) {
2419                                 $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $stored]);
2420                                 if (!DBA::isResult($item)) {
2421                                         Logger::info('Could not fetch just created item - should not happen', ['stored' => $stored, 'uid' => $uid, 'uri-id' => $uri_id]);
2422                                         return false;
2423                                 }
2424                         }
2425                 }
2426
2427                 // Retrieves the local post owner
2428                 $owner = User::getOwnerDataById($uid);
2429                 if (empty($owner)) {
2430                         Logger::info('Empty owner for user', ['uid' => $uid]);
2431                         return false;
2432                 }
2433
2434                 // Retrieve the current logged in user's public contact
2435                 $author_id = Contact::getIdForURL($owner['url']);
2436                 if (empty($author_id)) {
2437                         Logger::info('Empty public contact');
2438                         return false;
2439                 }
2440
2441                 $activity = null;
2442                 switch ($verb) {
2443                         case 'like':
2444                         case 'unlike':
2445                                 $activity = Activity::LIKE;
2446                                 break;
2447                         case 'dislike':
2448                         case 'undislike':
2449                                 $activity = Activity::DISLIKE;
2450                                 break;
2451                         case 'attendyes':
2452                         case 'unattendyes':
2453                                 $activity = Activity::ATTEND;
2454                                 break;
2455                         case 'attendno':
2456                         case 'unattendno':
2457                                 $activity = Activity::ATTENDNO;
2458                                 break;
2459                         case 'attendmaybe':
2460                         case 'unattendmaybe':
2461                                 $activity = Activity::ATTENDMAYBE;
2462                                 break;
2463                         case 'follow':
2464                         case 'unfollow':
2465                                 $activity = Activity::FOLLOW;
2466                                 break;
2467                         case 'announce':
2468                         case 'unannounce':
2469                                 $activity = Activity::ANNOUNCE;
2470                                 break;
2471                         default:
2472                                 Logger::notice('unknown verb', ['verb' => $verb, 'item' => $item_id]);
2473                                 return false;
2474                 }
2475
2476                 $mode = Strings::startsWith($verb, 'un') ? 'delete' : 'create';
2477
2478                 // Enable activity toggling instead of on/off
2479                 $event_verb_flag = $activity === Activity::ATTEND || $activity === Activity::ATTENDNO || $activity === Activity::ATTENDMAYBE;
2480
2481                 // Look for an existing verb row
2482                 // Event participation activities are mutually exclusive, only one of them can exist at all times.
2483                 if ($event_verb_flag) {
2484                         $verbs = [Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE];
2485
2486                         // Translate to the index based activity index
2487                         $vids = [];
2488                         foreach ($verbs as $verb) {
2489                                 $vids[] = Verb::getID($verb);
2490                         }
2491                 } else {
2492                         $vids = Verb::getID($activity);
2493                 }
2494
2495                 $condition = ['vid' => $vids, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY,
2496                         'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent-id' => $uri_id];
2497                 $like_item = Post::selectFirst(['id', 'guid', 'verb'], $condition);
2498
2499                 if (DBA::isResult($like_item)) {
2500                         /**
2501                          * Truth table for existing activities
2502                          *
2503                          * |          Inputs            ||      Outputs      |
2504                          * |----------------------------||-------------------|
2505                          * |  Mode  | Event | Same verb || Delete? | Return? |
2506                          * |--------|-------|-----------||---------|---------|
2507                          * | create |  Yes  |    Yes    ||   No    |   Yes   |
2508                          * | create |  Yes  |    No     ||   Yes   |   No    |
2509                          * | create |  No   |    Yes    ||   No    |   Yes   |
2510                          * | create |  No   |    No     ||        N/A†       |
2511                          * | delete |  Yes  |    Yes    ||   Yes   |   N/A‡  |
2512                          * | delete |  Yes  |    No     ||   No    |   N/A‡  |
2513                          * | delete |  No   |    Yes    ||   Yes   |   N/A‡  |
2514                          * | delete |  No   |    No     ||        N/A†       |
2515                          * |--------|-------|-----------||---------|---------|
2516                          * |   A    |   B   |     C     || A xor C | !B or C |
2517                          *
2518                          * â€  Can't happen: It's impossible to find an existing non-event activity without
2519                          *                 the same verb because we are only looking for this single verb.
2520                          *
2521                          * â€¡ The "mode = delete" is returning early whether an existing activity was found or not.
2522                          */
2523                         if ($mode == 'create' xor $like_item['verb'] == $activity) {
2524                                 self::markForDeletionById($like_item['id']);
2525                         }
2526
2527                         if (!$event_verb_flag || $like_item['verb'] == $activity) {
2528                                 return true;
2529                         }
2530                 }
2531
2532                 // No need to go further if we aren't creating anything
2533                 if ($mode == 'delete') {
2534                         return true;
2535                 }
2536
2537                 $objtype = $item['resource-id'] ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE;
2538
2539                 $new_item = [
2540                         'guid'          => System::createUUID(),
2541                         'uri'           => self::newURI($item['uid']),
2542                         'uid'           => $item['uid'],
2543                         'contact-id'    => $owner['id'],
2544                         'wall'          => $item['wall'],
2545                         'origin'        => 1,
2546                         'network'       => Protocol::DFRN,
2547                         'protocol'      => Conversation::PARCEL_DIRECT,
2548                         'direction'     => Conversation::PUSH,
2549                         'gravity'       => GRAVITY_ACTIVITY,
2550                         'parent'        => $item['id'],
2551                         'thr-parent'    => $item['uri'],
2552                         'owner-id'      => $author_id,
2553                         'author-id'     => $author_id,
2554                         'body'          => $activity,
2555                         'verb'          => $activity,
2556                         'object-type'   => $objtype,
2557                         'allow_cid'     => $allow_cid ?? $item['allow_cid'],
2558                         'allow_gid'     => $allow_gid ?? $item['allow_gid'],
2559                         'deny_cid'      => $deny_cid ?? $item['deny_cid'],
2560                         'deny_gid'      => $deny_gid ?? $item['deny_gid'],
2561                         'visible'       => 1,
2562                         'unseen'        => 1,
2563                 ];
2564
2565                 $signed = Diaspora::createLikeSignature($uid, $new_item);
2566                 if (!empty($signed)) {
2567                         $new_item['diaspora_signed_text'] = json_encode($signed);
2568                 }
2569
2570                 $new_item_id = self::insert($new_item);
2571
2572                 // If the parent item isn't visible then set it to visible
2573                 if (!$item['visible']) {
2574                         self::update(['visible' => true], ['id' => $item['id']]);
2575                 }
2576
2577                 $new_item['id'] = $new_item_id;
2578
2579                 Hook::callAll('post_local_end', $new_item);
2580
2581                 return true;
2582         }
2583
2584         /**
2585          * Fetch the SQL condition for the given user id
2586          *
2587          * @param integer $owner_id User ID for which the permissions should be fetched
2588          * @return array condition
2589          */
2590         public static function getPermissionsConditionArrayByUserId(int $owner_id)
2591         {
2592                 $local_user = local_user();
2593                 $remote_user = Session::getRemoteContactID($owner_id);
2594
2595                 // default permissions - anonymous user
2596                 $condition = ["`private` != ?", self::PRIVATE];
2597
2598                 if ($local_user && ($local_user == $owner_id)) {
2599                         // Profile owner - everything is visible
2600                         $condition = [];
2601                 } elseif ($remote_user) {
2602                          // Authenticated visitor - fetch the matching permissionsets
2603                         $permissionSets = DI::permissionSet()->selectByContactId($remote_user, $owner_id);
2604                         if (!empty($set)) {
2605                                 $condition = ["(`private` != ? OR (`private` = ? AND `wall`
2606                                         AND `psid` IN (" . implode(', ', array_fill(0, count($set), '?')) . ")))",
2607                                         self::PRIVATE, self::PRIVATE];
2608                                 $condition = array_merge($condition, $permissionSets->column('id'));
2609                         }
2610                 }
2611
2612                 return $condition;
2613         }
2614
2615         /**
2616          * Get a permission SQL string for the given user
2617          *
2618          * @param int $owner_id
2619          * @param string $table
2620          * @return string
2621          */
2622         public static function getPermissionsSQLByUserId(int $owner_id, string $table = '')
2623         {
2624                 $local_user = local_user();
2625                 $remote_user = Session::getRemoteContactID($owner_id);
2626
2627                 if (!empty($table)) {
2628                         $table = DBA::quoteIdentifier($table) . '.';
2629                 }
2630
2631                 /*
2632                  * Construct permissions
2633                  *
2634                  * default permissions - anonymous user
2635                  */
2636                 $sql = sprintf(" AND " . $table . "`private` != %d", self::PRIVATE);
2637
2638                 // Profile owner - everything is visible
2639                 if ($local_user && ($local_user == $owner_id)) {
2640                         $sql = '';
2641                 } elseif ($remote_user) {
2642                         /*
2643                          * Authenticated visitor. Unless pre-verified,
2644                          * check that the contact belongs to this $owner_id
2645                          * and load the groups the visitor belongs to.
2646                          * If pre-verified, the caller is expected to have already
2647                          * done this and passed the groups into this function.
2648                          */
2649                         $permissionSets = DI::permissionSet()->selectByContactId($remote_user, $owner_id);
2650
2651                         if (!empty($set)) {
2652                                 $sql_set = sprintf(" OR (" . $table . "`private` = %d AND " . $table . "`wall` AND " . $table . "`psid` IN (", self::PRIVATE) . implode(',', $permissionSets->column('id')) . "))";
2653                         } else {
2654                                 $sql_set = '';
2655                         }
2656
2657                         $sql = sprintf(" AND (" . $table . "`private` != %d", self::PRIVATE) . $sql_set . ")";
2658                 }
2659
2660                 return $sql;
2661         }
2662
2663         /**
2664          * get translated item type
2665          *
2666          * @param array                $item
2667          * @param \Friendica\Core\L10n $l10n
2668          * @return string
2669          */
2670         public static function postType(array $item, \Friendica\Core\L10n $l10n)
2671         {
2672                 if (!empty($item['event-id'])) {
2673                         return $l10n->t('event');
2674                 } elseif (!empty($item['resource-id'])) {
2675                         return $l10n->t('photo');
2676                 } elseif ($item['gravity'] == GRAVITY_ACTIVITY) {
2677                         return $l10n->t('activity');
2678                 } elseif ($item['gravity'] == GRAVITY_COMMENT) {
2679                         return $l10n->t('comment');
2680                 }
2681
2682                 return $l10n->t('post');
2683         }
2684
2685         /**
2686          * Sets the "rendered-html" field of the provided item
2687          *
2688          * Body is preserved to avoid side-effects as we modify it just-in-time for spoilers and private image links
2689          *
2690          * @param array $item
2691          *
2692          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2693          * @todo Remove reference, simply return "rendered-html" and "rendered-hash"
2694          */
2695         public static function putInCache(&$item)
2696         {
2697                 // Save original body to prevent addons to modify it
2698                 $body = $item['body'];
2699
2700                 $rendered_hash = $item['rendered-hash'] ?? '';
2701                 $rendered_html = $item['rendered-html'] ?? '';
2702
2703                 if ($rendered_hash == ''
2704                         || $rendered_html == ''
2705                         || $rendered_hash != hash('md5', BBCode::VERSION . '::' . $body)
2706                         || DI::config()->get('system', 'ignore_cache')
2707                 ) {
2708                         self::addRedirToImageTags($item);
2709
2710                         $item['rendered-html'] = BBCode::convertForUriId($item['uri-id'], $item['body']);
2711                         $item['rendered-hash'] = hash('md5', BBCode::VERSION . '::' . $body);
2712
2713                         $hook_data = ['item' => $item, 'rendered-html' => $item['rendered-html'], 'rendered-hash' => $item['rendered-hash']];
2714                         Hook::callAll('put_item_in_cache', $hook_data);
2715                         $item['rendered-html'] = $hook_data['rendered-html'];
2716                         $item['rendered-hash'] = $hook_data['rendered-hash'];
2717                         unset($hook_data);
2718
2719                         // Update if the generated values differ from the existing ones
2720                         if ((($rendered_hash != $item['rendered-hash']) || ($rendered_html != $item['rendered-html'])) && !empty($item['id'])) {
2721                                 self::update(
2722                                         [
2723                                                 'rendered-html' => $item['rendered-html'],
2724                                                 'rendered-hash' => $item['rendered-hash']
2725                                         ],
2726                                         ['id' => $item['id']]
2727                                 );
2728                         }
2729                 }
2730
2731                 $item['body'] = $body;
2732         }
2733
2734         /**
2735          * Find any non-embedded images in private items and add redir links to them
2736          *
2737          * @param array &$item The field array of an item row
2738          */
2739         private static function addRedirToImageTags(array &$item)
2740         {
2741                 $app = DI::app();
2742
2743                 $matches = [];
2744                 $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
2745                 if ($cnt) {
2746                         foreach ($matches as $mtch) {
2747                                 if (strpos($mtch[1], '/redir') !== false) {
2748                                         continue;
2749                                 }
2750
2751                                 if ((local_user() == $item['uid']) && ($item['private'] == self::PRIVATE) && ($item['contact-id'] != $app->getContactId()) && ($item['network'] == Protocol::DFRN)) {
2752                                         $img_url = 'redir/' . $item['contact-id'] . '?url=' . urlencode($mtch[1]);
2753                                         $item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
2754                                 }
2755                         }
2756                 }
2757         }
2758
2759         /**
2760          * Given an item array, convert the body element from bbcode to html and add smilie icons.
2761          * If attach is true, also add icons for item attachments.
2762          *
2763          * @param array   $item
2764          * @param boolean $attach
2765          * @param boolean $is_preview
2766          * @return string item body html
2767          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2768          * @throws \ImagickException
2769          * @hook  prepare_body_init item array before any work
2770          * @hook  prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
2771          * @hook  prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
2772          * @hook  prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
2773          */
2774         public static function prepareBody(array &$item, $attach = false, $is_preview = false)
2775         {
2776                 $a = DI::app();
2777                 Hook::callAll('prepare_body_init', $item);
2778
2779                 // In order to provide theme developers more possibilities, event items
2780                 // are treated differently.
2781                 if ($item['object-type'] === Activity\ObjectType::EVENT && isset($item['event-id'])) {
2782                         $ev = Event::getItemHTML($item);
2783                         return $ev;
2784                 }
2785
2786                 $tags = Tag::populateFromItem($item);
2787
2788                 $item['tags'] = $tags['tags'];
2789                 $item['hashtags'] = $tags['hashtags'];
2790                 $item['mentions'] = $tags['mentions'];
2791
2792                 $body = $item['body'] ?? '';
2793                 $shared = BBCode::fetchShareAttributes($body);
2794                 if (!empty($shared['guid'])) {
2795                         $shared_item = Post::selectFirst(['uri-id', 'plink'], ['guid' => $shared['guid']]);
2796                         $shared_uri_id = $shared_item['uri-id'] ?? 0;
2797                         $shared_links = [strtolower($shared_item['plink'] ?? '')];
2798                         $shared_attachments = Post\Media::splitAttachments($shared_uri_id, $shared['guid']);
2799                         $shared_links = array_merge($shared_links, array_column($shared_attachments['visual'], 'url'));
2800                         $shared_links = array_merge($shared_links, array_column($shared_attachments['link'], 'url'));
2801                         $shared_links = array_merge($shared_links, array_column($shared_attachments['additional'], 'url'));
2802                         $item['body'] = self::replaceVisualAttachments($shared_attachments, $item['body']);
2803                 } else {
2804                         $shared_uri_id = 0;
2805                         $shared_links = [];
2806                 }
2807                 $attachments = Post\Media::splitAttachments($item['uri-id'], $item['guid'] ?? '', $shared_links);
2808                 $item['body'] = self::replaceVisualAttachments($attachments, $item['body'] ?? '');
2809
2810                 $item['body'] = preg_replace("/\s*\[attachment .*?\].*?\[\/attachment\]\s*/ism", "\n", $item['body']);
2811                 self::putInCache($item);
2812                 $item['body'] = $body;
2813                 $s = $item["rendered-html"];
2814
2815                 // Compile eventual content filter reasons
2816                 $filter_reasons = [];
2817                 if (!$is_preview && public_contact() != $item['author-id']) {
2818                         if (!empty($item['content-warning']) && (!local_user() || !DI::pConfig()->get(local_user(), 'system', 'disable_cw', false))) {
2819                                 $filter_reasons[] = DI::l10n()->t('Content warning: %s', $item['content-warning']);
2820                         }
2821
2822                         $item['attachments'] = $attachments;
2823
2824                         $hook_data = [
2825                                 'item' => $item,
2826                                 'filter_reasons' => $filter_reasons
2827                         ];
2828                         Hook::callAll('prepare_body_content_filter', $hook_data);
2829                         $filter_reasons = $hook_data['filter_reasons'];
2830                         unset($hook_data);
2831                 }
2832
2833                 $hook_data = [
2834                         'item' => $item,
2835                         'html' => $s,
2836                         'preview' => $is_preview,
2837                         'filter_reasons' => $filter_reasons
2838                 ];
2839                 Hook::callAll('prepare_body', $hook_data);
2840                 $s = $hook_data['html'];
2841                 unset($hook_data);
2842
2843                 if (!$attach) {
2844                         // Replace the blockquotes with quotes that are used in mails.
2845                         $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
2846                         $s = str_replace(['<blockquote>', '<blockquote class="spoiler">', '<blockquote class="author">'], [$mailquote, $mailquote, $mailquote], $s);
2847                         return $s;
2848                 }
2849
2850                 if (!empty($shared_attachments)) {
2851                         $s = self::addVisualAttachments($shared_attachments, $item, $s, true);
2852                         $s = self::addLinkAttachment($shared_uri_id ?: $item['uri-id'], $shared_attachments, $body, $s, true, []);
2853                         $s = self::addNonVisualAttachments($shared_attachments, $item, $s, true);
2854                         $body = preg_replace("/\s*\[share .*?\].*?\[\/share\]\s*/ism", '', $body);
2855                 }
2856
2857                 $s = self::addVisualAttachments($attachments, $item, $s, false);
2858                 $s = self::addLinkAttachment($item['uri-id'], $attachments, $body, $s, false, $shared_links);
2859                 $s = self::addNonVisualAttachments($attachments, $item, $s, false);
2860
2861                 // Map.
2862                 if (strpos($s, '<div class="map">') !== false && !empty($item['coord'])) {
2863                         $x = Map::byCoordinates(trim($item['coord']));
2864                         if ($x) {
2865                                 $s = preg_replace('/\<div class\=\"map\"\>/', '$0' . $x, $s);
2866                         }
2867                 }
2868
2869                 // Replace friendica image url size with theme preference.
2870                 if (!empty($a->getThemeInfoValue('item_image_size'))) {
2871                         $ps = $a->getThemeInfoValue('item_image_size');
2872                         $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
2873                 }
2874
2875                 $s = HTML::applyContentFilter($s, $filter_reasons);
2876
2877                 $hook_data = ['item' => $item, 'html' => $s];
2878                 Hook::callAll('prepare_body_final', $hook_data);
2879
2880                 return $hook_data['html'];
2881         }
2882
2883         /**
2884          * Check if the body contains a link
2885          *
2886          * @param string $body
2887          * @param string $url
2888          * @param int    $type
2889          * @return bool
2890          */
2891         public static function containsLink(string $body, string $url, int $type = 0)
2892         {
2893                 // Make sure that for example site parameters aren't used when testing if the link is contained in the body
2894                 $urlparts = parse_url($url);
2895                 unset($urlparts['query']);
2896                 unset($urlparts['fragment']);
2897                 $url = Network::unparseURL($urlparts);
2898
2899                 // Remove media links to only search in embedded content
2900                 // @todo Check images for image link, audio for audio links, ...
2901                 if (in_array($type, [Post\Media::AUDIO, Post\Media::VIDEO, Post\Media::IMAGE])) {
2902                         $body = preg_replace("/\[url=[^\[\]]*\](.*)\[\/url\]/Usi", ' $1 ', $body);
2903                 }
2904
2905                 if (strpos($body, $url)) {
2906                         return true;
2907                 }
2908                 foreach ([0, 1, 2] as $size) {
2909                         if (preg_match('#/photo/.*-' . $size . '\.#ism', $url) &&
2910                                 strpos(preg_replace('#(/photo/.*)-[012]\.#ism', '$1-' . $size . '.', $body), $url)) {
2911                                 return true;
2912                         }
2913                 }
2914                 return false;
2915         }
2916
2917         /**
2918          * Replace visual attachments in the body
2919          *
2920          * @param array $attachments
2921          * @param string $body
2922          * @return string modified body
2923          */
2924         private static function replaceVisualAttachments(array $attachments, string $body)
2925         {
2926                 DI::profiler()->startRecording('rendering');
2927
2928                 foreach ($attachments['visual'] as $attachment) {
2929                         if (!empty($attachment['preview'])) {
2930                                 $body = str_replace($attachment['preview'], Post\Media::getPreviewUrlForId($attachment['id'], Proxy::SIZE_LARGE), $body);
2931                         } elseif ($attachment['filetype'] == 'image') {
2932                                 $body = str_replace($attachment['url'], Post\Media::getUrlForId($attachment['id']), $body);
2933                         }
2934                 }
2935                 DI::profiler()->stopRecording();
2936                 return $body;
2937         }
2938
2939         /**
2940          * Add visual attachments to the content
2941          *
2942          * @param array $attachments
2943          * @param array $item
2944          * @param string $content
2945          * @return string modified content
2946          */
2947         private static function addVisualAttachments(array $attachments, array $item, string $content, bool $shared)
2948         {
2949                 DI::profiler()->startRecording('rendering');
2950                 $leading = '';
2951                 $trailing = '';
2952
2953                 // @todo In the future we should make a single for the template engine with all media in it. This allows more flexibilty.
2954                 foreach ($attachments['visual'] as $attachment) {
2955                         if (self::containsLink($item['body'], $attachment['preview'] ?? $attachment['url'], $attachment['type'])) {
2956                                 continue;
2957                         }
2958
2959                         if (!empty($attachment['preview'])) {
2960                                 $preview_url = Post\Media::getPreviewUrlForId($attachment['id'], Proxy::SIZE_LARGE);
2961                         } else {
2962                                 $preview_url = '';
2963                         }
2964
2965                         if (($attachment['filetype'] == 'video')) {
2966                                 /// @todo Move the template to /content as well
2967                                 $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [
2968                                         '$video' => [
2969                                                 'id'      => $attachment['id'],
2970                                                 'src'     => $attachment['url'],
2971                                                 'name'    => $attachment['name'] ?: $attachment['url'],
2972                                                 'preview' => $preview_url,
2973                                                 'mime'    => $attachment['mimetype'],
2974                                         ],
2975                                 ]);
2976                                 if (($item['post-type'] ?? null) == Item::PT_VIDEO) {
2977                                         $leading .= $media;
2978                                 } else {
2979                                         $trailing .= $media;
2980                                 }
2981                         } elseif ($attachment['filetype'] == 'audio') {
2982                                 $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('content/audio.tpl'), [
2983                                         '$audio' => [
2984                                                 'id'     => $attachment['id'],
2985                                                 'src'    => $attachment['url'],
2986                                                 'name'   => $attachment['name'] ?: $attachment['url'],
2987                                                 'mime'   => $attachment['mimetype'],
2988                                         ],
2989                                 ]);
2990                                 if (($item['post-type'] ?? null) == Item::PT_AUDIO) {
2991                                         $leading .= $media;
2992                                 } else {
2993                                         $trailing .= $media;
2994                                 }
2995                         } elseif ($attachment['filetype'] == 'image') {
2996                                 $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image.tpl'), [
2997                                         '$image' => [
2998                                                 'src'        => Post\Media::getUrlForId($attachment['id']),
2999                                                 'preview'    => Post\Media::getPreviewUrlForId($attachment['id'], ($attachment['width'] > $attachment['height']) ? Proxy::SIZE_MEDIUM : Proxy::SIZE_LARGE),
3000                                                 'attachment' => $attachment,
3001                                         ],
3002                                 ]);
3003                                 // On Diaspora posts the attached pictures are leading
3004                                 if ($item['network'] == Protocol::DIASPORA) {
3005                                         $leading .= $media;
3006                                 } else {
3007                                         $trailing .= $media;
3008                                 }
3009                         }
3010                 }
3011
3012                 if ($shared) {
3013                         $content = str_replace(BBCode::TOP_ANCHOR, '<div class="body-attach">' . $leading . '<div class="clear"></div></div>' . BBCode::TOP_ANCHOR, $content);
3014                         $content = str_replace(BBCode::BOTTOM_ANCHOR, '<div class="body-attach">' . $trailing . '<div class="clear"></div></div>' . BBCode::BOTTOM_ANCHOR, $content);
3015                 } else {
3016                         if ($leading != '') {
3017                                 $content = '<div class="body-attach">' . $leading . '<div class="clear"></div></div>' . $content;
3018                         }
3019
3020                         if ($trailing != '') {
3021                                 $content .= '<div class="body-attach">' . $trailing . '<div class="clear"></div></div>';
3022                         }
3023                 }
3024
3025                 DI::profiler()->stopRecording();
3026                 return $content;
3027         }
3028
3029         /**
3030          * Add link attachment to the content
3031          *
3032          * @param array  $attachments
3033          * @param string $body
3034          * @param string $content
3035          * @param bool   $shared
3036          * @param array  $ignore_links A list of URLs to ignore
3037          * @return string modified content
3038          */
3039         private static function addLinkAttachment(int $uriid, array $attachments, string $body, string $content, bool $shared, array $ignore_links)
3040         {
3041                 DI::profiler()->startRecording('rendering');
3042                 // Don't show a preview when there is a visual attachment (audio or video)
3043                 $types = array_column($attachments['visual'], 'type');
3044                 $preview = !in_array(Post\Media::IMAGE, $types) && !in_array(Post\Media::VIDEO, $types);
3045
3046                 if (!empty($attachments['link'])) {
3047                         foreach ($attachments['link'] as $link) {
3048                                 $found = false;
3049                                 foreach ($ignore_links as $ignore_link) {
3050                                         if (Strings::compareLink($link['url'], $ignore_link)) {
3051                                                 $found = true;
3052                                         }
3053                                 }
3054                                 // @todo Judge between the links to use the one with most information
3055                                 if (!$found && (empty($attachment) || !empty($link['author-name']) ||
3056                                         (empty($attachment['name']) && !empty($link['name'])) ||
3057                                         (empty($attachment['description']) && !empty($link['description'])) ||
3058                                         (empty($attachment['preview']) && !empty($link['preview'])))) {
3059                                         $attachment = $link;
3060                                 }
3061                         }
3062                 }
3063
3064                 if (!empty($attachment)) {
3065                         $data = [
3066                                 'after' => '',
3067                                 'author_name' => $attachment['author-name'] ?? '',
3068                                 'author_url' =>  $attachment['author-url'] ?? '',
3069                                 'description' => $attachment['description'] ?? '',
3070                                 'image' => '',
3071                                 'preview' => '',
3072                                 'provider_name' => $attachment['publisher-name'] ?? '',
3073                                 'provider_url' => $attachment['publisher-url'] ?? '',
3074                                 'text' => '',
3075                                 'title' => $attachment['name'] ?? '',
3076                                 'type' => 'link',
3077                                 'url' => $attachment['url']];
3078
3079                         if ($preview && !empty($attachment['preview'])) {
3080                                 if ($attachment['preview-width'] >= 500) {
3081                                         $data['image'] = Post\Media::getPreviewUrlForId($attachment['id'], Proxy::SIZE_MEDIUM);
3082                                 } else {
3083                                         $data['preview'] = Post\Media::getPreviewUrlForId($attachment['id'], Proxy::SIZE_MEDIUM);
3084                                 }
3085                         }
3086
3087                         if (!empty($data['description']) && !empty($content)) {
3088                                 similar_text($data['description'], $content, $percent);
3089                         } else {
3090                                 $percent = 0;
3091                         }
3092
3093                         if (!empty($data['description']) && (($data['title'] == $data['description']) || ($percent > 95) || (strpos($content, $data['description']) !== false))) {
3094                                 $data['description'] = '';
3095                         }
3096
3097                         if (($data['author_name'] ?? '') == ($data['provider_name'] ?? '')) {
3098                                 $data['author_name'] = '';
3099                         }
3100
3101                         if (($data['author_url'] ?? '') == ($data['provider_url'] ?? '')) {
3102                                 $data['author_url'] = '';
3103                         }
3104                 } elseif (preg_match("/.*(\[attachment.*?\].*?\[\/attachment\]).*/ism", $body, $match)) {
3105                         $data = BBCode::getAttachmentData($match[1]);
3106                 }
3107                 DI::profiler()->stopRecording();
3108
3109                 if (isset($data['url']) && !in_array($data['url'], $ignore_links)) {
3110                         if (!empty($data['description']) || !empty($data['image']) || !empty($data['preview'])) {
3111                                 $parts = parse_url($data['url']);
3112                                 if (!empty($parts['scheme']) && !empty($parts['host'])) {
3113                                         if (empty($data['provider_name'])) {
3114                                                 $data['provider_name'] = $parts['host'];
3115                                         }
3116                                         if (empty($data['provider_url']) || empty(parse_url($data['provider_url'], PHP_URL_SCHEME))) {
3117                                                 $data['provider_url'] = $parts['scheme'] . '://' . $parts['host'];
3118
3119                                                 if (!empty($parts['port'])) {
3120                                                         $data['provider_url'] .= ':' . $parts['port'];
3121                                                 }
3122                                         }
3123                                 }
3124
3125                                 // @todo Use a template
3126                                 $rendered = BBCode::convertAttachment('', BBCode::INTERNAL, false, $data, $uriid);
3127                         } elseif (!self::containsLink($content, $data['url'], Post\Media::HTML)) {
3128                                 $rendered = Renderer::replaceMacros(Renderer::getMarkupTemplate('content/link.tpl'), [
3129                                         '$url'  => $data['url'],
3130                                         '$title' => $data['title'],
3131                                 ]);
3132                         } else {
3133                                 return $content;
3134                         }
3135
3136                         if ($shared) {
3137                                 return str_replace(BBCode::BOTTOM_ANCHOR, BBCode::BOTTOM_ANCHOR . $rendered, $content);
3138                         } else {
3139                                 return $content . $rendered;
3140                         }
3141                 }
3142                 return $content;
3143         }
3144
3145         /**
3146          * Add non visual attachments to the content
3147          *
3148          * @param array $attachments
3149          * @param array $item
3150          * @param string $content
3151          * @return string modified content
3152          */
3153         private static function addNonVisualAttachments(array $attachments, array $item, string $content)
3154         {
3155                 DI::profiler()->startRecording('rendering');
3156                 $trailing = '';
3157                 foreach ($attachments['additional'] as $attachment) {
3158                         if (strpos($item['body'], $attachment['url'])) {
3159                                 continue;
3160                         }
3161
3162                         $author = ['uid' => 0, 'id' => $item['author-id'],
3163                                 'network' => $item['author-network'], 'url' => $item['author-link']];
3164                         $the_url = Contact::magicLinkByContact($author, $attachment['url']);
3165
3166                         $title = Strings::escapeHtml(trim(($attachment['description'] ?? '') ?: $attachment['url']));
3167
3168                         if (!empty($attachment['size'])) {
3169                                 $title .= ' ' . $attachment['size'] . ' ' . DI::l10n()->t('bytes');
3170                         }
3171
3172                         /// @todo Use a template
3173                         $icon = '<div class="attachtype icon s22 type-' . $attachment['filetype'] . ' subtype-' . $attachment['subtype'] . '"></div>';
3174                         $trailing .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" rel="noopener noreferrer" >' . $icon . '</a>';
3175                 }
3176
3177                 if ($trailing != '') {
3178                         $content .= '<div class="body-attach">' . $trailing . '<div class="clear"></div></div>';
3179                 }
3180
3181                 DI::profiler()->stopRecording();
3182                 return $content;
3183         }
3184
3185         /**
3186          * get private link for item
3187          *
3188          * @param array $item
3189          * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
3190          * @throws \Exception
3191          */
3192         public static function getPlink($item)
3193         {
3194                 if (!empty($item['plink']) && Network::isValidHttpUrl($item['plink'])) {
3195                         $plink = $item['plink'];
3196                 } elseif (!empty($item['uri']) && Network::isValidHttpUrl($item['uri']) && !Network::isLocalLink($item['uri'])) {
3197                         $plink = $item['uri'];
3198                 }
3199
3200                 if (local_user()) {
3201                         $ret = [
3202                                 'href' => "display/" . $item['guid'],
3203                                 'orig' => "display/" . $item['guid'],
3204                                 'title' => DI::l10n()->t('View on separate page'),
3205                                 'orig_title' => DI::l10n()->t('View on separate page'),
3206                         ];
3207
3208                         if (!empty($plink)) {
3209                                 $ret['href'] = DI::baseUrl()->remove($plink);
3210                                 $ret['title'] = DI::l10n()->t('Link to source');
3211                         }
3212                 } elseif (!empty($plink) && ($item['private'] != self::PRIVATE)) {
3213                         $ret = [
3214                                 'href' => $plink,
3215                                 'orig' => $plink,
3216                                 'title' => DI::l10n()->t('Link to source'),
3217                                 'orig_title' => DI::l10n()->t('Link to source'),
3218                         ];
3219                 } else {
3220                         $ret = [];
3221                 }
3222
3223                 return $ret;
3224         }
3225
3226         /**
3227          * Does the given uri-id belongs to a post that is sent as starting post to a forum?
3228          *
3229          * @param int $uri_id
3230          *
3231          * @return boolean "true" when it is a forum post
3232          */
3233         public static function isForumPost(int $uri_id)
3234         {
3235                 foreach (Tag::getByURIId($uri_id, [Tag::EXCLUSIVE_MENTION]) as $tag) {
3236                         if (DBA::exists('contact', ['uid' => 0, 'nurl' => Strings::normaliseLink($tag['url']), 'contact-type' => Contact::TYPE_COMMUNITY])) {
3237                                 return true;
3238                         }
3239                 }
3240                 return false;
3241         }
3242
3243         /**
3244          * Search item id for given URI or plink
3245          *
3246          * @param string $uri
3247          * @param integer $uid
3248          *
3249          * @return integer item id
3250          */
3251         public static function searchByLink($uri, $uid = 0)
3252         {
3253                 $ssl_uri = str_replace('http://', 'https://', $uri);
3254                 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3255
3256                 $item = Post::selectFirst(['id'], ['uri' => $uris, 'uid' => $uid]);
3257                 if (DBA::isResult($item)) {
3258                         return $item['id'];
3259                 }
3260
3261                 $item = Post::selectFirst(['id'], ['plink' => $uris, 'uid' => $uid]);
3262                 if (DBA::isResult($item)) {
3263                         return $item['id'];
3264                 }
3265
3266                 return 0;
3267         }
3268
3269         /**
3270          * Return the URI for a link to the post
3271          *
3272          * @param string $uri URI or link to post
3273          *
3274          * @return string URI
3275          */
3276         public static function getURIByLink(string $uri)
3277         {
3278                 $ssl_uri = str_replace('http://', 'https://', $uri);
3279                 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3280
3281                 $item = Post::selectFirst(['uri'], ['uri' => $uris]);
3282                 if (DBA::isResult($item)) {
3283                         return $item['uri'];
3284                 }
3285
3286                 $item = Post::selectFirst(['uri'], ['plink' => $uris]);
3287                 if (DBA::isResult($item)) {
3288                         return $item['uri'];
3289                 }
3290
3291                 return '';
3292         }
3293
3294         /**
3295          * Fetches item for given URI or plink
3296          *
3297          * @param string $uri
3298          * @param integer $uid
3299          *
3300          * @return integer item id
3301          */
3302         public static function fetchByLink(string $uri, int $uid = 0)
3303         {
3304                 Logger::info('Trying to fetch link', ['uid' => $uid, 'uri' => $uri]);
3305                 $item_id = self::searchByLink($uri, $uid);
3306                 if (!empty($item_id)) {
3307                         Logger::info('Link found', ['uid' => $uid, 'uri' => $uri, 'id' => $item_id]);
3308                         return $item_id;
3309                 }
3310
3311                 $hookData = [
3312                         'uri'     => $uri,
3313                         'uid'     => $uid,
3314                         'item_id' => null,
3315                 ];
3316
3317                 Hook::callAll('item_by_link', $hookData);
3318
3319                 if (isset($hookData['item_id'])) {
3320                         return is_numeric($hookData['item_id']) ? $hookData['item_id'] : 0;
3321                 }
3322
3323                 if ($fetched_uri = ActivityPub\Processor::fetchMissingActivity($uri)) {
3324                         $item_id = self::searchByLink($fetched_uri, $uid);
3325                 } else {
3326                         $item_id = Diaspora::fetchByURL($uri);
3327                 }
3328
3329                 if (!empty($item_id)) {
3330                         Logger::info('Link fetched', ['uid' => $uid, 'uri' => $uri, 'id' => $item_id]);
3331                         return $item_id;
3332                 }
3333
3334                 Logger::info('Link not found', ['uid' => $uid, 'uri' => $uri]);
3335                 return 0;
3336         }
3337
3338         /**
3339          * Return share data from an item array (if the item is shared item)
3340          * We are providing the complete Item array, because at some time in the future
3341          * we hopefully will define these values not in the body anymore but in some item fields.
3342          * This function is meant to replace all similar functions in the system.
3343          *
3344          * @param array $item
3345          *
3346          * @return array with share information
3347          */
3348         public static function getShareArray($item)
3349         {
3350                 if (!preg_match("/(.*?)\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", $item['body'], $matches)) {
3351                         return [];
3352                 }
3353
3354                 $attribute_string = $matches[2];
3355                 $attributes = ['comment' => trim($matches[1]), 'shared' => trim($matches[3])];
3356                 foreach (['author', 'profile', 'avatar', 'guid', 'posted', 'link'] as $field) {
3357                         if (preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches)) {
3358                                 $attributes[$field] = trim(html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8'));
3359                         }
3360                 }
3361                 return $attributes;
3362         }
3363
3364         /**
3365          * Fetch item information for shared items from the original items and adds it.
3366          *
3367          * @param array $item
3368          *
3369          * @return array item array with data from the original item
3370          */
3371         public static function addShareDataFromOriginal(array $item)
3372         {
3373                 $shared = self::getShareArray($item);
3374                 if (empty($shared)) {
3375                         return $item;
3376                 }
3377
3378                 // Real reshares always have got a GUID.
3379                 if (empty($shared['guid'])) {
3380                         return $item;
3381                 }
3382
3383                 $uid = $item['uid'] ?? 0;
3384
3385                 // first try to fetch the item via the GUID. This will work for all reshares that had been created on this system
3386                 $shared_item = Post::selectFirst(['title', 'body'], ['guid' => $shared['guid'], 'uid' => [0, $uid]]);
3387                 if (!DBA::isResult($shared_item)) {
3388                         if (empty($shared['link'])) {
3389                                 return $item;
3390                         }
3391
3392                         // Otherwhise try to find (and possibly fetch) the item via the link. This should work for Diaspora and ActivityPub posts
3393                         $id = self::fetchByLink($shared['link'] ?? '', $uid);
3394                         if (empty($id)) {
3395                                 Logger::info('Original item not found', ['url' => $shared['link'] ?? '', 'callstack' => System::callstack()]);
3396                                 return $item;
3397                         }
3398
3399                         $shared_item = Post::selectFirst(['title', 'body'], ['id' => $id]);
3400                         if (!DBA::isResult($shared_item)) {
3401                                 return $item;
3402                         }
3403                         Logger::info('Got shared data from url', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3404                 } else {
3405                         Logger::info('Got shared data from guid', ['guid' => $shared['guid'], 'callstack' => System::callstack()]);
3406                 }
3407
3408                 if (!empty($shared_item['title'])) {
3409                         $body = '[h3]' . $shared_item['title'] . "[/h3]\n" . $shared_item['body'];
3410                         unset($shared_item['title']);
3411                 } else {
3412                         $body = $shared_item['body'];
3413                 }
3414
3415                 $item['body'] = preg_replace("/\[share ([^\[\]]*)\].*\[\/share\]/ism", '[share $1]' . str_replace('$', '\$', $body) . '[/share]', $item['body']);
3416                 unset($shared_item['body']);
3417
3418                 return array_merge($item, $shared_item);
3419         }
3420
3421         /**
3422          * Check a prospective item array against user-level permissions
3423          *
3424          * @param array $item Expected keys: uri, gravity, and
3425          *                    author-link if is author-id is set,
3426          *                    owner-link if is owner-id is set,
3427          *                    causer-link if is causer-id is set.
3428          * @param int   $user_id Local user ID
3429          * @return bool
3430          * @throws \Exception
3431          */
3432         protected static function isAllowedByUser(array $item, int $user_id)
3433         {
3434                 if (!empty($item['author-id']) && Contact\User::isBlocked($item['author-id'], $user_id)) {
3435                         Logger::notice('Author is blocked by user', ['author-link' => $item['author-link'], 'uid' => $user_id, 'item-uri' => $item['uri']]);
3436                         return false;
3437                 }
3438
3439                 if (!empty($item['owner-id']) && Contact\User::isBlocked($item['owner-id'], $user_id)) {
3440                         Logger::notice('Owner is blocked by user', ['owner-link' => $item['owner-link'], 'uid' => $user_id, 'item-uri' => $item['uri']]);
3441                         return false;
3442                 }
3443
3444                 // The causer is set during a thread completion, for example because of a reshare. It countains the responsible actor.
3445                 if (!empty($item['causer-id']) && Contact\User::isBlocked($item['causer-id'], $user_id)) {
3446                         Logger::notice('Causer is blocked by user', ['causer-link' => $item['causer-link'] ?? $item['causer-id'], 'uid' => $user_id, 'item-uri' => $item['uri']]);
3447                         return false;
3448                 }
3449
3450                 if (!empty($item['causer-id']) && ($item['gravity'] === GRAVITY_PARENT) && Contact\User::isIgnored($item['causer-id'], $user_id)) {
3451                         Logger::notice('Causer is ignored by user', ['causer-link' => $item['causer-link'] ?? $item['causer-id'], 'uid' => $user_id, 'item-uri' => $item['uri']]);
3452                         return false;
3453                 }
3454
3455                 return true;
3456         }
3457
3458         /**
3459          * Improve the data in shared posts
3460          *
3461          * @param array $item
3462          * @return string body
3463          */
3464         public static function improveSharedDataInBody(array $item)
3465         {
3466                 $shared = BBCode::fetchShareAttributes($item['body']);
3467                 if (empty($shared['link'])) {
3468                         return $item['body'];
3469                 }
3470
3471                 $id = self::fetchByLink($shared['link']);
3472                 Logger::info('Fetched shared post', ['uri-id' => $item['uri-id'], 'id' => $id, 'author' => $shared['profile'], 'url' => $shared['link'], 'guid' => $shared['guid'], 'callstack' => System::callstack()]);
3473                 if (!$id) {
3474                         return $item['body'];
3475                 }
3476
3477                 $shared_item = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'title', 'body'], ['id' => $id]);
3478                 if (!DBA::isResult($shared_item)) {
3479                         return $item['body'];
3480                 }
3481
3482                 $shared_content = BBCode::getShareOpeningTag($shared_item['author-name'], $shared_item['author-link'], $shared_item['author-avatar'], $shared_item['plink'], $shared_item['created'], $shared_item['guid']);
3483
3484                 if (!empty($shared_item['title'])) {
3485                         $shared_content .= '[h3]'.$shared_item['title'].'[/h3]'."\n";
3486                 }
3487
3488                 $shared_content .= $shared_item['body'];
3489
3490                 $item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $shared_content . '[/share]', $item['body']);
3491                 Logger::info('New shared data', ['uri-id' => $item['uri-id'], 'id' => $id, 'shared_item' => $shared_item]);
3492                 return $item['body'];
3493         }
3494 }