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