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