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