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