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