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