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