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