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