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