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