]> git.mxchange.org Git - friendica.git/blob - src/Model/Item.php
Store the diaspora signature differently
[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                 self::addLanguageToItemArray($item);
1689
1690                 // Items cannot be stored before they happen ...
1691                 if ($item['created'] > DateTimeFormat::utcNow()) {
1692                         $item['created'] = DateTimeFormat::utcNow();
1693                 }
1694
1695                 // We haven't invented time travel by now.
1696                 if ($item['edited'] > DateTimeFormat::utcNow()) {
1697                         $item['edited'] = DateTimeFormat::utcNow();
1698                 }
1699
1700                 $item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
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
1707                 $item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, false, $default);
1708
1709                 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
1710                         'photo' => $item['owner-avatar'], 'network' => $item['network']];
1711
1712                 $item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, false, $default);
1713
1714                 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
1715                 $item["contact-id"] = self::contactId($item);
1716
1717                 if ($item['network'] == Protocol::PHANTOM) {
1718                         $item['network'] = Protocol::DFRN;
1719                         Logger::notice('Missing network, setting to {network}.', [
1720                                 'uri' => $item["uri"],
1721                                 'network' => $item['network'],
1722                                 'callstack' => System::callstack()
1723                         ]);
1724                 }
1725
1726                 if (!self::validItem($item)) {
1727                         return 0;
1728                 }
1729
1730                 // We don't store the causer, we only have it here for the checks in the function above
1731                 unset($item['causer-id']);
1732                 unset($item['causer-link']);
1733
1734                 // We don't store these fields anymore in the item table
1735                 unset($item['author-link']);
1736                 unset($item['author-name']);
1737                 unset($item['author-avatar']);
1738                 unset($item['author-network']);
1739
1740                 unset($item['owner-link']);
1741                 unset($item['owner-name']);
1742                 unset($item['owner-avatar']);
1743
1744
1745                 $item['thr-parent'] = $item['parent-uri'];
1746
1747                 if ($item['parent-uri'] != $item['uri']) {
1748                         $item = self::getParentData($item);
1749                         if (empty($item)) {
1750                                 return 0;
1751                         }
1752
1753                         $parent_id = $item['parent'];
1754                         unset($item['parent']);
1755                         $parent_origin = $item['parent_origin'];
1756                         unset($item['parent_origin']);
1757                 } else {
1758                         $parent_id = 0;
1759                         $parent_origin = $item['origin'];
1760                 }
1761
1762                 $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
1763                 $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
1764
1765                 // Is this item available in the global items (with uid=0)?
1766                 if ($item["uid"] == 0) {
1767                         $item["global"] = true;
1768
1769                         // Set the global flag on all items if this was a global item entry
1770                         DBA::update('item', ['global' => true], ['uri' => $item["uri"]]);
1771                 } else {
1772                         $item["global"] = self::exists(['uid' => 0, 'uri' => $item["uri"]]);
1773                 }
1774
1775                 // ACL settings
1776                 if (!empty($item["allow_cid"] . $item["allow_gid"] . $item["deny_cid"] . $item["deny_gid"])) {
1777                         $item["private"] = self::PRIVATE;
1778                 }
1779
1780                 if ($notify) {
1781                         $item['edit'] = false;
1782                         $item['parent'] = $parent_id;
1783                         Hook::callAll('post_local', $item);
1784                         unset($item['edit']);
1785                         unset($item['parent']);
1786                 } else {
1787                         Hook::callAll('post_remote', $item);
1788                 }
1789
1790                 if (!empty($item['cancel'])) {
1791                         Logger::log('post cancelled by addon.');
1792                         return 0;
1793                 }
1794
1795                 if (empty($item['vid']) && !empty($item['verb'])) {
1796                         $item['vid'] = Verb::getID($item['verb']);
1797                 }
1798
1799                 // Creates or assigns the permission set
1800                 $item['psid'] = PermissionSet::getIdFromACL(
1801                         $item['uid'],
1802                         $item['allow_cid'],
1803                         $item['allow_gid'],
1804                         $item['deny_cid'],
1805                         $item['deny_gid']
1806                 );
1807
1808                 unset($item['allow_cid']);
1809                 unset($item['allow_gid']);
1810                 unset($item['deny_cid']);
1811                 unset($item['deny_gid']);
1812
1813                 // This array field is used to trigger some automatic reactions
1814                 // It is mainly used in the "post_local" hook.
1815                 unset($item['api_source']);
1816
1817                 // Filling item related side tables
1818
1819                 // Diaspora signature
1820                 if (!empty($item['diaspora_signed_text'])) {
1821                         DBA::insert('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $item['diaspora_signed_text']], true);
1822                 }
1823
1824                 unset($item['diaspora_signed_text']);
1825
1826                 // Attached file links
1827                 if (array_key_exists('file', $item) && !empty($item['file'])) {
1828                         Category::storeTextByURIId($item['uri-id'], $item['uid'], $item['file']);
1829                 }
1830
1831                 unset($item['file']);
1832
1833                 // Delivery relevant data
1834                 $delivery_data = Post\DeliveryData::extractFields($item);
1835                 unset($item['postopts']);
1836                 unset($item['inform']);
1837
1838                 // Check for hashtags in the body and repair or add hashtag links
1839                 self::setHashtags($item);
1840
1841                 // Store tags from the body if this hadn't been handled previously in the protocol classes
1842                 if (!Tag::existsForPost($item['uri-id'])) {
1843                         Tag::storeFromBody($item['uri-id'], $item['body']);
1844                 }
1845                 
1846                 // Fill the cache field
1847                 self::putInCache($item);
1848
1849                 if (stristr($item['verb'], Activity::POKE)) {
1850                         $notify_type = Delivery::POKE;
1851                 } else {
1852                         $notify_type = Delivery::POST;
1853                 }
1854
1855                 // We are doing this outside of the transaction to avoid timing problems
1856                 if (!self::insertActivity($item)) {
1857                         self::insertContent($item);
1858                 }
1859
1860                 $like_no_comment = DI::config()->get('system', 'like_no_comment');
1861
1862                 DBA::transaction();
1863                 $ret = DBA::insert('item', $item);
1864
1865                 // When the item was successfully stored we fetch the ID of the item.
1866                 if (DBA::isResult($ret)) {
1867                         $current_post = DBA::lastInsertId();
1868                 } else {
1869                         // This can happen - for example - if there are locking timeouts.
1870                         DBA::rollback();
1871
1872                         // Store the data into a spool file so that we can try again later.
1873                         self::spool($orig_item);
1874                         return 0;
1875                 }
1876
1877                 if ($current_post == 0) {
1878                         // This is one of these error messages that never should occur.
1879                         Logger::log("couldn't find created item - we better quit now.");
1880                         DBA::rollback();
1881                         return 0;
1882                 }
1883
1884                 // How much entries have we created?
1885                 // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
1886                 $entries = DBA::count('item', ['uri' => $item['uri'], 'uid' => $item['uid'], 'network' => $item['network']]);
1887
1888                 if ($entries > 1) {
1889                         // There are duplicates. We delete our just created entry.
1890                         Logger::info('Delete duplicated item', ['id' => $current_post, 'uri' => $item['uri'], 'uid' => $item['uid'], 'guid' => $item['guid']]);
1891
1892                         // Yes, we could do a rollback here - but we possibly are still having users with MyISAM.
1893                         DBA::delete('item', ['id' => $current_post]);
1894                         DBA::commit();
1895                         return 0;
1896                 } elseif ($entries == 0) {
1897                         // This really should never happen since we quit earlier if there were problems.
1898                         Logger::log("Something is terribly wrong. We haven't found our created entry.");
1899                         DBA::rollback();
1900                         return 0;
1901                 }
1902
1903                 Logger::log('created item '.$current_post);
1904
1905                 if (!$parent_id || ($item['parent-uri'] === $item['uri'])) {
1906                         $parent_id = $current_post;
1907                 }
1908
1909                 // Set parent id
1910                 DBA::update('item', ['parent' => $parent_id], ['id' => $current_post]);
1911
1912                 $item['id'] = $current_post;
1913                 $item['parent'] = $parent_id;
1914
1915                 // update the commented timestamp on the parent
1916                 // Only update "commented" if it is really a comment
1917                 if (($item['gravity'] != GRAVITY_ACTIVITY) || !$like_no_comment) {
1918                         DBA::update('item', ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1919                 } else {
1920                         DBA::update('item', ['changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1921                 }
1922
1923                 if ($item['parent-uri'] === $item['uri']) {
1924                         self::addThread($current_post);
1925                 } else {
1926                         self::updateThread($parent_id);
1927                 }
1928
1929                 if (!empty($item['origin']) || !empty($item['wall']) || !empty($delivery_data['postopts']) || !empty($delivery_data['inform'])) {
1930                         Post\DeliveryData::insert($item['uri-id'], $delivery_data);
1931                 }
1932
1933                 DBA::commit();
1934
1935                 // In that function we check if this is a forum post. Additionally we delete the item under certain circumstances
1936                 if (self::tagDeliver($item['uid'], $current_post)) {
1937                         // Get the user information for the logging
1938                         $user = User::getById($uid);
1939
1940                         Logger::notice('Item had been deleted', ['id' => $current_post, 'user' => $uid, 'account-type' => $user['account-type']]);
1941                         return 0;
1942                 }
1943
1944                 if (!$dontcache) {
1945                         $posted_item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $current_post]);
1946                         if (DBA::isResult($posted_item)) {
1947                                 if ($notify) {
1948                                         Hook::callAll('post_local_end', $posted_item);
1949                                 } else {
1950                                         Hook::callAll('post_remote_end', $posted_item);
1951                                 }
1952                         } else {
1953                                 Logger::log('new item not found in DB, id ' . $current_post);
1954                         }
1955                 }
1956
1957                 if ($item['parent-uri'] === $item['uri']) {
1958                         self::addShadow($current_post);
1959                 } else {
1960                         self::addShadowPost($current_post);
1961                 }
1962
1963                 self::updateContact($item);
1964
1965                 UserItem::setNotification($current_post);
1966
1967                 check_user_notification($current_post);
1968
1969                 $transmit = $notify || ($item['visible'] && ($parent_origin || $item['origin']));
1970
1971                 if ($transmit) {
1972                         $transmit_item = Item::selectFirst(['verb', 'origin'], ['id' => $item['id']]);
1973                         // Don't relay participation messages
1974                         if (($transmit_item['verb'] == Activity::FOLLOW) && 
1975                                 (!$transmit_item['origin'] || ($item['author-id'] != Contact::getPublicIdByUserId($uid)))) {
1976                                 Logger::info('Participation messages will not be relayed', ['item' => $item['id'], 'uri' => $item['uri'], 'verb' => $transmit_item['verb']]);
1977                                 $transmit = false;
1978                         }
1979                 }
1980
1981                 if ($transmit) {
1982                         Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, $current_post);
1983                 }
1984
1985                 return $current_post;
1986         }
1987
1988         /**
1989          * Insert a new item content entry
1990          *
1991          * @param array $item The item fields that are to be inserted
1992          * @return bool
1993          * @throws \Exception
1994          */
1995         private static function insertActivity(&$item)
1996         {
1997                 $activity_index = self::activityToIndex($item['verb']);
1998
1999                 if ($activity_index < 0) {
2000                         return false;
2001                 }
2002
2003                 $fields = ['activity' => $activity_index, 'uri-hash' => (string)$item['uri-id'], 'uri-id' => $item['uri-id']];
2004
2005                 // We just remove everything that is content
2006                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2007                         unset($item[$field]);
2008                 }
2009
2010                 // To avoid timing problems, we are using locks.
2011                 $locked = DI::lock()->acquire('item_insert_activity');
2012                 if (!$locked) {
2013                         Logger::log("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway.");
2014                 }
2015
2016                 // Do we already have this content?
2017                 $item_activity = DBA::selectFirst('item-activity', ['id'], ['uri-id' => $item['uri-id']]);
2018                 if (DBA::isResult($item_activity)) {
2019                         $item['iaid'] = $item_activity['id'];
2020                         Logger::log('Fetched activity for URI ' . $item['uri'] . ' (' . $item['iaid'] . ')');
2021                 } elseif (DBA::insert('item-activity', $fields)) {
2022                         $item['iaid'] = DBA::lastInsertId();
2023                         Logger::log('Inserted activity for URI ' . $item['uri'] . ' (' . $item['iaid'] . ')');
2024                 } else {
2025                         // This shouldn't happen.
2026                         Logger::log('Could not insert activity for URI ' . $item['uri'] . ' - should not happen');
2027                         DI::lock()->release('item_insert_activity');
2028                         return false;
2029                 }
2030                 if ($locked) {
2031                         DI::lock()->release('item_insert_activity');
2032                 }
2033                 return true;
2034         }
2035
2036         /**
2037          * Insert a new item content entry
2038          *
2039          * @param array $item The item fields that are to be inserted
2040          * @throws \Exception
2041          */
2042         private static function insertContent(&$item)
2043         {
2044                 $fields = ['uri-plink-hash' => (string)$item['uri-id'], 'uri-id' => $item['uri-id']];
2045
2046                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2047                         if (isset($item[$field])) {
2048                                 $fields[$field] = $item[$field];
2049                                 unset($item[$field]);
2050                         }
2051                 }
2052
2053                 // To avoid timing problems, we are using locks.
2054                 $locked = DI::lock()->acquire('item_insert_content');
2055                 if (!$locked) {
2056                         Logger::log("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway.");
2057                 }
2058
2059                 // Do we already have this content?
2060                 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
2061                 if (DBA::isResult($item_content)) {
2062                         $item['icid'] = $item_content['id'];
2063                         Logger::log('Fetched content for URI ' . $item['uri'] . ' (' . $item['icid'] . ')');
2064                 } elseif (DBA::insert('item-content', $fields)) {
2065                         $item['icid'] = DBA::lastInsertId();
2066                         Logger::log('Inserted content for URI ' . $item['uri'] . ' (' . $item['icid'] . ')');
2067                 } else {
2068                         // This shouldn't happen.
2069                         Logger::log('Could not insert content for URI ' . $item['uri'] . ' - should not happen');
2070                 }
2071                 if ($locked) {
2072                         DI::lock()->release('item_insert_content');
2073                 }
2074         }
2075
2076         /**
2077          * Update existing item content entries
2078          *
2079          * @param array $item      The item fields that are to be changed
2080          * @param array $condition The condition for finding the item content entries
2081          * @return bool
2082          * @throws \Exception
2083          */
2084         private static function updateActivity($item, $condition)
2085         {
2086                 if (empty($item['verb'])) {
2087                         return false;
2088                 }
2089                 $activity_index = self::activityToIndex($item['verb']);
2090
2091                 if ($activity_index < 0) {
2092                         return false;
2093                 }
2094
2095                 $fields = ['activity' => $activity_index];
2096
2097                 Logger::log('Update activity for ' . json_encode($condition));
2098
2099                 DBA::update('item-activity', $fields, $condition, true);
2100
2101                 return true;
2102         }
2103
2104         /**
2105          * Update existing item content entries
2106          *
2107          * @param array $item      The item fields that are to be changed
2108          * @param array $condition The condition for finding the item content entries
2109          * @throws \Exception
2110          */
2111         private static function updateContent($item, $condition)
2112         {
2113                 // We have to select only the fields from the "item-content" table
2114                 $fields = [];
2115                 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2116                         if (isset($item[$field])) {
2117                                 $fields[$field] = $item[$field];
2118                         }
2119                 }
2120
2121                 if (empty($fields)) {
2122                         // when there are no fields at all, just use the condition
2123                         // This is to ensure that we always store content.
2124                         $fields = $condition;
2125                 }
2126
2127                 Logger::log('Update content for ' . json_encode($condition));
2128
2129                 DBA::update('item-content', $fields, $condition, true);
2130         }
2131
2132         /**
2133          * Distributes public items to the receivers
2134          *
2135          * @param integer $itemid      Item ID that should be added
2136          * @param string  $signed_text Original text (for Diaspora signatures), JSON encoded.
2137          * @throws \Exception
2138          */
2139         public static function distribute($itemid, $signed_text = '')
2140         {
2141                 $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
2142                 $parent = self::selectFirst(['owner-id'], $condition);
2143                 if (!DBA::isResult($parent)) {
2144                         return;
2145                 }
2146
2147                 // Only distribute public items from native networks
2148                 $condition = ['id' => $itemid, 'uid' => 0,
2149                         'network' => array_merge(Protocol::FEDERATED ,['']),
2150                         'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => [self::PUBLIC, self::UNLISTED]];
2151                 $item = self::selectFirst(self::ITEM_FIELDLIST, $condition);
2152                 if (!DBA::isResult($item)) {
2153                         return;
2154                 }
2155
2156                 $origin = $item['origin'];
2157
2158                 unset($item['id']);
2159                 unset($item['parent']);
2160                 unset($item['mention']);
2161                 unset($item['wall']);
2162                 unset($item['origin']);
2163                 unset($item['starred']);
2164
2165                 $users = [];
2166
2167                 /// @todo add a field "pcid" in the contact table that referrs to the public contact id.
2168                 $owner = DBA::selectFirst('contact', ['url', 'nurl', 'alias'], ['id' => $parent['owner-id']]);
2169                 if (!DBA::isResult($owner)) {
2170                         return;
2171                 }
2172
2173                 $condition = ['nurl' => $owner['nurl'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2174                 $contacts = DBA::select('contact', ['uid'], $condition);
2175                 while ($contact = DBA::fetch($contacts)) {
2176                         if ($contact['uid'] == 0) {
2177                                 continue;
2178                         }
2179
2180                         $users[$contact['uid']] = $contact['uid'];
2181                 }
2182                 DBA::close($contacts);
2183
2184                 $condition = ['alias' => $owner['url'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2185                 $contacts = DBA::select('contact', ['uid'], $condition);
2186                 while ($contact = DBA::fetch($contacts)) {
2187                         if ($contact['uid'] == 0) {
2188                                 continue;
2189                         }
2190
2191                         $users[$contact['uid']] = $contact['uid'];
2192                 }
2193                 DBA::close($contacts);
2194
2195                 if (!empty($owner['alias'])) {
2196                         $condition = ['url' => $owner['alias'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2197                         $contacts = DBA::select('contact', ['uid'], $condition);
2198                         while ($contact = DBA::fetch($contacts)) {
2199                                 if ($contact['uid'] == 0) {
2200                                         continue;
2201                                 }
2202
2203                                 $users[$contact['uid']] = $contact['uid'];
2204                         }
2205                         DBA::close($contacts);
2206                 }
2207
2208                 $origin_uid = 0;
2209
2210                 if ($item['uri'] != $item['parent-uri']) {
2211                         $parents = self::select(['uid', 'origin'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
2212                         while ($parent = self::fetch($parents)) {
2213                                 $users[$parent['uid']] = $parent['uid'];
2214                                 if ($parent['origin'] && !$origin) {
2215                                         $origin_uid = $parent['uid'];
2216                                 }
2217                         }
2218                 }
2219
2220                 foreach ($users as $uid) {
2221                         if ($origin_uid == $uid) {
2222                                 $item['diaspora_signed_text'] = $signed_text;
2223                         }
2224                         self::storeForUser($itemid, $item, $uid);
2225                 }
2226         }
2227
2228         /**
2229          * Store public items for the receivers
2230          *
2231          * @param integer $itemid Item ID that should be added
2232          * @param array   $item   The item entry that will be stored
2233          * @param integer $uid    The user that will receive the item entry
2234          * @throws \Exception
2235          */
2236         private static function storeForUser($itemid, $item, $uid)
2237         {
2238                 $item['uid'] = $uid;
2239                 $item['origin'] = 0;
2240                 $item['wall'] = 0;
2241                 if ($item['uri'] == $item['parent-uri']) {
2242                         $item['contact-id'] = Contact::getIdForURL($item['owner-link'], $uid);
2243                 } else {
2244                         $item['contact-id'] = Contact::getIdForURL($item['author-link'], $uid);
2245                 }
2246
2247                 if (empty($item['contact-id'])) {
2248                         $self = DBA::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
2249                         if (!DBA::isResult($self)) {
2250                                 return;
2251                         }
2252                         $item['contact-id'] = $self['id'];
2253                 }
2254
2255                 /// @todo Handling of "event-id"
2256
2257                 $notify = false;
2258                 if ($item['uri'] == $item['parent-uri']) {
2259                         $contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
2260                         if (DBA::isResult($contact)) {
2261                                 $notify = self::isRemoteSelf($contact, $item);
2262                         }
2263                 }
2264
2265                 $distributed = self::insert($item, $notify, true);
2266
2267                 if (!$distributed) {
2268                         Logger::log("Distributed public item " . $itemid . " for user " . $uid . " wasn't stored", Logger::DEBUG);
2269                 } else {
2270                         Logger::log("Distributed public item " . $itemid . " for user " . $uid . " with id " . $distributed, Logger::DEBUG);
2271                 }
2272         }
2273
2274         /**
2275          * Add a shadow entry for a given item id that is a thread starter
2276          *
2277          * We store every public item entry additionally with the user id "0".
2278          * This is used for the community page and for the search.
2279          * It is planned that in the future we will store public item entries only once.
2280          *
2281          * @param integer $itemid Item ID that should be added
2282          * @throws \Exception
2283          */
2284         public static function addShadow($itemid)
2285         {
2286                 $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network', 'uri'];
2287                 $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
2288                 $item = self::selectFirst($fields, $condition);
2289
2290                 if (!DBA::isResult($item)) {
2291                         return;
2292                 }
2293
2294                 // is it already a copy?
2295                 if (($itemid == 0) || ($item['uid'] == 0)) {
2296                         return;
2297                 }
2298
2299                 // Is it a visible public post?
2300                 if (!$item["visible"] || $item["deleted"] || $item["moderated"] || ($item["private"] == Item::PRIVATE)) {
2301                         return;
2302                 }
2303
2304                 // is it an entry from a connector? Only add an entry for natively connected networks
2305                 if (!in_array($item["network"], array_merge(Protocol::FEDERATED ,['']))) {
2306                         return;
2307                 }
2308
2309                 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2310                         return;
2311                 }
2312
2313                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2314
2315                 if (DBA::isResult($item)) {
2316                         // Preparing public shadow (removing user specific data)
2317                         $item['uid'] = 0;
2318                         unset($item['id']);
2319                         unset($item['parent']);
2320                         unset($item['wall']);
2321                         unset($item['mention']);
2322                         unset($item['origin']);
2323                         unset($item['starred']);
2324                         unset($item['postopts']);
2325                         unset($item['inform']);
2326                         if ($item['uri'] == $item['parent-uri']) {
2327                                 $item['contact-id'] = $item['owner-id'];
2328                         } else {
2329                                 $item['contact-id'] = $item['author-id'];
2330                         }
2331
2332                         $public_shadow = self::insert($item, false, true);
2333
2334                         Logger::log("Stored public shadow for thread ".$itemid." under id ".$public_shadow, Logger::DEBUG);
2335                 }
2336         }
2337
2338         /**
2339          * Add a shadow entry for a given item id that is a comment
2340          *
2341          * This function does the same like the function above - but for comments
2342          *
2343          * @param integer $itemid Item ID that should be added
2344          * @throws \Exception
2345          */
2346         public static function addShadowPost($itemid)
2347         {
2348                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2349                 if (!DBA::isResult($item)) {
2350                         return;
2351                 }
2352
2353                 // Is it a toplevel post?
2354                 if ($item['id'] == $item['parent']) {
2355                         self::addShadow($itemid);
2356                         return;
2357                 }
2358
2359                 // Is this a shadow entry?
2360                 if ($item['uid'] == 0) {
2361                         return;
2362                 }
2363
2364                 // Is there a shadow parent?
2365                 if (!self::exists(['uri' => $item['parent-uri'], 'uid' => 0])) {
2366                         return;
2367                 }
2368
2369                 // Is there already a shadow entry?
2370                 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2371                         return;
2372                 }
2373
2374                 // Save "origin" and "parent" state
2375                 $origin = $item['origin'];
2376                 $parent = $item['parent'];
2377
2378                 // Preparing public shadow (removing user specific data)
2379                 $item['uid'] = 0;
2380                 unset($item['id']);
2381                 unset($item['parent']);
2382                 unset($item['wall']);
2383                 unset($item['mention']);
2384                 unset($item['origin']);
2385                 unset($item['starred']);
2386                 unset($item['postopts']);
2387                 unset($item['inform']);
2388                 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
2389
2390                 $public_shadow = self::insert($item, false, true);
2391
2392                 Logger::log("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, Logger::DEBUG);
2393
2394                 // If this was a comment to a Diaspora post we don't get our comment back.
2395                 // This means that we have to distribute the comment by ourselves.
2396                 if ($origin && self::exists(['id' => $parent, 'network' => Protocol::DIASPORA])) {
2397                         self::distribute($public_shadow);
2398                 }
2399         }
2400
2401         /**
2402          * Adds a language specification in a "language" element of given $arr.
2403          * Expects "body" element to exist in $arr.
2404          *
2405          * @param $item
2406          * @throws \Text_LanguageDetect_Exception
2407          */
2408         private static function addLanguageToItemArray(&$item)
2409         {
2410                 $naked_body = BBCode::toPlaintext($item['body'], false);
2411
2412                 $ld = new Text_LanguageDetect();
2413                 $ld->setNameMode(2);
2414                 $languages = $ld->detect($naked_body, 3);
2415
2416                 if (is_array($languages)) {
2417                         $item['language'] = json_encode($languages);
2418                 }
2419         }
2420
2421         /**
2422          * Creates an unique guid out of a given uri
2423          *
2424          * @param string $uri uri of an item entry
2425          * @param string $host hostname for the GUID prefix
2426          * @return string unique guid
2427          */
2428         public static function guidFromUri($uri, $host)
2429         {
2430                 // Our regular guid routine is using this kind of prefix as well
2431                 // We have to avoid that different routines could accidentally create the same value
2432                 $parsed = parse_url($uri);
2433
2434                 // We use a hash of the hostname as prefix for the guid
2435                 $guid_prefix = hash("crc32", $host);
2436
2437                 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
2438                 unset($parsed["scheme"]);
2439
2440                 // Glue it together to be able to make a hash from it
2441                 $host_id = implode("/", $parsed);
2442
2443                 // We could use any hash algorithm since it isn't a security issue
2444                 $host_hash = hash("ripemd128", $host_id);
2445
2446                 return $guid_prefix.$host_hash;
2447         }
2448
2449         /**
2450          * generate an unique URI
2451          *
2452          * @param integer $uid  User id
2453          * @param string  $guid An existing GUID (Otherwise it will be generated)
2454          *
2455          * @return string
2456          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2457          */
2458         public static function newURI($uid, $guid = "")
2459         {
2460                 if ($guid == "") {
2461                         $guid = System::createUUID();
2462                 }
2463
2464                 return DI::baseUrl()->get() . '/objects/' . $guid;
2465         }
2466
2467         /**
2468          * Set "success_update" and "last-item" to the date of the last time we heard from this contact
2469          *
2470          * This can be used to filter for inactive contacts.
2471          * Only do this for public postings to avoid privacy problems, since poco data is public.
2472          * Don't set this value if it isn't from the owner (could be an author that we don't know)
2473          *
2474          * @param array $arr Contains the just posted item record
2475          * @throws \Exception
2476          */
2477         private static function updateContact($arr)
2478         {
2479                 // Unarchive the author
2480                 $contact = DBA::selectFirst('contact', [], ['id' => $arr["author-id"]]);
2481                 if (DBA::isResult($contact)) {
2482                         Contact::unmarkForArchival($contact);
2483                 }
2484
2485                 // Unarchive the contact if it's not our own contact
2486                 $contact = DBA::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
2487                 if (DBA::isResult($contact)) {
2488                         Contact::unmarkForArchival($contact);
2489                 }
2490
2491                 /// @todo On private posts we could obfuscate the date
2492                 $update = ($arr['private'] != self::PRIVATE);
2493
2494                 // Is it a forum? Then we don't care about the rules from above
2495                 if (!$update && in_array($arr["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN]) && ($arr["parent-uri"] === $arr["uri"])) {
2496                         if (DBA::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
2497                                 $update = true;
2498                         }
2499                 }
2500
2501                 if ($update) {
2502                         // The "self" contact id is used (for example in the connectors) when the contact is unknown
2503                         // So we have to ensure to only update the last item when it had been our own post,
2504                         // or it had been done by a "regular" contact.
2505                         if (!empty($arr['wall'])) {
2506                                 $condition = ['id' => $arr['contact-id']];
2507                         } else { 
2508                                 $condition = ['id' => $arr['contact-id'], 'self' => false];
2509                         }
2510                         DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']], $condition);
2511                 }
2512                 // Now do the same for the system wide contacts with uid=0
2513                 if ($arr['private'] != self::PRIVATE) {
2514                         DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2515                                 ['id' => $arr['owner-id']]);
2516
2517                         if ($arr['owner-id'] != $arr['author-id']) {
2518                                 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2519                                         ['id' => $arr['author-id']]);
2520                         }
2521                 }
2522         }
2523
2524         public static function setHashtags(&$item)
2525         {
2526                 $tags = BBCode::getTags($item["body"]);
2527
2528                 // No hashtags?
2529                 if (!count($tags)) {
2530                         return false;
2531                 }
2532
2533                 // What happens in [code], stays in [code]!
2534                 // escape the # and the [
2535                 // hint: we will also get in trouble with #tags, when we want markdown in posts -> ### Headline 3
2536                 $item["body"] = preg_replace_callback("/\[code(.*?)\](.*?)\[\/code\]/ism",
2537                         function ($match) {
2538                                 // we truly ESCape all # and [ to prevent gettin weird tags in [code] blocks
2539                                 $find = ['#', '['];
2540                                 $replace = [chr(27).'sharp', chr(27).'leftsquarebracket'];
2541                                 return ("[code" . $match[1] . "]" . str_replace($find, $replace, $match[2]) . "[/code]");
2542                         }, $item["body"]);
2543
2544                 // This sorting is important when there are hashtags that are part of other hashtags
2545                 // Otherwise there could be problems with hashtags like #test and #test2
2546                 // Because of this we are sorting from the longest to the shortest tag.
2547                 usort($tags, function($a, $b) {
2548                         return strlen($b) <=> strlen($a);
2549                 });
2550
2551                 $URLSearchString = "^\[\]";
2552
2553                 // All hashtags should point to the home server if "local_tags" is activated
2554                 if (DI::config()->get('system', 'local_tags')) {
2555                         $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2556                                         "#[url=".DI::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
2557                 }
2558
2559                 // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
2560                 $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2561                         function ($match) {
2562                                 return ("[url=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/url]");
2563                         }, $item["body"]);
2564
2565                 $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
2566                         function ($match) {
2567                                 return ("[bookmark=" . str_replace("#", "&num;", $match[1]) . "]" . str_replace("#", "&num;", $match[2]) . "[/bookmark]");
2568                         }, $item["body"]);
2569
2570                 $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
2571                         function ($match) {
2572                                 return ("[attachment " . str_replace("#", "&num;", $match[1]) . "]" . $match[2] . "[/attachment]");
2573                         }, $item["body"]);
2574
2575                 // Repair recursive urls
2576                 $item["body"] = preg_replace("/&num;\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2577                                 "&num;$2", $item["body"]);
2578
2579                 foreach ($tags as $tag) {
2580                         if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || strlen($tag) < 2 || $tag[1] == '#') {
2581                                 continue;
2582                         }
2583
2584                         $basetag = str_replace('_',' ',substr($tag,1));
2585                         $newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
2586
2587                         $item["body"] = str_replace($tag, $newtag, $item["body"]);
2588                 }
2589
2590                 // Convert back the masked hashtags
2591                 $item["body"] = str_replace("&num;", "#", $item["body"]);
2592
2593                 // Remember! What happens in [code], stays in [code]
2594                 // roleback the # and [
2595                 $item["body"] = preg_replace_callback("/\[code(.*?)\](.*?)\[\/code\]/ism",
2596                         function ($match) {
2597                                 // we truly unESCape all sharp and leftsquarebracket
2598                                 $find = [chr(27).'sharp', chr(27).'leftsquarebracket'];
2599                                 $replace = ['#', '['];
2600                                 return ("[code" . $match[1] . "]" . str_replace($find, $replace, $match[2]) . "[/code]");
2601                         }, $item["body"]);
2602         }
2603
2604         /**
2605          * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
2606          *
2607          * @param int $uid
2608          * @param int $item_id
2609          * @return boolean true if item was deleted, else false
2610          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2611          * @throws \ImagickException
2612          */
2613         private static function tagDeliver($uid, $item_id)
2614         {
2615                 $mention = false;
2616
2617                 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
2618                 if (!DBA::isResult($user)) {
2619                         return false;
2620                 }
2621
2622                 $community_page = (($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
2623                 $prvgroup = (($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP) ? true : false);
2624
2625                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
2626                 if (!DBA::isResult($item)) {
2627                         return false;
2628                 }
2629
2630                 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2631
2632                 /*
2633                  * Diaspora uses their own hardwired link URL in @-tags
2634                  * instead of the one we supply with webfinger
2635                  */
2636                 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2637
2638                 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2639                 if ($cnt) {
2640                         foreach ($matches as $mtch) {
2641                                 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2642                                         $mention = true;
2643                                         Logger::log('mention found: ' . $mtch[2]);
2644                                 }
2645                         }
2646                 }
2647
2648                 if (!$mention) {
2649                         if (($community_page || $prvgroup) &&
2650                                   !$item['wall'] && !$item['origin'] && ($item['id'] == $item['parent'])) {
2651                                 Logger::info('Delete private group/communiy top-level item without mention', ['id' => $item_id, 'guid'=> $item['guid']]);
2652                                 DBA::delete('item', ['id' => $item_id]);
2653                                 return true;
2654                         }
2655                         return false;
2656                 }
2657
2658                 $arr = ['item' => $item, 'user' => $user];
2659
2660                 Hook::callAll('tagged', $arr);
2661
2662                 if (!$community_page && !$prvgroup) {
2663                         return false;
2664                 }
2665
2666                 /*
2667                  * tgroup delivery - setup a second delivery chain
2668                  * prevent delivery looping - only proceed
2669                  * if the message originated elsewhere and is a top-level post
2670                  */
2671                 if ($item['wall'] || $item['origin'] || ($item['id'] != $item['parent'])) {
2672                         return false;
2673                 }
2674
2675                 // now change this copy of the post to a forum head message and deliver to all the tgroup members
2676                 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'], ['uid' => $uid, 'self' => true]);
2677                 if (!DBA::isResult($self)) {
2678                         return false;
2679                 }
2680
2681                 $owner_id = Contact::getIdForURL($self['url']);
2682
2683                 // also reset all the privacy bits to the forum default permissions
2684
2685                 $private = ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) ? self::PRIVATE : self::PUBLIC;
2686
2687                 $psid = PermissionSet::getIdFromACL(
2688                         $user['uid'],
2689                         $user['allow_cid'],
2690                         $user['allow_gid'],
2691                         $user['deny_cid'],
2692                         $user['deny_gid']
2693                 );
2694
2695                 $forum_mode = ($prvgroup ? 2 : 1);
2696
2697                 $fields = ['wall' => true, 'origin' => true, 'forum_mode' => $forum_mode, 'contact-id' => $self['id'],
2698                         'owner-id' => $owner_id, 'private' => $private, 'psid' => $psid];
2699                 self::update($fields, ['id' => $item_id]);
2700
2701                 self::updateThread($item_id);
2702
2703                 Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'Notifier', Delivery::POST, $item_id);
2704
2705                 return false;
2706         }
2707
2708         public static function isRemoteSelf($contact, &$datarray)
2709         {
2710                 if (!$contact['remote_self']) {
2711                         return false;
2712                 }
2713
2714                 // Prevent the forwarding of posts that are forwarded
2715                 if (!empty($datarray["extid"]) && ($datarray["extid"] == Protocol::DFRN)) {
2716                         Logger::log('Already forwarded', Logger::DEBUG);
2717                         return false;
2718                 }
2719
2720                 // Prevent to forward already forwarded posts
2721                 if ($datarray["app"] == DI::baseUrl()->getHostname()) {
2722                         Logger::log('Already forwarded (second test)', Logger::DEBUG);
2723                         return false;
2724                 }
2725
2726                 // Only forward posts
2727                 if ($datarray["verb"] != Activity::POST) {
2728                         Logger::log('No post', Logger::DEBUG);
2729                         return false;
2730                 }
2731
2732                 if (($contact['network'] != Protocol::FEED) && ($datarray['private'] == self::PRIVATE)) {
2733                         Logger::log('Not public', Logger::DEBUG);
2734                         return false;
2735                 }
2736
2737                 $datarray2 = $datarray;
2738                 Logger::log('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), Logger::DEBUG);
2739                 if ($contact['remote_self'] == 2) {
2740                         $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
2741                                         ['uid' => $contact['uid'], 'self' => true]);
2742                         if (DBA::isResult($self)) {
2743                                 $datarray['contact-id'] = $self["id"];
2744
2745                                 $datarray['owner-name'] = $self["name"];
2746                                 $datarray['owner-link'] = $self["url"];
2747                                 $datarray['owner-avatar'] = $self["thumb"];
2748
2749                                 $datarray['author-name']   = $datarray['owner-name'];
2750                                 $datarray['author-link']   = $datarray['owner-link'];
2751                                 $datarray['author-avatar'] = $datarray['owner-avatar'];
2752
2753                                 unset($datarray['edited']);
2754
2755                                 unset($datarray['network']);
2756                                 unset($datarray['owner-id']);
2757                                 unset($datarray['author-id']);
2758                         }
2759
2760                         if ($contact['network'] != Protocol::FEED) {
2761                                 $datarray["guid"] = System::createUUID();
2762                                 unset($datarray["plink"]);
2763                                 $datarray["uri"] = self::newURI($contact['uid'], $datarray["guid"]);
2764                                 $datarray["parent-uri"] = $datarray["uri"];
2765                                 $datarray["thr-parent"] = $datarray["uri"];
2766                                 $datarray["extid"] = Protocol::DFRN;
2767                                 $urlpart = parse_url($datarray2['author-link']);
2768                                 $datarray["app"] = $urlpart["host"];
2769                         } else {
2770                                 $datarray['private'] = self::PUBLIC;
2771                         }
2772                 }
2773
2774                 if ($contact['network'] != Protocol::FEED) {
2775                         // Store the original post
2776                         $result = self::insert($datarray2);
2777                         Logger::log('remote-self post original item - Contact '.$contact['url'].' return '.$result.' Item '.print_r($datarray2, true), Logger::DEBUG);
2778                 } else {
2779                         $datarray["app"] = "Feed";
2780                         $result = true;
2781                 }
2782
2783                 // Trigger automatic reactions for addons
2784                 $datarray['api_source'] = true;
2785
2786                 // We have to tell the hooks who we are - this really should be improved
2787                 $_SESSION["authenticated"] = true;
2788                 $_SESSION["uid"] = $contact['uid'];
2789
2790                 return $result;
2791         }
2792
2793         /**
2794          *
2795          * @param string $s
2796          * @param int    $uid
2797          * @param array  $item
2798          * @param int    $cid
2799          * @return string
2800          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2801          * @throws \ImagickException
2802          */
2803         public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
2804         {
2805                 if (DI::config()->get('system', 'disable_embedded')) {
2806                         return $s;
2807                 }
2808
2809                 Logger::log('check for photos', Logger::DEBUG);
2810                 $site = substr(DI::baseUrl(), strpos(DI::baseUrl(), '://'));
2811
2812                 $orig_body = $s;
2813                 $new_body = '';
2814
2815                 $img_start = strpos($orig_body, '[img');
2816                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2817                 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2818
2819                 while (($img_st_close !== false) && ($img_len !== false)) {
2820                         $img_st_close++; // make it point to AFTER the closing bracket
2821                         $image = substr($orig_body, $img_start + $img_st_close, $img_len);
2822
2823                         Logger::log('found photo ' . $image, Logger::DEBUG);
2824
2825                         if (stristr($image, $site . '/photo/')) {
2826                                 // Only embed locally hosted photos
2827                                 $replace = false;
2828                                 $i = basename($image);
2829                                 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
2830                                 $x = strpos($i, '-');
2831
2832                                 if ($x) {
2833                                         $res = substr($i, $x + 1);
2834                                         $i = substr($i, 0, $x);
2835                                         $photo = Photo::getPhotoForUser($uid, $i, $res);
2836                                         if (DBA::isResult($photo)) {
2837                                                 /*
2838                                                  * Check to see if we should replace this photo link with an embedded image
2839                                                  * 1. No need to do so if the photo is public
2840                                                  * 2. If there's a contact-id provided, see if they're in the access list
2841                                                  *    for the photo. If so, embed it.
2842                                                  * 3. Otherwise, if we have an item, see if the item permissions match the photo
2843                                                  *    permissions, regardless of order but first check to see if they're an exact
2844                                                  *    match to save some processing overhead.
2845                                                  */
2846                                                 if (self::hasPermissions($photo)) {
2847                                                         if ($cid) {
2848                                                                 $recips = self::enumeratePermissions($photo);
2849                                                                 if (in_array($cid, $recips)) {
2850                                                                         $replace = true;
2851                                                                 }
2852                                                         } elseif ($item) {
2853                                                                 if (self::samePermissions($uid, $item, $photo)) {
2854                                                                         $replace = true;
2855                                                                 }
2856                                                         }
2857                                                 }
2858                                                 if ($replace) {
2859                                                         $photo_img = Photo::getImageForPhoto($photo);
2860                                                         // If a custom width and height were specified, apply before embedding
2861                                                         if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
2862                                                                 Logger::log('scaling photo', Logger::DEBUG);
2863
2864                                                                 $width = intval($match[1]);
2865                                                                 $height = intval($match[2]);
2866
2867                                                                 $photo_img->scaleDown(max($width, $height));
2868                                                         }
2869
2870                                                         $data = $photo_img->asString();
2871                                                         $type = $photo_img->getType();
2872
2873                                                         Logger::log('replacing photo', Logger::DEBUG);
2874                                                         $image = 'data:' . $type . ';base64,' . base64_encode($data);
2875                                                         Logger::log('replaced: ' . $image, Logger::DATA);
2876                                                 }
2877                                         }
2878                                 }
2879                         }
2880
2881                         $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
2882                         $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
2883                         if ($orig_body === false) {
2884                                 $orig_body = '';
2885                         }
2886
2887                         $img_start = strpos($orig_body, '[img');
2888                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2889                         $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2890                 }
2891
2892                 $new_body = $new_body . $orig_body;
2893
2894                 return $new_body;
2895         }
2896
2897         private static function hasPermissions($obj)
2898         {
2899                 return !empty($obj['allow_cid']) || !empty($obj['allow_gid']) ||
2900                         !empty($obj['deny_cid']) || !empty($obj['deny_gid']);
2901         }
2902
2903         private static function samePermissions($uid, $obj1, $obj2)
2904         {
2905                 // first part is easy. Check that these are exactly the same.
2906                 if (($obj1['allow_cid'] == $obj2['allow_cid'])
2907                         && ($obj1['allow_gid'] == $obj2['allow_gid'])
2908                         && ($obj1['deny_cid'] == $obj2['deny_cid'])
2909                         && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
2910                         return true;
2911                 }
2912
2913                 // This is harder. Parse all the permissions and compare the resulting set.
2914                 $recipients1 = self::enumeratePermissions($obj1);
2915                 $recipients2 = self::enumeratePermissions($obj2);
2916                 sort($recipients1);
2917                 sort($recipients2);
2918
2919                 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
2920                 return ($recipients1 == $recipients2);
2921         }
2922
2923         /**
2924          * Returns an array of contact-ids that are allowed to see this object
2925          *
2926          * @param array $obj        Item array with at least uid, allow_cid, allow_gid, deny_cid and deny_gid
2927          * @param bool  $check_dead Prunes unavailable contacts from the result
2928          * @return array
2929          * @throws \Exception
2930          */
2931         public static function enumeratePermissions(array $obj, bool $check_dead = false)
2932         {
2933                 $aclFormater = DI::aclFormatter();
2934
2935                 $allow_people = $aclFormater->expand($obj['allow_cid']);
2936                 $allow_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['allow_gid']), $check_dead);
2937                 $deny_people  = $aclFormater->expand($obj['deny_cid']);
2938                 $deny_groups  = Group::expand($obj['uid'], $aclFormater->expand($obj['deny_gid']), $check_dead);
2939                 $recipients   = array_unique(array_merge($allow_people, $allow_groups));
2940                 $deny         = array_unique(array_merge($deny_people, $deny_groups));
2941                 $recipients   = array_diff($recipients, $deny);
2942                 return $recipients;
2943         }
2944
2945         public static function expire($uid, $days, $network = "", $force = false)
2946         {
2947                 if (!$uid || ($days < 1)) {
2948                         return;
2949                 }
2950
2951                 $condition = ["`uid` = ? AND NOT `deleted` AND `id` = `parent` AND `gravity` = ?",
2952                         $uid, GRAVITY_PARENT];
2953
2954                 /*
2955                  * $expire_network_only = save your own wall posts
2956                  * and just expire conversations started by others
2957                  */
2958                 $expire_network_only = DI::pConfig()->get($uid, 'expire', 'network_only', false);
2959
2960                 if ($expire_network_only) {
2961                         $condition[0] .= " AND NOT `wall`";
2962                 }
2963
2964                 if ($network != "") {
2965                         $condition[0] .= " AND `network` = ?";
2966                         $condition[] = $network;
2967                 }
2968
2969                 $condition[0] .= " AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY";
2970                 $condition[] = $days;
2971
2972                 $items = self::select(['file', 'resource-id', 'starred', 'type', 'id', 'post-type'], $condition);
2973
2974                 if (!DBA::isResult($items)) {
2975                         return;
2976                 }
2977
2978                 $expire_items = DI::pConfig()->get($uid, 'expire', 'items', true);
2979
2980                 // Forcing expiring of items - but not notes and marked items
2981                 if ($force) {
2982                         $expire_items = true;
2983                 }
2984
2985                 $expire_notes = DI::pConfig()->get($uid, 'expire', 'notes', true);
2986                 $expire_starred = DI::pConfig()->get($uid, 'expire', 'starred', true);
2987                 $expire_photos = DI::pConfig()->get($uid, 'expire', 'photos', false);
2988
2989                 $expired = 0;
2990
2991                 while ($item = Item::fetch($items)) {
2992                         // don't expire filed items
2993
2994                         if (strpos($item['file'], '[') !== false) {
2995                                 continue;
2996                         }
2997
2998                         // Only expire posts, not photos and photo comments
2999
3000                         if (!$expire_photos && strlen($item['resource-id'])) {
3001                                 continue;
3002                         } elseif (!$expire_starred && intval($item['starred'])) {
3003                                 continue;
3004                         } elseif (!$expire_notes && (($item['type'] == 'note') || ($item['post-type'] == Item::PT_PERSONAL_NOTE))) {
3005                                 continue;
3006                         } elseif (!$expire_items && ($item['type'] != 'note') && ($item['post-type'] != Item::PT_PERSONAL_NOTE)) {
3007                                 continue;
3008                         }
3009
3010                         self::markForDeletionById($item['id'], PRIORITY_LOW);
3011
3012                         ++$expired;
3013                 }
3014                 DBA::close($items);
3015                 Logger::log('User ' . $uid . ": expired $expired items; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
3016         }
3017
3018         public static function firstPostDate($uid, $wall = false)
3019         {
3020                 $condition = ['uid' => $uid, 'wall' => $wall, 'deleted' => false, 'visible' => true, 'moderated' => false];
3021                 $params = ['order' => ['received' => false]];
3022                 $thread = DBA::selectFirst('thread', ['received'], $condition, $params);
3023                 if (DBA::isResult($thread)) {
3024                         return substr(DateTimeFormat::local($thread['received']), 0, 10);
3025                 }
3026                 return false;
3027         }
3028
3029         /**
3030          * add/remove activity to an item
3031          *
3032          * Toggle activities as like,dislike,attend of an item
3033          *
3034          * @param string $item_id
3035          * @param string $verb
3036          *            Activity verb. One of
3037          *            like, unlike, dislike, undislike, attendyes, unattendyes,
3038          *            attendno, unattendno, attendmaybe, unattendmaybe
3039          * @return bool
3040          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3041          * @throws \ImagickException
3042          * @hook  'post_local_end'
3043          *            array $arr
3044          *            'post_id' => ID of posted item
3045          */
3046         public static function performActivity($item_id, $verb)
3047         {
3048                 if (!Session::isAuthenticated()) {
3049                         return false;
3050                 }
3051
3052                 switch ($verb) {
3053                         case 'like':
3054                         case 'unlike':
3055                                 $activity = Activity::LIKE;
3056                                 break;
3057                         case 'dislike':
3058                         case 'undislike':
3059                                 $activity = Activity::DISLIKE;
3060                                 break;
3061                         case 'attendyes':
3062                         case 'unattendyes':
3063                                 $activity = Activity::ATTEND;
3064                                 break;
3065                         case 'attendno':
3066                         case 'unattendno':
3067                                 $activity = Activity::ATTENDNO;
3068                                 break;
3069                         case 'attendmaybe':
3070                         case 'unattendmaybe':
3071                                 $activity = Activity::ATTENDMAYBE;
3072                                 break;
3073                         case 'follow':
3074                         case 'unfollow':
3075                                 $activity = Activity::FOLLOW;
3076                                 break;
3077                         default:
3078                                 Logger::log('like: unknown verb ' . $verb . ' for item ' . $item_id);
3079                                 return false;
3080                 }
3081
3082                 // Enable activity toggling instead of on/off
3083                 $event_verb_flag = $activity === Activity::ATTEND || $activity === Activity::ATTENDNO || $activity === Activity::ATTENDMAYBE;
3084
3085                 Logger::log('like: verb ' . $verb . ' item ' . $item_id);
3086
3087                 $item = self::selectFirst(self::ITEM_FIELDLIST, ['`id` = ? OR `uri` = ?', $item_id, $item_id]);
3088                 if (!DBA::isResult($item)) {
3089                         Logger::log('like: unknown item ' . $item_id);
3090                         return false;
3091                 }
3092
3093                 $item_uri = $item['uri'];
3094
3095                 $uid = $item['uid'];
3096                 if (($uid == 0) && local_user()) {
3097                         $uid = local_user();
3098                 }
3099
3100                 if (!Security::canWriteToUserWall($uid)) {
3101                         Logger::log('like: unable to write on wall ' . $uid);
3102                         return false;
3103                 }
3104
3105                 // Retrieves the local post owner
3106                 $owner_self_contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'self' => true]);
3107                 if (!DBA::isResult($owner_self_contact)) {
3108                         Logger::log('like: unknown owner ' . $uid);
3109                         return false;
3110                 }
3111
3112                 // Retrieve the current logged in user's public contact
3113                 $author_id = public_contact();
3114
3115                 $author_contact = DBA::selectFirst('contact', ['url'], ['id' => $author_id]);
3116                 if (!DBA::isResult($author_contact)) {
3117                         Logger::log('like: unknown author ' . $author_id);
3118                         return false;
3119                 }
3120
3121                 // Contact-id is the uid-dependant author contact
3122                 if (local_user() == $uid) {
3123                         $item_contact_id = $owner_self_contact['id'];
3124                 } else {
3125                         $item_contact_id = Contact::getIdForURL($author_contact['url'], $uid, true);
3126                         $item_contact = DBA::selectFirst('contact', [], ['id' => $item_contact_id]);
3127                         if (!DBA::isResult($item_contact)) {
3128                                 Logger::log('like: unknown item contact ' . $item_contact_id);
3129                                 return false;
3130                         }
3131                 }
3132
3133                 // Look for an existing verb row
3134                 // event participation are essentially radio toggles. If you make a subsequent choice,
3135                 // we need to eradicate your first choice.
3136                 if ($event_verb_flag) {
3137                         $verbs = [Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE];
3138
3139                         // Translate to the index based activity index
3140                         $activities = [];
3141                         foreach ($verbs as $verb) {
3142                                 $activities[] = self::activityToIndex($verb);
3143                         }
3144                 } else {
3145                         $activities = self::activityToIndex($activity);
3146                 }
3147
3148                 $condition = ['activity' => $activities, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY,
3149                         'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent' => $item_uri];
3150
3151                 $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
3152
3153                 // If it exists, mark it as deleted
3154                 if (DBA::isResult($like_item)) {
3155                         self::markForDeletionById($like_item['id']);
3156
3157                         if (!$event_verb_flag || $like_item['verb'] == $activity) {
3158                                 return true;
3159                         }
3160                 }
3161
3162                 // Verb is "un-something", just trying to delete existing entries
3163                 if (strpos($verb, 'un') === 0) {
3164                         return true;
3165                 }
3166
3167                 $objtype = $item['resource-id'] ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE;
3168
3169                 $new_item = [
3170                         'guid'          => System::createUUID(),
3171                         'uri'           => self::newURI($item['uid']),
3172                         'uid'           => $item['uid'],
3173                         'contact-id'    => $item_contact_id,
3174                         'wall'          => $item['wall'],
3175                         'origin'        => 1,
3176                         'network'       => Protocol::DFRN,
3177                         'gravity'       => GRAVITY_ACTIVITY,
3178                         'parent'        => $item['id'],
3179                         'parent-uri'    => $item['uri'],
3180                         'thr-parent'    => $item['uri'],
3181                         'owner-id'      => $author_id,
3182                         'author-id'     => $author_id,
3183                         'body'          => $activity,
3184                         'verb'          => $activity,
3185                         'object-type'   => $objtype,
3186                         'allow_cid'     => $item['allow_cid'],
3187                         'allow_gid'     => $item['allow_gid'],
3188                         'deny_cid'      => $item['deny_cid'],
3189                         'deny_gid'      => $item['deny_gid'],
3190                         'visible'       => 1,
3191                         'unseen'        => 1,
3192                 ];
3193
3194                 $signed = Diaspora::createLikeSignature($uid, $new_item);
3195                 if (!empty($signed)) {
3196                         $new_item['diaspora_signed_text'] = json_encode($signed);
3197                 }
3198
3199                 $new_item_id = self::insert($new_item);
3200
3201                 // If the parent item isn't visible then set it to visible
3202                 if (!$item['visible']) {
3203                         self::update(['visible' => true], ['id' => $item['id']]);
3204                 }
3205
3206                 $new_item['id'] = $new_item_id;
3207
3208                 Hook::callAll('post_local_end', $new_item);
3209
3210                 return true;
3211         }
3212
3213         private static function addThread($itemid, $onlyshadow = false)
3214         {
3215                 $fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
3216                         'moderated', 'visible', 'starred', 'contact-id', 'post-type',
3217                         'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
3218                 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3219                 $item = self::selectFirst($fields, $condition);
3220
3221                 if (!DBA::isResult($item)) {
3222                         return;
3223                 }
3224
3225                 $item['iid'] = $itemid;
3226
3227                 if (!$onlyshadow) {
3228                         $result = DBA::insert('thread', $item);
3229
3230                         Logger::log("Add thread for item ".$itemid." - ".print_r($result, true), Logger::DEBUG);
3231                 }
3232         }
3233
3234         private static function updateThread($itemid, $setmention = false)
3235         {
3236                 $fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed', 'post-type',
3237                         'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'contact-id',
3238                         'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
3239                 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3240
3241                 $item = self::selectFirst($fields, $condition);
3242                 if (!DBA::isResult($item)) {
3243                         return;
3244                 }
3245
3246                 if ($setmention) {
3247                         $item["mention"] = 1;
3248                 }
3249
3250                 $fields = [];
3251
3252                 foreach ($item as $field => $data) {
3253                         if (!in_array($field, ["guid"])) {
3254                                 $fields[$field] = $data;
3255                         }
3256                 }
3257
3258                 $result = DBA::update('thread', $fields, ['iid' => $itemid]);
3259
3260                 Logger::log("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".(int)$result, Logger::DEBUG);
3261         }
3262
3263         private static function deleteThread($itemid, $itemuri = "")
3264         {
3265                 $item = DBA::selectFirst('thread', ['uid'], ['iid' => $itemid]);
3266                 if (!DBA::isResult($item)) {
3267                         Logger::log('No thread found for id '.$itemid, Logger::DEBUG);
3268                         return;
3269                 }
3270
3271                 $result = DBA::delete('thread', ['iid' => $itemid], ['cascade' => false]);
3272
3273                 Logger::log("deleteThread: Deleted thread for item ".$itemid." - ".print_r($result, true), Logger::DEBUG);
3274
3275                 if ($itemuri != "") {
3276                         $condition = ["`uri` = ? AND NOT `deleted` AND NOT (`uid` IN (?, 0))", $itemuri, $item["uid"]];
3277                         if (!self::exists($condition)) {
3278                                 DBA::delete('item', ['uri' => $itemuri, 'uid' => 0]);
3279                                 Logger::debug('Deleted shadow item', ['id' => $itemid, 'uri' => $itemuri]);
3280                         }
3281                 }
3282         }
3283
3284         public static function getPermissionsSQLByUserId($owner_id)
3285         {
3286                 $local_user = local_user();
3287                 $remote_user = Session::getRemoteContactID($owner_id);
3288
3289                 /*
3290                  * Construct permissions
3291                  *
3292                  * default permissions - anonymous user
3293                  */
3294                 $sql = sprintf(" AND `item`.`private` != %d", self::PRIVATE);
3295
3296                 // Profile owner - everything is visible
3297                 if ($local_user && ($local_user == $owner_id)) {
3298                         $sql = '';
3299                 } elseif ($remote_user) {
3300                         /*
3301                          * Authenticated visitor. Unless pre-verified,
3302                          * check that the contact belongs to this $owner_id
3303                          * and load the groups the visitor belongs to.
3304                          * If pre-verified, the caller is expected to have already
3305                          * done this and passed the groups into this function.
3306                          */
3307                         $set = PermissionSet::get($owner_id, $remote_user);
3308
3309                         if (!empty($set)) {
3310                                 $sql_set = sprintf(" OR (`item`.`private` = %d AND `item`.`wall` AND `item`.`psid` IN (", self::PRIVATE) . implode(',', $set) . "))";
3311                         } else {
3312                                 $sql_set = '';
3313                         }
3314
3315                         $sql = sprintf(" AND (`item`.`private` != %d", self::PRIVATE) . $sql_set . ")";
3316                 }
3317
3318                 return $sql;
3319         }
3320
3321         /**
3322          * get translated item type
3323          *
3324          * @param $item
3325          * @return string
3326          */
3327         public static function postType($item)
3328         {
3329                 if (!empty($item['event-id'])) {
3330                         return DI::l10n()->t('event');
3331                 } elseif (!empty($item['resource-id'])) {
3332                         return DI::l10n()->t('photo');
3333                 } elseif (!empty($item['verb']) && $item['verb'] !== Activity::POST) {
3334                         return DI::l10n()->t('activity');
3335                 } elseif ($item['id'] != $item['parent']) {
3336                         return DI::l10n()->t('comment');
3337                 }
3338
3339                 return DI::l10n()->t('post');
3340         }
3341
3342         /**
3343          * Sets the "rendered-html" field of the provided item
3344          *
3345          * Body is preserved to avoid side-effects as we modify it just-in-time for spoilers and private image links
3346          *
3347          * @param array $item
3348          * @param bool  $update
3349          *
3350          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3351          * @todo Remove reference, simply return "rendered-html" and "rendered-hash"
3352          */
3353         public static function putInCache(&$item, $update = false)
3354         {
3355                 $body = $item["body"];
3356
3357                 $rendered_hash = $item['rendered-hash'] ?? '';
3358                 $rendered_html = $item['rendered-html'] ?? '';
3359
3360                 if ($rendered_hash == ''
3361                         || $rendered_html == ""
3362                         || $rendered_hash != hash("md5", $item["body"])
3363                         || DI::config()->get("system", "ignore_cache")
3364                 ) {
3365                         self::addRedirToImageTags($item);
3366
3367                         $item["rendered-html"] = BBCode::convert($item["body"]);
3368                         $item["rendered-hash"] = hash("md5", $item["body"]);
3369
3370                         $hook_data = ['item' => $item, 'rendered-html' => $item['rendered-html'], 'rendered-hash' => $item['rendered-hash']];
3371                         Hook::callAll('put_item_in_cache', $hook_data);
3372                         $item['rendered-html'] = $hook_data['rendered-html'];
3373                         $item['rendered-hash'] = $hook_data['rendered-hash'];
3374                         unset($hook_data);
3375
3376                         // Force an update if the generated values differ from the existing ones
3377                         if ($rendered_hash != $item["rendered-hash"]) {
3378                                 $update = true;
3379                         }
3380
3381                         // Only compare the HTML when we forcefully ignore the cache
3382                         if (DI::config()->get("system", "ignore_cache") && ($rendered_html != $item["rendered-html"])) {
3383                                 $update = true;
3384                         }
3385
3386                         if ($update && !empty($item["id"])) {
3387                                 self::update(
3388                                         [
3389                                                 'rendered-html' => $item["rendered-html"],
3390                                                 'rendered-hash' => $item["rendered-hash"]
3391                                         ],
3392                                         ['id' => $item["id"]]
3393                                 );
3394                         }
3395                 }
3396
3397                 $item["body"] = $body;
3398         }
3399
3400         /**
3401          * Find any non-embedded images in private items and add redir links to them
3402          *
3403          * @param array &$item The field array of an item row
3404          */
3405         private static function addRedirToImageTags(array &$item)
3406         {
3407                 $app = DI::app();
3408
3409                 $matches = [];
3410                 $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
3411                 if ($cnt) {
3412                         foreach ($matches as $mtch) {
3413                                 if (strpos($mtch[1], '/redir') !== false) {
3414                                         continue;
3415                                 }
3416
3417                                 if ((local_user() == $item['uid']) && ($item['private'] == self::PRIVATE) && ($item['contact-id'] != $app->contact['id']) && ($item['network'] == Protocol::DFRN)) {
3418                                         $img_url = 'redir/' . $item['contact-id'] . '?url=' . urlencode($mtch[1]);
3419                                         $item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
3420                                 }
3421                         }
3422                 }
3423         }
3424
3425         /**
3426          * Given an item array, convert the body element from bbcode to html and add smilie icons.
3427          * If attach is true, also add icons for item attachments.
3428          *
3429          * @param array   $item
3430          * @param boolean $attach
3431          * @param boolean $is_preview
3432          * @return string item body html
3433          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3434          * @throws \ImagickException
3435          * @hook  prepare_body_init item array before any work
3436          * @hook  prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
3437          * @hook  prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
3438          * @hook  prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
3439          */
3440         public static function prepareBody(array &$item, $attach = false, $is_preview = false)
3441         {
3442                 $a = DI::app();
3443                 Hook::callAll('prepare_body_init', $item);
3444
3445                 // In order to provide theme developers more possibilities, event items
3446                 // are treated differently.
3447                 if ($item['object-type'] === Activity\ObjectType::EVENT && isset($item['event-id'])) {
3448                         $ev = Event::getItemHTML($item);
3449                         return $ev;
3450                 }
3451
3452                 $tags = Tag::populateFromItem($item);
3453
3454                 $item['tags'] = $tags['tags'];
3455                 $item['hashtags'] = $tags['hashtags'];
3456                 $item['mentions'] = $tags['mentions'];
3457
3458                 // Compile eventual content filter reasons
3459                 $filter_reasons = [];
3460                 if (!$is_preview && public_contact() != $item['author-id']) {
3461                         if (!empty($item['content-warning']) && (!local_user() || !DI::pConfig()->get(local_user(), 'system', 'disable_cw', false))) {
3462                                 $filter_reasons[] = DI::l10n()->t('Content warning: %s', $item['content-warning']);
3463                         }
3464
3465                         $hook_data = [
3466                                 'item' => $item,
3467                                 'filter_reasons' => $filter_reasons
3468                         ];
3469                         Hook::callAll('prepare_body_content_filter', $hook_data);
3470                         $filter_reasons = $hook_data['filter_reasons'];
3471                         unset($hook_data);
3472                 }
3473
3474                 // Update the cached values if there is no "zrl=..." on the links.
3475                 $update = (!Session::isAuthenticated() && ($item["uid"] == 0));
3476
3477                 // Or update it if the current viewer is the intented viewer.
3478                 if (($item["uid"] == local_user()) && ($item["uid"] != 0)) {
3479                         $update = true;
3480                 }
3481
3482                 self::putInCache($item, $update);
3483                 $s = $item["rendered-html"];
3484
3485                 $hook_data = [
3486                         'item' => $item,
3487                         'html' => $s,
3488                         'preview' => $is_preview,
3489                         'filter_reasons' => $filter_reasons
3490                 ];
3491                 Hook::callAll('prepare_body', $hook_data);
3492                 $s = $hook_data['html'];
3493                 unset($hook_data);
3494
3495                 if (!$attach) {
3496                         // Replace the blockquotes with quotes that are used in mails.
3497                         $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
3498                         $s = str_replace(['<blockquote>', '<blockquote class="spoiler">', '<blockquote class="author">'], [$mailquote, $mailquote, $mailquote], $s);
3499                         return $s;
3500                 }
3501
3502                 $as = '';
3503                 $vhead = false;
3504                 $matches = [];
3505                 preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\"(?: title=\"(.*?)\")?|', $item['attach'], $matches, PREG_SET_ORDER);
3506                 foreach ($matches as $mtch) {
3507                         $mime = $mtch[3];
3508
3509                         $the_url = Contact::magicLinkById($item['author-id'], $mtch[1]);
3510
3511                         if (strpos($mime, 'video') !== false) {
3512                                 if (!$vhead) {
3513                                         $vhead = true;
3514                                         DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('videos_head.tpl'));
3515                                 }
3516
3517                                 $url_parts = explode('/', $the_url);
3518                                 $id = end($url_parts);
3519                                 $as .= Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [
3520                                         '$video' => [
3521                                                 'id'     => $id,
3522                                                 'title'  => DI::l10n()->t('View Video'),
3523                                                 'src'    => $the_url,
3524                                                 'mime'   => $mime,
3525                                         ],
3526                                 ]);
3527                         }
3528
3529                         $filetype = strtolower(substr($mime, 0, strpos($mime, '/')));
3530                         if ($filetype) {
3531                                 $filesubtype = strtolower(substr($mime, strpos($mime, '/') + 1));
3532                                 $filesubtype = str_replace('.', '-', $filesubtype);
3533                         } else {
3534                                 $filetype = 'unkn';
3535                                 $filesubtype = 'unkn';
3536                         }
3537
3538                         $title = Strings::escapeHtml(trim(($mtch[4] ?? '') ?: $mtch[1]));
3539                         $title .= ' ' . $mtch[2] . ' ' . DI::l10n()->t('bytes');
3540
3541                         $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
3542                         $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" rel="noopener noreferrer" >' . $icon . '</a>';
3543                 }
3544
3545                 if ($as != '') {
3546                         $s .= '<div class="body-attach">'.$as.'<div class="clear"></div></div>';
3547                 }
3548
3549                 // Map.
3550                 if (strpos($s, '<div class="map">') !== false && !empty($item['coord'])) {
3551                         $x = Map::byCoordinates(trim($item['coord']));
3552                         if ($x) {
3553                                 $s = preg_replace('/\<div class\=\"map\"\>/', '$0' . $x, $s);
3554                         }
3555                 }
3556
3557                 // Replace friendica image url size with theme preference.
3558                 if (!empty($a->theme_info['item_image_size'])) {
3559                         $ps = $a->theme_info['item_image_size'];
3560                         $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
3561                 }
3562
3563                 $s = HTML::applyContentFilter($s, $filter_reasons);
3564
3565                 $hook_data = ['item' => $item, 'html' => $s];
3566                 Hook::callAll('prepare_body_final', $hook_data);
3567
3568                 return $hook_data['html'];
3569         }
3570
3571         /**
3572          * get private link for item
3573          *
3574          * @param array $item
3575          * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
3576          * @throws \Exception
3577          */
3578         public static function getPlink($item)
3579         {
3580                 $a = DI::app();
3581
3582                 if ($a->user['nickname'] != "") {
3583                         $ret = [
3584                                 'href' => "display/" . $item['guid'],
3585                                 'orig' => "display/" . $item['guid'],
3586                                 'title' => DI::l10n()->t('View on separate page'),
3587                                 'orig_title' => DI::l10n()->t('view on separate page'),
3588                         ];
3589
3590                         if (!empty($item['plink'])) {
3591                                 $ret["href"] = DI::baseUrl()->remove($item['plink']);
3592                                 $ret["title"] = DI::l10n()->t('link to source');
3593                         }
3594
3595                 } elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
3596                         $ret = [
3597                                 'href' => $item['plink'],
3598                                 'orig' => $item['plink'],
3599                                 'title' => DI::l10n()->t('link to source'),
3600                         ];
3601                 } else {
3602                         $ret = [];
3603                 }
3604
3605                 return $ret;
3606         }
3607
3608         /**
3609          * Is the given item array a post that is sent as starting post to a forum?
3610          *
3611          * @param array $item
3612          * @param array $owner
3613          *
3614          * @return boolean "true" when it is a forum post
3615          */
3616         public static function isForumPost(array $item, array $owner = [])
3617         {
3618                 if (empty($owner)) {
3619                         $owner = User::getOwnerDataById($item['uid']);
3620                         if (empty($owner)) {
3621                                 return false;
3622                         }
3623                 }
3624
3625                 if (($item['author-id'] == $item['owner-id']) ||
3626                         ($owner['id'] == $item['contact-id']) ||
3627                         ($item['uri'] != $item['parent-uri']) ||
3628                         $item['origin']) {
3629                         return false;
3630                 }
3631
3632                 return Contact::isForum($item['contact-id']);
3633         }
3634
3635         /**
3636          * Search item id for given URI or plink
3637          *
3638          * @param string $uri
3639          * @param integer $uid
3640          *
3641          * @return integer item id
3642          */
3643         public static function searchByLink($uri, $uid = 0)
3644         {
3645                 $ssl_uri = str_replace('http://', 'https://', $uri);
3646                 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3647
3648                 $item = DBA::selectFirst('item', ['id'], ['uri' => $uris, 'uid' => $uid]);
3649                 if (DBA::isResult($item)) {
3650                         return $item['id'];
3651                 }
3652
3653                 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3654                 if (!DBA::isResult($itemcontent)) {
3655                         return 0;
3656                 }
3657
3658                 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3659                 if (!DBA::isResult($itemuri)) {
3660                         return 0;
3661                 }
3662
3663                 $item = DBA::selectFirst('item', ['id'], ['uri' => $itemuri['uri'], 'uid' => $uid]);
3664                 if (DBA::isResult($item)) {
3665                         return $item['id'];
3666                 }
3667
3668                 return 0;
3669         }
3670
3671         /**
3672          * Return the URI for a link to the post 
3673          * 
3674          * @param string $uri URI or link to post
3675          *
3676          * @return string URI
3677          */
3678         public static function getURIByLink(string $uri)
3679         {
3680                 $ssl_uri = str_replace('http://', 'https://', $uri);
3681                 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3682
3683                 $item = DBA::selectFirst('item', ['uri'], ['uri' => $uris]);
3684                 if (DBA::isResult($item)) {
3685                         return $item['uri'];
3686                 }
3687
3688                 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3689                 if (!DBA::isResult($itemcontent)) {
3690                         return '';
3691                 }
3692
3693                 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3694                 if (DBA::isResult($itemuri)) {
3695                         return $itemuri['uri'];
3696                 }
3697
3698                 return '';
3699         }
3700
3701         /**
3702          * Fetches item for given URI or plink
3703          *
3704          * @param string $uri
3705          * @param integer $uid
3706          *
3707          * @return integer item id
3708          */
3709         public static function fetchByLink($uri, $uid = 0)
3710         {
3711                 $item_id = self::searchByLink($uri, $uid);
3712                 if (!empty($item_id)) {
3713                         return $item_id;
3714                 }
3715
3716                 if ($fetched_uri = ActivityPub\Processor::fetchMissingActivity($uri)) {
3717                         $item_id = self::searchByLink($fetched_uri, $uid);
3718                 } else {
3719                         $item_id = Diaspora::fetchByURL($uri);
3720                 }
3721
3722                 if (!empty($item_id)) {
3723                         return $item_id;
3724                 }
3725
3726                 return 0;
3727         }
3728
3729         /**
3730          * Return share data from an item array (if the item is shared item)
3731          * We are providing the complete Item array, because at some time in the future
3732          * we hopefully will define these values not in the body anymore but in some item fields.
3733          * This function is meant to replace all similar functions in the system.
3734          *
3735          * @param array $item
3736          *
3737          * @return array with share information
3738          */
3739         public static function getShareArray($item)
3740         {
3741                 if (!preg_match("/(.*?)\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", $item['body'], $matches)) {
3742                         return [];
3743                 }
3744
3745                 $attribute_string = $matches[2];
3746                 $attributes = ['comment' => trim($matches[1]), 'shared' => trim($matches[3])];
3747                 foreach (['author', 'profile', 'avatar', 'guid', 'posted', 'link'] as $field) {
3748                         if (preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches)) {
3749                                 $attributes[$field] = trim(html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8'));
3750                         }
3751                 }
3752                 return $attributes;
3753         }
3754
3755         /**
3756          * Fetch item information for shared items from the original items and adds it.
3757          *
3758          * @param array $item
3759          *
3760          * @return array item array with data from the original item
3761          */
3762         public static function addShareDataFromOriginal($item)
3763         {
3764                 $shared = self::getShareArray($item);
3765                 if (empty($shared)) {
3766                         return $item;
3767                 }
3768
3769                 // Real reshares always have got a GUID.
3770                 if (empty($shared['guid'])) {
3771                         return $item;
3772                 }
3773
3774                 $uid = $item['uid'] ?? 0;
3775
3776                 // first try to fetch the item via the GUID. This will work for all reshares that had been created on this system
3777                 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['guid' => $shared['guid'], 'uid' => [0, $uid]]);
3778                 if (!DBA::isResult($shared_item)) {
3779                         if (empty($shared['link'])) {
3780                                 return $item;
3781                         }
3782
3783                         // Otherwhise try to find (and possibly fetch) the item via the link. This should work for Diaspora and ActivityPub posts
3784                         $id = self::fetchByLink($shared['link'], $uid);
3785                         if (empty($id)) {
3786                                 Logger::info('Original item not found', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3787                                 return $item;
3788                         }
3789
3790                         $shared_item = self::selectFirst(['title', 'body', 'attach'], ['id' => $id]);
3791                         if (!DBA::isResult($shared_item)) {
3792                                 return $item;
3793                         }
3794                         Logger::info('Got shared data from url', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3795                 } else {
3796                         Logger::info('Got shared data from guid', ['guid' => $shared['guid'], 'callstack' => System::callstack()]);
3797                 }
3798
3799                 if (!empty($shared_item['title'])) {
3800                         $body = '[h3]' . $shared_item['title'] . "[/h3]\n" . $shared_item['body'];
3801                         unset($shared_item['title']);
3802                 } else {
3803                         $body = $shared_item['body'];
3804                 }
3805
3806                 $item['body'] = preg_replace("/\[share ([^\[\]]*)\].*\[\/share\]/ism", '[share $1]' . $body . '[/share]', $item['body']);
3807                 unset($shared_item['body']);
3808
3809                 return array_merge($item, $shared_item);
3810         }
3811 }