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