3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Model;
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\Database\DBStructure;
36 use Friendica\Model\Post\Category;
37 use Friendica\Protocol\Activity;
38 use Friendica\Protocol\ActivityPub;
39 use Friendica\Protocol\Diaspora;
40 use Friendica\Util\DateTimeFormat;
41 use Friendica\Util\Map;
42 use Friendica\Util\Network;
43 use Friendica\Util\Security;
44 use Friendica\Util\Strings;
45 use Friendica\Worker\Delivery;
46 use Text_LanguageDetect;
47 use Friendica\Repository\PermissionSet as RepPermissionSet;
51 // Posting types, inspired by https://www.w3.org/TR/activitystreams-vocabulary/#object-types
58 const PT_DOCUMENT = 19;
60 const PT_PERSONAL_NOTE = 128;
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'
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', 'deleted', 'extid', 'post-type', 'gravity',
84 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
85 'author-id', 'author-link', 'owner-link', 'contact-uid',
86 'signed_text', 'signature', 'signer', 'network'];
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'];
93 // Field list for "item-content" table that is not present in the "item" table
94 const CONTENT_FIELDLIST = ['language'];
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', 'vid',
99 'contact-id', 'type', 'wall', 'gravity', 'extid', 'icid', 'psid',
100 'created', 'edited', 'commented', 'received', 'changed', 'verb',
101 'postopts', 'plink', 'resource-id', 'event-id', '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'];
110 // List of all verbs that don't need additional content data.
111 // Never reorder or remove entries from this list. Just add new ones at the end, if needed.
113 Activity::LIKE, Activity::DISLIKE,
114 Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE,
122 const TABLES = ['item', 'user-item', 'item-content', 'post-delivery-data', 'diaspora-interaction'];
124 private static $legacy_mode = null;
126 private static function getItemFields()
128 $definition = DBStructure::definition('', false);
131 foreach (self::TABLES as $table) {
132 $postfields[$table] = array_keys($definition[$table]['fields']);
138 public static function isLegacyMode()
140 if (is_null(self::$legacy_mode)) {
141 self::$legacy_mode = (DI::config()->get("system", "post_update_version") < 1279);
144 return self::$legacy_mode;
148 * Set the pinned state of an item
150 * @param integer $iid Item ID
151 * @param integer $uid User ID
152 * @param boolean $pinned Pinned state
154 public static function setPinned(int $iid, int $uid, bool $pinned)
156 DBA::update('user-item', ['pinned' => $pinned], ['iid' => $iid, 'uid' => $uid], true);
160 * Get the pinned state
162 * @param integer $iid Item ID
163 * @param integer $uid User ID
165 * @return boolean pinned state
167 public static function getPinned(int $iid, int $uid)
169 $useritem = DBA::selectFirst('user-item', ['pinned'], ['iid' => $iid, 'uid' => $uid]);
170 if (!DBA::isResult($useritem)) {
173 return (bool)$useritem['pinned'];
177 * Select pinned rows from the item table for a given user
179 * @param integer $uid User ID
180 * @param array $selected Array of selected fields, empty for all
181 * @param array $condition Array of fields for condition
182 * @param array $params Array of several parameters
184 * @return boolean|object
187 public static function selectPinned(int $uid, array $selected = [], array $condition = [], $params = [])
189 $useritems = DBA::select('user-item', ['iid'], ['uid' => $uid, 'pinned' => true]);
190 if (!DBA::isResult($useritems)) {
195 while ($useritem = DBA::fetch($useritems)) {
196 $pinned[] = $useritem['iid'];
198 DBA::close($useritems);
200 if (empty($pinned)) {
204 if (empty($condition) || !is_array($condition)) {
205 $condition = ['iid' => $pinned];
208 $first_key = key($condition);
209 if (!is_int($first_key)) {
210 $condition['iid'] = $pinned;
212 $values_string = substr(str_repeat("?, ", count($pinned)), 0, -2);
213 $condition[0] = '(' . $condition[0] . ") AND `iid` IN (" . $values_string . ")";
214 $condition = array_merge($condition, $pinned);
218 return self::selectThreadForUser($uid, $selected, $condition, $params);
222 * Fetch a single item row
224 * @param mixed $stmt statement object
225 * @return array current row
227 public static function fetch($stmt)
229 $row = DBA::fetch($stmt);
235 // ---------------------- Transform item structure data ----------------------
237 // We prefer the data from the user's contact over the public one
238 if (!empty($row['author-link']) && !empty($row['contact-link']) &&
239 ($row['author-link'] == $row['contact-link'])) {
240 if (isset($row['author-avatar']) && !empty($row['contact-avatar'])) {
241 $row['author-avatar'] = $row['contact-avatar'];
243 if (isset($row['author-name']) && !empty($row['contact-name'])) {
244 $row['author-name'] = $row['contact-name'];
248 if (!empty($row['owner-link']) && !empty($row['contact-link']) &&
249 ($row['owner-link'] == $row['contact-link'])) {
250 if (isset($row['owner-avatar']) && !empty($row['contact-avatar'])) {
251 $row['owner-avatar'] = $row['contact-avatar'];
253 if (isset($row['owner-name']) && !empty($row['contact-name'])) {
254 $row['owner-name'] = $row['contact-name'];
258 // We can always comment on posts from these networks
259 if (array_key_exists('writable', $row) &&
260 in_array($row['internal-network'], Protocol::FEDERATED)) {
261 $row['writable'] = true;
264 // ---------------------- Transform item content data ----------------------
266 // Fetch data from the item-content table whenever there is content there
267 if (self::isLegacyMode()) {
268 $legacy_fields = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, self::MIXED_CONTENT_FIELDLIST);
269 foreach ($legacy_fields as $field) {
270 if (empty($row[$field]) && !empty($row['internal-item-' . $field])) {
271 $row[$field] = $row['internal-item-' . $field];
273 unset($row['internal-item-' . $field]);
277 if (array_key_exists('verb', $row)) {
278 if (!is_null($row['internal-verb'])) {
279 $row['verb'] = $row['internal-verb'];
282 if (in_array($row['verb'], self::ACTIVITIES)) {
283 if (array_key_exists('title', $row)) {
286 if (array_key_exists('body', $row)) {
287 $row['body'] = $row['verb'];
289 if (array_key_exists('object', $row)) {
292 if (array_key_exists('object-type', $row)) {
293 $row['object-type'] = Activity\ObjectType::NOTE;
295 } elseif (in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
296 // Posts don't have a target - but having tags or files.
297 if (array_key_exists('target', $row)) {
303 if (array_key_exists('vid', $row) && is_null($row['vid']) && !empty($row['verb'])) {
304 $row['vid'] = Verb::getID($row['verb']);
307 if (!array_key_exists('verb', $row) || in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
308 // Build the file string out of the term entries
309 if (array_key_exists('file', $row) && empty($row['file'])) {
310 $row['file'] = Category::getTextByURIId($row['internal-uri-id'], $row['internal-uid']);
314 if ($row['internal-psid'] == RepPermissionSet::PUBLIC) {
315 if (array_key_exists('allow_cid', $row)) {
316 $row['allow_cid'] = '';
318 if (array_key_exists('allow_gid', $row)) {
319 $row['allow_gid'] = '';
321 if (array_key_exists('deny_cid', $row)) {
322 $row['deny_cid'] = '';
324 if (array_key_exists('deny_gid', $row)) {
325 $row['deny_gid'] = '';
329 if (array_key_exists('ignored', $row) && array_key_exists('internal-user-ignored', $row) && !is_null($row['internal-user-ignored'])) {
330 $row['ignored'] = $row['internal-user-ignored'];
333 // Remove internal fields
334 unset($row['internal-network']);
335 unset($row['internal-uri-id']);
336 unset($row['internal-uid']);
337 unset($row['internal-psid']);
338 unset($row['internal-verb']);
339 unset($row['internal-user-ignored']);
340 unset($row['interaction']);
346 * Fills an array with data from an item query
348 * @param object $stmt statement object
349 * @param bool $do_close
350 * @return array Data array
352 public static function inArray($stmt, $do_close = true) {
353 if (is_bool($stmt)) {
358 while ($row = self::fetch($stmt)) {
368 * Check if item data exists
370 * @param array $condition array of fields for condition
372 * @return boolean Are there rows for that condition?
375 public static function exists($condition) {
376 $stmt = self::select(['id'], $condition, ['limit' => 1]);
378 if (is_bool($stmt)) {
381 $retval = (DBA::numRows($stmt) > 0);
390 * Retrieve a single record from the item table for a given user and returns it in an associative array
392 * @param integer $uid User ID
393 * @param array $selected
394 * @param array $condition
395 * @param array $params
400 public static function selectFirstForUser($uid, array $selected = [], array $condition = [], $params = [])
402 $params['uid'] = $uid;
404 if (empty($selected)) {
405 $selected = Item::DISPLAY_FIELDLIST;
408 return self::selectFirst($selected, $condition, $params);
412 * Select rows from the item table for a given user
414 * @param integer $uid User ID
415 * @param array $selected Array of selected fields, empty for all
416 * @param array $condition Array of fields for condition
417 * @param array $params Array of several parameters
419 * @return boolean|object
422 public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [])
424 $params['uid'] = $uid;
426 if (empty($selected)) {
427 $selected = Item::DISPLAY_FIELDLIST;
430 return self::select($selected, $condition, $params);
434 * Retrieve a single record from the item table and returns it in an associative array
436 * @param array $fields
437 * @param array $condition
438 * @param array $params
443 public static function selectFirst(array $fields = [], array $condition = [], $params = [])
445 $params['limit'] = 1;
447 $result = self::select($fields, $condition, $params);
449 if (is_bool($result)) {
452 $row = self::fetch($result);
459 * Select rows from the item table and returns them as an array
461 * @param array $selected Array of selected fields, empty for all
462 * @param array $condition Array of fields for condition
463 * @param array $params Array of several parameters
468 public static function selectToArray(array $fields = [], array $condition = [], $params = [])
470 $result = self::select($fields, $condition, $params);
472 if (is_bool($result)) {
477 while ($row = self::fetch($result)) {
486 * Select rows from the item table
488 * @param array $selected Array of selected fields, empty for all
489 * @param array $condition Array of fields for condition
490 * @param array $params Array of several parameters
492 * @return boolean|object
495 public static function select(array $selected = [], array $condition = [], $params = [])
500 if (isset($params['uid'])) {
501 $uid = $params['uid'];
505 $fields = self::fieldlist($usermode);
507 $select_fields = self::constructSelectFields($fields, $selected);
509 $condition_string = DBA::buildCondition($condition);
511 $condition_string = self::addTablesToFields($condition_string, $fields);
514 $condition_string = $condition_string . ' AND ' . self::condition(false);
517 $param_string = self::addTablesToFields(DBA::buildParameter($params), $fields);
519 $table = "`item` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, false, $usermode);
521 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
523 return DBA::p($sql, $condition);
527 * Select rows from the starting post in the item table
529 * @param integer $uid User ID
530 * @param array $selected
531 * @param array $condition Array of fields for condition
532 * @param array $params Array of several parameters
534 * @return boolean|object
537 public static function selectThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
539 $params['uid'] = $uid;
541 if (empty($selected)) {
542 $selected = Item::DISPLAY_FIELDLIST;
545 return self::selectThread($selected, $condition, $params);
549 * Retrieve a single record from the starting post in the item table and returns it in an associative array
551 * @param integer $uid User ID
552 * @param array $selected
553 * @param array $condition
554 * @param array $params
559 public static function selectFirstThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
561 $params['uid'] = $uid;
563 if (empty($selected)) {
564 $selected = Item::DISPLAY_FIELDLIST;
567 return self::selectFirstThread($selected, $condition, $params);
571 * Retrieve a single record from the starting post in the item table and returns it in an associative array
573 * @param array $fields
574 * @param array $condition
575 * @param array $params
580 public static function selectFirstThread(array $fields = [], array $condition = [], $params = [])
582 $params['limit'] = 1;
583 $result = self::selectThread($fields, $condition, $params);
585 if (is_bool($result)) {
588 $row = self::fetch($result);
595 * Select rows from the starting post in the item table
597 * @param array $selected Array of selected fields, empty for all
598 * @param array $condition Array of fields for condition
599 * @param array $params Array of several parameters
601 * @return boolean|object
604 public static function selectThread(array $selected = [], array $condition = [], $params = [])
609 if (isset($params['uid'])) {
610 $uid = $params['uid'];
614 $fields = self::fieldlist($usermode);
616 $fields['thread'] = ['mention', 'ignored', 'iid'];
618 $threadfields = ['thread' => ['iid', 'uid', 'contact-id', 'owner-id', 'author-id',
619 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private',
620 'pubmail', 'moderated', 'visible', 'starred', 'ignored', 'post-type',
621 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'network']];
623 $select_fields = self::constructSelectFields($fields, $selected);
625 $condition_string = DBA::buildCondition($condition);
627 $condition_string = self::addTablesToFields($condition_string, $threadfields);
628 $condition_string = self::addTablesToFields($condition_string, $fields);
631 $condition_string = $condition_string . ' AND ' . self::condition(true);
634 $param_string = DBA::buildParameter($params);
635 $param_string = self::addTablesToFields($param_string, $threadfields);
636 $param_string = self::addTablesToFields($param_string, $fields);
638 $table = "`thread` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, true, $usermode);
640 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
642 return DBA::p($sql, $condition);
646 * Returns a list of fields that are associated with the item table
649 * @return array field list
651 private static function fieldlist($usermode)
655 $fields['item'] = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent',
656 'guid', 'uri-id', 'parent-uri-id', 'thr-parent-id', 'vid',
657 'contact-id', 'owner-id', 'author-id', 'type', 'wall', 'gravity', 'extid',
658 'created', 'edited', 'commented', 'received', 'changed', 'psid',
659 'resource-id', 'event-id', 'attach', 'post-type', 'file',
660 'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
661 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global',
662 'id' => 'item_id', 'network', 'icid',
663 'uri-id' => 'internal-uri-id', 'uid' => 'internal-uid',
664 'network' => 'internal-network', 'psid' => 'internal-psid'];
667 $fields['user-item'] = ['pinned', 'notification-type', 'ignored' => 'internal-user-ignored'];
670 $fields['item-content'] = array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST);
672 $fields['post-delivery-data'] = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, Post\DeliveryData::FIELD_LIST);
674 $fields['verb'] = ['name' => 'internal-verb'];
676 $fields['permissionset'] = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
678 $fields['author'] = ['url' => 'author-link', 'name' => 'author-name', 'addr' => 'author-addr',
679 'thumb' => 'author-avatar', 'nick' => 'author-nick', 'network' => 'author-network'];
681 $fields['owner'] = ['url' => 'owner-link', 'name' => 'owner-name', 'addr' => 'owner-addr',
682 'thumb' => 'owner-avatar', 'nick' => 'owner-nick', 'network' => 'owner-network'];
684 $fields['contact'] = ['url' => 'contact-link', 'name' => 'contact-name', 'thumb' => 'contact-avatar',
685 'writable', 'self', 'id' => 'cid', 'alias', 'uid' => 'contact-uid',
686 'photo', 'name-date', 'uri-date', 'avatar-date', 'thumb', 'dfrn-id'];
688 $fields['parent-item'] = ['guid' => 'parent-guid', 'network' => 'parent-network'];
690 $fields['parent-item-author'] = ['url' => 'parent-author-link', 'name' => 'parent-author-name',
691 'network' => 'parent-author-network'];
693 $fields['event'] = ['created' => 'event-created', 'edited' => 'event-edited',
694 'start' => 'event-start','finish' => 'event-finish',
695 'summary' => 'event-summary','desc' => 'event-desc',
696 'location' => 'event-location', 'type' => 'event-type',
697 'nofinish' => 'event-nofinish','adjust' => 'event-adjust',
698 'ignore' => 'event-ignore', 'id' => 'event-id'];
700 $fields['diaspora-interaction'] = ['interaction', 'interaction' => 'signed_text'];
706 * Returns SQL condition for the "select" functions
708 * @param boolean $thread_mode Called for the items (false) or for the threads (true)
710 * @return string SQL condition
712 private static function condition($thread_mode)
715 $master_table = "`thread`";
717 $master_table = "`item`";
719 return sprintf("$master_table.`visible` AND NOT $master_table.`deleted` AND NOT $master_table.`moderated`
720 AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
721 AND (`user-author`.`blocked` IS NULL OR NOT `user-author`.`blocked`)
722 AND (`user-author`.`ignored` IS NULL OR NOT `user-author`.`ignored` OR `item`.`gravity` != %d)
723 AND (`user-owner`.`blocked` IS NULL OR NOT `user-owner`.`blocked`)
724 AND (`user-owner`.`ignored` IS NULL OR NOT `user-owner`.`ignored` OR `item`.`gravity` != %d) ",
725 GRAVITY_PARENT, GRAVITY_PARENT);
729 * Returns all needed "JOIN" commands for the "select" functions
731 * @param integer $uid User ID
732 * @param string $sql_commands The parts of the built SQL commands in the "select" functions
733 * @param boolean $thread_mode Called for the items (false) or for the threads (true)
736 * @return string The SQL joins for the "select" functions
738 private static function constructJoins($uid, $sql_commands, $thread_mode, $user_mode)
741 $master_table = "`thread`";
742 $master_table_key = "`thread`.`iid`";
743 $joins = "STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` ";
745 $master_table = "`item`";
746 $master_table_key = "`item`.`id`";
751 $joins .= sprintf("STRAIGHT_JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`
752 AND NOT `contact`.`blocked`
753 AND ((NOT `contact`.`readonly` AND NOT `contact`.`pending` AND (`contact`.`rel` IN (%s, %s)))
754 OR `contact`.`self` OR `item`.`gravity` != %d OR `contact`.`uid` = 0)
755 STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id` AND NOT `author`.`blocked`
756 STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id` AND NOT `owner`.`blocked`
757 LEFT JOIN `user-item` ON `user-item`.`iid` = $master_table_key AND `user-item`.`uid` = %d
758 LEFT JOIN `user-contact` AS `user-author` ON `user-author`.`cid` = $master_table.`author-id` AND `user-author`.`uid` = %d
759 LEFT JOIN `user-contact` AS `user-owner` ON `user-owner`.`cid` = $master_table.`owner-id` AND `user-owner`.`uid` = %d",
760 Contact::SHARING, Contact::FRIEND, GRAVITY_PARENT, intval($uid), intval($uid), intval($uid));
762 if (strpos($sql_commands, "`contact`.") !== false) {
763 $joins .= "LEFT JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`";
765 if (strpos($sql_commands, "`author`.") !== false) {
766 $joins .= " LEFT JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id`";
768 if (strpos($sql_commands, "`owner`.") !== false) {
769 $joins .= " LEFT JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id`";
773 if (strpos($sql_commands, "`group_member`.") !== false) {
774 $joins .= " STRAIGHT_JOIN `group_member` ON `group_member`.`contact-id` = $master_table.`contact-id`";
777 if (strpos($sql_commands, "`user`.") !== false) {
778 $joins .= " STRAIGHT_JOIN `user` ON `user`.`uid` = $master_table.`uid`";
781 if (strpos($sql_commands, "`event`.") !== false) {
782 $joins .= " LEFT JOIN `event` ON `event-id` = `event`.`id`";
785 if (strpos($sql_commands, "`diaspora-interaction`.") !== false) {
786 $joins .= " LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `item`.`uri-id`";
789 if (strpos($sql_commands, "`item-content`.") !== false) {
790 $joins .= " LEFT JOIN `item-content` ON `item-content`.`uri-id` = `item`.`uri-id`";
793 if (strpos($sql_commands, "`post-delivery-data`.") !== false) {
794 $joins .= " LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `item`.`uri-id` AND `item`.`origin`";
797 if (strpos($sql_commands, "`verb`.") !== false) {
798 $joins .= " LEFT JOIN `verb` ON `verb`.`id` = `item`.`vid`";
801 if (strpos($sql_commands, "`permissionset`.") !== false) {
802 $joins .= " LEFT JOIN `permissionset` ON `permissionset`.`id` = `item`.`psid`";
805 if ((strpos($sql_commands, "`parent-item`.") !== false) || (strpos($sql_commands, "`parent-item-author`.") !== false)) {
806 $joins .= " STRAIGHT_JOIN `item` AS `parent-item` ON `parent-item`.`id` = `item`.`parent`";
808 if (strpos($sql_commands, "`parent-item-author`.") !== false) {
809 $joins .= " STRAIGHT_JOIN `contact` AS `parent-item-author` ON `parent-item-author`.`id` = `parent-item`.`author-id`";
817 * Add the field list for the "select" functions
819 * @param array $fields The field definition array
820 * @param array $selected The array with the selected fields from the "select" functions
822 * @return string The field list
824 private static function constructSelectFields(array $fields, array $selected)
826 if (!empty($selected)) {
827 $selected = array_merge($selected, ['internal-uri-id', 'internal-uid', 'internal-psid', 'internal-network']);
830 if (in_array('verb', $selected)) {
831 $selected = array_merge($selected, ['internal-verb']);
834 if (in_array('ignored', $selected)) {
835 $selected[] = 'internal-user-ignored';
838 $legacy_fields = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, self::MIXED_CONTENT_FIELDLIST);
841 foreach ($fields as $table => $table_fields) {
842 foreach ($table_fields as $field => $select) {
843 if (empty($selected) || in_array($select, $selected)) {
844 if (self::isLegacyMode() && in_array($select, $legacy_fields)) {
845 $selection[] = "`item`.`".$select."` AS `internal-item-" . $select . "`";
847 if (is_int($field)) {
848 $selection[] = "`" . $table . "`.`" . $select . "`";
850 $selection[] = "`" . $table . "`.`" . $field . "` AS `" . $select . "`";
855 return implode(", ", $selection);
859 * add table definition to fields in an SQL query
861 * @param string $query SQL query
862 * @param array $fields The field definition array
864 * @return string the changed SQL query
866 private static function addTablesToFields($query, $fields)
868 foreach ($fields as $table => $table_fields) {
869 foreach ($table_fields as $alias => $field) {
870 if (is_int($alias)) {
871 $replace_field = $field;
873 $replace_field = $alias;
876 $search = "/([^\.])`" . $field . "`/i";
877 $replace = "$1`" . $table . "`.`" . $replace_field . "`";
878 $query = preg_replace($search, $replace, $query);
885 * Update existing item entries
887 * @param array $fields The fields that are to be changed
888 * @param array $condition The condition for finding the item entries
890 * In the future we may have to change permissions as well.
891 * Then we had to add the user id as third parameter.
893 * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
895 * @return integer|boolean number of affected rows - or "false" if there was an error
896 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
898 public static function update(array $fields, array $condition)
900 if (empty($condition) || empty($fields)) {
904 // To ensure the data integrity we do it in an transaction
907 // We cannot simply expand the condition to check for origin entries
908 // The condition needn't to be a simple array but could be a complex condition.
909 // And we have to execute this query before the update to ensure to fetch the same data.
910 $items = DBA::select('item', ['id', 'origin', 'uri', 'uri-id', 'icid', 'uid', 'file'], $condition);
912 $content_fields = [];
913 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
914 if (isset($fields[$field])) {
915 $content_fields[$field] = $fields[$field];
916 if (in_array($field, self::CONTENT_FIELDLIST) || !self::isLegacyMode()) {
917 unset($fields[$field]);
919 $fields[$field] = null;
924 $delivery_data = Post\DeliveryData::extractFields($fields);
926 $clear_fields = ['bookmark', 'type', 'author-name', 'author-avatar', 'author-link', 'owner-name', 'owner-avatar', 'owner-link', 'postopts', 'inform'];
927 foreach ($clear_fields as $field) {
928 if (array_key_exists($field, $fields)) {
929 $fields[$field] = null;
933 if (array_key_exists('file', $fields)) {
934 $files = $fields['file'];
935 $fields['file'] = null;
940 if (!empty($content_fields['verb'])) {
941 $fields['vid'] = Verb::getID($content_fields['verb']);
944 if (!empty($fields)) {
945 $success = DBA::update('item', $fields, $condition);
954 // When there is no content for the "old" item table, this will count the fetched items
955 $rows = DBA::affectedRows();
959 while ($item = DBA::fetch($items)) {
960 if (empty($content_fields['verb']) || !in_array($content_fields['verb'], self::ACTIVITIES)) {
961 self::updateContent($content_fields, ['uri-id' => $item['uri-id']]);
963 if (empty($item['icid'])) {
964 $item_content = DBA::selectFirst('item-content', [], ['uri-id' => $item['uri-id']]);
965 if (DBA::isResult($item_content)) {
966 $item_fields = ['icid' => $item_content['id']];
967 // Clear all fields in the item table that have a content in the item-content table
968 if (self::isLegacyMode()) {
969 foreach ($item_content as $field => $content) {
970 if (in_array($field, self::MIXED_CONTENT_FIELDLIST) && !empty($content)) {
971 $item_fields[$field] = null;
975 DBA::update('item', $item_fields, ['id' => $item['id']]);
980 if (!is_null($files)) {
981 Category::storeTextByURIId($item['uri-id'], $item['uid'], $files);
982 if (!empty($item['file'])) {
983 DBA::update('item', ['file' => ''], ['id' => $item['id']]);
987 Post\DeliveryData::update($item['uri-id'], $delivery_data);
989 self::updateThread($item['id']);
991 // We only need to notfiy others when it is an original entry from us.
992 // Only call the notifier when the item has some content relevant change.
993 if ($item['origin'] && in_array('edited', array_keys($fields))) {
994 $notify_items[] = $item['id'];
1001 foreach ($notify_items as $notify_item) {
1002 Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $notify_item);
1009 * Delete an item and notify others about it - if it was ours
1011 * @param array $condition The condition for finding the item entries
1012 * @param integer $priority Priority for the notification
1013 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1015 public static function markForDeletion($condition, $priority = PRIORITY_HIGH)
1017 $items = self::select(['id'], $condition);
1018 while ($item = self::fetch($items)) {
1019 self::markForDeletionById($item['id'], $priority);
1025 * Delete an item for an user and notify others about it - if it was ours
1027 * @param array $condition The condition for finding the item entries
1028 * @param integer $uid User who wants to delete this item
1029 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1031 public static function deleteForUser($condition, $uid)
1037 $items = self::select(['id', 'uid'], $condition);
1038 while ($item = self::fetch($items)) {
1039 // "Deleting" global items just means hiding them
1040 if ($item['uid'] == 0) {
1041 DBA::update('user-item', ['hidden' => true], ['iid' => $item['id'], 'uid' => $uid], true);
1043 // Delete notifications
1044 DBA::delete('notify', ['iid' => $item['id'], 'uid' => $uid]);
1045 } elseif ($item['uid'] == $uid) {
1046 self::markForDeletionById($item['id'], PRIORITY_HIGH);
1048 Logger::log('Wrong ownership. Not deleting item ' . $item['id']);
1055 * Mark an item for deletion, delete related data and notify others about it - if it was ours
1057 * @param integer $item_id
1058 * @param integer $priority Priority for the notification
1060 * @return boolean success
1061 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1063 public static function markForDeletionById($item_id, $priority = PRIORITY_HIGH)
1065 Logger::info('Mark item for deletion by id', ['id' => $item_id, 'callstack' => System::callstack()]);
1066 // locate item to be deleted
1067 $fields = ['id', 'uri', 'uri-id', 'uid', 'parent', 'parent-uri', 'origin',
1068 'deleted', 'file', 'resource-id', 'event-id', 'attach',
1069 'verb', 'object-type', 'object', 'target', 'contact-id',
1070 'icid', 'psid', 'gravity'];
1071 $item = self::selectFirst($fields, ['id' => $item_id]);
1072 if (!DBA::isResult($item)) {
1073 Logger::info('Item not found.', ['id' => $item_id]);
1077 if ($item['deleted']) {
1078 Logger::info('Item has already been marked for deletion.', ['id' => $item_id]);
1082 $parent = self::selectFirst(['origin'], ['id' => $item['parent']]);
1083 if (!DBA::isResult($parent)) {
1084 $parent = ['origin' => false];
1087 // clean up categories and tags so they don't end up as orphans
1090 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
1093 foreach ($matches as $mtch) {
1094 FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],true);
1100 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
1103 foreach ($matches as $mtch) {
1104 FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],false);
1109 * If item is a link to a photo resource, nuke all the associated photos
1110 * (visitors will not have photo resources)
1111 * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
1112 * generate a resource-id and therefore aren't intimately linked to the item.
1114 /// @TODO: this should first check if photo is used elsewhere
1115 if (strlen($item['resource-id'])) {
1116 Photo::delete(['resource-id' => $item['resource-id'], 'uid' => $item['uid']]);
1119 // If item is a link to an event, delete the event.
1120 if (intval($item['event-id'])) {
1121 Event::delete($item['event-id']);
1124 // If item has attachments, drop them
1125 /// @TODO: this should first check if attachment is used elsewhere
1126 foreach (explode(",", $item['attach']) as $attach) {
1127 preg_match("|attach/(\d+)|", $attach, $matches);
1128 if (is_array($matches) && count($matches) > 1) {
1129 Attach::delete(['id' => $matches[1], 'uid' => $item['uid']]);
1133 // Delete notifications
1134 DBA::delete('notify', ['iid' => $item['id'], 'uid' => $item['uid']]);
1136 // Set the item to "deleted"
1137 $item_fields = ['deleted' => true, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
1138 DBA::update('item', $item_fields, ['id' => $item['id']]);
1140 Category::storeTextByURIId($item['uri-id'], $item['uid'], '');
1141 self::deleteThread($item['id'], $item['parent-uri']);
1143 if (!self::exists(["`uri` = ? AND `uid` != 0 AND NOT `deleted`", $item['uri']])) {
1144 self::markForDeletion(['uri' => $item['uri'], 'uid' => 0, 'deleted' => false], $priority);
1147 Post\DeliveryData::delete($item['uri-id']);
1149 if (!empty($item['icid']) && !self::exists(['icid' => $item['icid'], 'deleted' => false])) {
1150 DBA::delete('item-content', ['id' => $item['icid']], ['cascade' => false]);
1152 // When the permission set will be used in photo and events as well,
1153 // this query here needs to be extended.
1154 // @todo Currently deactivated. We need the permission set in the deletion process.
1155 // This is a reminder to add the removal somewhere else.
1156 //if (!empty($item['psid']) && !self::exists(['psid' => $item['psid'], 'deleted' => false])) {
1157 // DBA::delete('permissionset', ['id' => $item['psid']], ['cascade' => false]);
1160 // If it's the parent of a comment thread, kill all the kids
1161 if ($item['gravity'] == GRAVITY_PARENT) {
1162 self::markForDeletion(['parent' => $item['parent'], 'deleted' => false], $priority);
1165 // Is it our comment and/or our thread?
1166 if ($item['origin'] || $parent['origin']) {
1167 // When we delete the original post we will delete all existing copies on the server as well
1168 self::markForDeletion(['uri' => $item['uri'], 'deleted' => false], $priority);
1170 // send the notification upstream/downstream
1171 Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", Delivery::DELETION, intval($item['id']));
1172 } elseif ($item['uid'] != 0) {
1174 // When we delete just our local user copy of an item, we have to set a marker to hide it
1175 $global_item = self::selectFirst(['id'], ['uri' => $item['uri'], 'uid' => 0, 'deleted' => false]);
1176 if (DBA::isResult($global_item)) {
1177 DBA::update('user-item', ['hidden' => true], ['iid' => $global_item['id'], 'uid' => $item['uid']], true);
1181 Logger::info('Item has been marked for deletion.', ['id' => $item_id]);
1187 private static function guid($item, $notify)
1189 if (!empty($item['guid'])) {
1190 return Strings::escapeTags(trim($item['guid']));
1194 // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
1195 // We add the hash of our own host because our host is the original creator of the post.
1196 $prefix_host = DI::baseUrl()->getHostname();
1200 // We are only storing the post so we create a GUID from the original hostname.
1201 if (!empty($item['author-link'])) {
1202 $parsed = parse_url($item['author-link']);
1203 if (!empty($parsed['host'])) {
1204 $prefix_host = $parsed['host'];
1208 if (empty($prefix_host) && !empty($item['plink'])) {
1209 $parsed = parse_url($item['plink']);
1210 if (!empty($parsed['host'])) {
1211 $prefix_host = $parsed['host'];
1215 if (empty($prefix_host) && !empty($item['uri'])) {
1216 $parsed = parse_url($item['uri']);
1217 if (!empty($parsed['host'])) {
1218 $prefix_host = $parsed['host'];
1222 // Is it in the format data@host.tld? - Used for mail contacts
1223 if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
1224 $mailparts = explode('@', $item['author-link']);
1225 $prefix_host = array_pop($mailparts);
1229 if (!empty($item['plink'])) {
1230 $guid = self::guidFromUri($item['plink'], $prefix_host);
1231 } elseif (!empty($item['uri'])) {
1232 $guid = self::guidFromUri($item['uri'], $prefix_host);
1234 $guid = System::createUUID(hash('crc32', $prefix_host));
1240 private static function contactId($item)
1242 if (!empty($item['contact-id']) && DBA::exists('contact', ['self' => true, 'id' => $item['contact-id']])) {
1243 return $item['contact-id'];
1244 } elseif (($item['gravity'] == GRAVITY_PARENT) && !empty($item['uid']) && !empty($item['contact-id']) && Contact::isSharing($item['contact-id'], $item['uid'])) {
1245 return $item['contact-id'];
1246 } elseif (!empty($item['uid']) && !Contact::isSharing($item['author-id'], $item['uid'])) {
1247 return $item['author-id'];
1248 } elseif (!empty($item['contact-id'])) {
1249 return $item['contact-id'];
1251 $contact_id = Contact::getIdForURL($item['author-link'], $item['uid']);
1252 if (!empty($contact_id)) {
1256 return $item['author-id'];
1259 // This function will finally cover most of the preparation functionality in mod/item.php
1260 public static function prepare(&$item)
1263 * @TODO: Unused code triggering inspection errors
1265 $data = BBCode::getAttachmentData($item['body']);
1266 if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $item['body'], $match, PREG_SET_ORDER) || isset($data["type"]))
1267 && ($posttype != Item::PT_PERSONAL_NOTE)) {
1268 $posttype = Item::PT_PAGE;
1269 $objecttype = ACTIVITY_OBJ_BOOKMARK;
1275 * Write an item array into a spool file to be inserted later.
1276 * This command is called whenever there are issues storing an item.
1278 * @param array $item The item fields that are to be inserted
1279 * @throws \Exception
1281 private static function spool($orig_item)
1283 // Now we store the data in the spool directory
1284 // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
1285 $file = 'item-' . round(microtime(true) * 10000) . '-' . mt_rand() . '.msg';
1287 $spoolpath = get_spoolpath();
1288 if ($spoolpath != "") {
1289 $spool = $spoolpath . '/' . $file;
1291 file_put_contents($spool, json_encode($orig_item));
1292 Logger::warning("Item wasn't stored - Item was spooled into file", ['file' => $file]);
1297 * Check if the item array is a duplicate
1299 * @param array $item
1300 * @return boolean is it a duplicate?
1302 private static function isDuplicate(array $item)
1304 // Checking if there is already an item with the same guid
1305 $condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
1306 if (self::exists($condition)) {
1307 Logger::notice('Found already existing item', [
1308 'guid' => $item['guid'],
1309 'uid' => $item['uid'],
1310 'network' => $item['network']
1315 $condition = ["`uri` = ? AND `network` IN (?, ?) AND `uid` = ?",
1316 $item['uri'], $item['network'], Protocol::DFRN, $item['uid']];
1317 if (self::exists($condition)) {
1318 Logger::notice('duplicated item with the same uri found.', $item);
1322 // On Friendica and Diaspora the GUID is unique
1323 if (in_array($item['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
1324 $condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
1325 if (self::exists($condition)) {
1326 Logger::notice('duplicated item with the same guid found.', $item);
1329 } elseif ($item['network'] == Protocol::OSTATUS) {
1330 // Check for an existing post with the same content. There seems to be a problem with OStatus.
1331 $condition = ["`body` = ? AND `network` = ? AND `created` = ? AND `contact-id` = ? AND `uid` = ?",
1332 $item['body'], $item['network'], $item['created'], $item['contact-id'], $item['uid']];
1333 if (self::exists($condition)) {
1334 Logger::notice('duplicated item with the same body found.', $item);
1340 * Check for already added items.
1341 * There is a timing issue here that sometimes creates double postings.
1342 * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
1344 if (($item['uid'] == 0) && self::exists(['uri' => trim($item['uri']), 'uid' => 0])) {
1345 Logger::notice('Global item already stored.', ['uri' => $item['uri'], 'network' => $item['network']]);
1353 * Check if the item array is valid
1355 * @param array $item
1356 * @return boolean item is valid
1358 private static function isValid(array $item)
1360 // When there is no content then we don't post it
1361 if ($item['body'].$item['title'] == '') {
1362 Logger::notice('No body, no title.');
1366 // check for create date and expire time
1367 $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0);
1369 $user = DBA::selectFirst('user', ['expire'], ['uid' => $item['uid']]);
1370 if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
1371 $expire_interval = $user['expire'];
1374 if (($expire_interval > 0) && !empty($item['created'])) {
1375 $expire_date = time() - ($expire_interval * 86400);
1376 $created_date = strtotime($item['created']);
1377 if ($created_date < $expire_date) {
1378 Logger::notice('Item created before expiration interval.', [
1379 'created' => date('c', $created_date),
1380 'expired' => date('c', $expire_date),
1387 if (Contact::isBlocked($item['author-id'])) {
1388 Logger::notice('Author is blocked node-wide', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
1392 if (!empty($item['author-link']) && Network::isUrlBlocked($item['author-link'])) {
1393 Logger::notice('Author server is blocked', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
1397 if (!empty($item['uid']) && Contact::isBlockedByUser($item['author-id'], $item['uid'])) {
1398 Logger::notice('Author is blocked by user', ['author-link' => $item['author-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1402 if (Contact::isBlocked($item['owner-id'])) {
1403 Logger::notice('Owner is blocked node-wide', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
1407 if (!empty($item['owner-link']) && Network::isUrlBlocked($item['owner-link'])) {
1408 Logger::notice('Owner server is blocked', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
1412 if (!empty($item['uid']) && Contact::isBlockedByUser($item['owner-id'], $item['uid'])) {
1413 Logger::notice('Owner is blocked by user', ['owner-link' => $item['owner-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1417 // The causer is set during a thread completion, for example because of a reshare. It countains the responsible actor.
1418 if (!empty($item['uid']) && !empty($item['causer-id']) && Contact::isBlockedByUser($item['causer-id'], $item['uid'])) {
1419 Logger::notice('Causer is blocked by user', ['causer-link' => $item['causer-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1423 if (!empty($item['uid']) && !empty($item['causer-id']) && ($item['parent-uri'] == $item['uri']) && Contact::isIgnoredByUser($item['causer-id'], $item['uid'])) {
1424 Logger::notice('Causer is ignored by user', ['causer-link' => $item['causer-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1428 if ($item['verb'] == Activity::FOLLOW) {
1429 if (!$item['origin'] && ($item['author-id'] == Contact::getPublicIdByUserId($item['uid']))) {
1430 // Our own follow request can be relayed to us. We don't store it to avoid notification chaos.
1431 Logger::info("Follow: Don't store not origin follow request", ['parent-uri' => $item['parent-uri']]);
1435 $condition = ['verb' => Activity::FOLLOW, 'uid' => $item['uid'],
1436 'parent-uri' => $item['parent-uri'], 'author-id' => $item['author-id']];
1437 if (self::exists($condition)) {
1438 // It happens that we receive multiple follow requests by the same author - we only store one.
1439 Logger::info('Follow: Found existing follow request from author', ['author-id' => $item['author-id'], 'parent-uri' => $item['parent-uri']]);
1448 * Return the id of the given item array if it has been stored before
1450 * @param array $item
1451 * @return integer item id
1453 private static function getDuplicateID(array $item)
1455 if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
1456 $condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?, ?)",
1457 trim($item['uri']), $item['uid'],
1458 Protocol::ACTIVITYPUB, Protocol::DIASPORA, Protocol::DFRN, Protocol::OSTATUS];
1459 $existing = self::selectFirst(['id', 'network'], $condition);
1460 if (DBA::isResult($existing)) {
1461 // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
1462 if ($item['uid'] != 0) {
1463 Logger::notice('Item already existed for user', [
1464 'uri' => $item['uri'],
1465 'uid' => $item['uid'],
1466 'network' => $item['network'],
1467 'existing_id' => $existing["id"],
1468 'existing_network' => $existing["network"]
1472 return $existing["id"];
1479 * Fetch parent data for the given item array
1481 * @param array $item
1482 * @return array item array with parent data
1484 private static function getParentData(array $item)
1486 // find the parent and snarf the item id and ACLs
1487 // and anything else we need to inherit
1489 $fields = ['uri', 'parent-uri', 'id', 'deleted',
1490 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
1491 'wall', 'private', 'forum_mode', 'origin', 'author-id'];
1492 $condition = ['uri' => $item['parent-uri'], 'uid' => $item['uid']];
1493 $params = ['order' => ['id' => false]];
1494 $parent = self::selectFirst($fields, $condition, $params);
1496 if (!DBA::isResult($parent)) {
1497 Logger::info('item parent was not found - ignoring item', ['parent-uri' => $item['parent-uri'], 'uid' => $item['uid']]);
1500 // is the new message multi-level threaded?
1501 // even though we don't support it now, preserve the info
1502 // and re-attach to the conversation parent.
1503 if ($parent['uri'] != $parent['parent-uri']) {
1504 $item['parent-uri'] = $parent['parent-uri'];
1506 $condition = ['uri' => $item['parent-uri'],
1507 'parent-uri' => $item['parent-uri'],
1508 'uid' => $item['uid']];
1509 $params = ['order' => ['id' => false]];
1510 $toplevel_parent = self::selectFirst($fields, $condition, $params);
1512 if (DBA::isResult($toplevel_parent)) {
1513 $parent = $toplevel_parent;
1517 $item['parent'] = $parent['id'];
1518 $item["deleted"] = $parent['deleted'];
1519 $item["allow_cid"] = $parent['allow_cid'];
1520 $item['allow_gid'] = $parent['allow_gid'];
1521 $item['deny_cid'] = $parent['deny_cid'];
1522 $item['deny_gid'] = $parent['deny_gid'];
1523 $item['parent_origin'] = $parent['origin'];
1525 // Don't federate received participation messages
1526 if ($item['verb'] != Activity::FOLLOW) {
1527 $item['wall'] = $parent['wall'];
1529 $item['wall'] = false;
1533 * If the parent is private, force privacy for the entire conversation
1534 * This differs from the above settings as it subtly allows comments from
1535 * email correspondents to be private even if the overall thread is not.
1537 if ($parent['private']) {
1538 $item['private'] = $parent['private'];
1542 * Edge case. We host a public forum that was originally posted to privately.
1543 * The original author commented, but as this is a comment, the permissions
1544 * weren't fixed up so it will still show the comment as private unless we fix it here.
1546 if ((intval($parent['forum_mode']) == 1) && ($parent['private'] != self::PUBLIC)) {
1547 $item['private'] = self::PUBLIC;
1550 // If its a post that originated here then tag the thread as "mention"
1551 if ($item['origin'] && $item['uid']) {
1552 DBA::update('thread', ['mention' => true], ['iid' => $item['parent']]);
1553 Logger::info('tagged thread as mention', ['parent' => $item['parent'], 'uid' => $item['uid']]);
1556 // Update the contact relations
1557 if ($item['author-id'] != $parent['author-id']) {
1558 DBA::update('contact-relation', ['last-interaction' => $item['created']], ['cid' => $parent['author-id'], 'relation-cid' => $item['author-id']], true);
1566 * Get the gravity for the given item array
1568 * @param array $item
1569 * @return integer gravity
1571 private static function getGravity(array $item)
1573 $activity = DI::activity();
1575 if (isset($item['gravity'])) {
1576 return intval($item['gravity']);
1577 } elseif ($item['parent-uri'] === $item['uri']) {
1578 return GRAVITY_PARENT;
1579 } elseif ($activity->match($item['verb'], Activity::POST)) {
1580 return GRAVITY_COMMENT;
1581 } elseif ($activity->match($item['verb'], Activity::FOLLOW)) {
1582 return GRAVITY_ACTIVITY;
1584 Logger::info('Unknown gravity for verb', ['verb' => $item['verb']]);
1585 return GRAVITY_UNKNOWN; // Should not happen
1588 public static function insert($item, $notify = false, $dontcache = false)
1590 $structure = self::getItemFields();
1594 $priority = PRIORITY_HIGH;
1596 // If it is a posting where users should get notifications, then define it as wall posting
1599 $item['origin'] = 1;
1600 $item['network'] = Protocol::DFRN;
1601 $item['protocol'] = Conversation::PARCEL_DFRN;
1603 if (is_int($notify)) {
1604 $priority = $notify;
1607 $item['network'] = trim(($item['network'] ?? '') ?: Protocol::PHANTOM);
1610 $uid = intval($item['uid']);
1612 $item['guid'] = self::guid($item, $notify);
1613 $item['uri'] = substr(Strings::escapeTags(trim(($item['uri'] ?? '') ?: self::newURI($item['uid'], $item['guid']))), 0, 255);
1616 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
1618 // Store conversation data
1619 $item = Conversation::insert($item);
1621 if (!empty($item['thr-parent'])) {
1622 $item['parent-uri'] = $item['thr-parent'];
1626 * Do we already have this item?
1627 * We have to check several networks since Friendica posts could be repeated
1628 * via OStatus (maybe Diasporsa as well)
1630 $duplicate = self::getDuplicateID($item);
1635 // Additional duplicate checks
1636 /// @todo Check why the first duplication check returns the item number and the second a 0
1637 if (self::isDuplicate($item)) {
1641 $item['wall'] = intval($item['wall'] ?? 0);
1642 $item['extid'] = trim($item['extid'] ?? '');
1643 $item['author-name'] = trim($item['author-name'] ?? '');
1644 $item['author-link'] = trim($item['author-link'] ?? '');
1645 $item['author-avatar'] = trim($item['author-avatar'] ?? '');
1646 $item['owner-name'] = trim($item['owner-name'] ?? '');
1647 $item['owner-link'] = trim($item['owner-link'] ?? '');
1648 $item['owner-avatar'] = trim($item['owner-avatar'] ?? '');
1649 $item['received'] = (isset($item['received']) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
1650 $item['created'] = (isset($item['created']) ? DateTimeFormat::utc($item['created']) : $item['received']);
1651 $item['edited'] = (isset($item['edited']) ? DateTimeFormat::utc($item['edited']) : $item['created']);
1652 $item['changed'] = (isset($item['changed']) ? DateTimeFormat::utc($item['changed']) : $item['created']);
1653 $item['commented'] = (isset($item['commented']) ? DateTimeFormat::utc($item['commented']) : $item['created']);
1654 $item['title'] = substr(trim($item['title'] ?? ''), 0, 255);
1655 $item['location'] = trim($item['location'] ?? '');
1656 $item['coord'] = trim($item['coord'] ?? '');
1657 $item['visible'] = (isset($item['visible']) ? intval($item['visible']) : 1);
1658 $item['deleted'] = 0;
1659 $item['parent-uri'] = trim(($item['parent-uri'] ?? '') ?: $item['uri']);
1660 $item['post-type'] = ($item['post-type'] ?? '') ?: self::PT_ARTICLE;
1661 $item['verb'] = trim($item['verb'] ?? '');
1662 $item['object-type'] = trim($item['object-type'] ?? '');
1663 $item['object'] = trim($item['object'] ?? '');
1664 $item['target-type'] = trim($item['target-type'] ?? '');
1665 $item['target'] = trim($item['target'] ?? '');
1666 $item['plink'] = substr(trim($item['plink'] ?? ''), 0, 255);
1667 $item['allow_cid'] = trim($item['allow_cid'] ?? '');
1668 $item['allow_gid'] = trim($item['allow_gid'] ?? '');
1669 $item['deny_cid'] = trim($item['deny_cid'] ?? '');
1670 $item['deny_gid'] = trim($item['deny_gid'] ?? '');
1671 $item['private'] = intval($item['private'] ?? self::PUBLIC);
1672 $item['body'] = trim($item['body'] ?? '');
1673 $item['attach'] = trim($item['attach'] ?? '');
1674 $item['app'] = trim($item['app'] ?? '');
1675 $item['origin'] = intval($item['origin'] ?? 0);
1676 $item['postopts'] = trim($item['postopts'] ?? '');
1677 $item['resource-id'] = trim($item['resource-id'] ?? '');
1678 $item['event-id'] = intval($item['event-id'] ?? 0);
1679 $item['inform'] = trim($item['inform'] ?? '');
1680 $item['file'] = trim($item['file'] ?? '');
1682 // Items cannot be stored before they happen ...
1683 if ($item['created'] > DateTimeFormat::utcNow()) {
1684 $item['created'] = DateTimeFormat::utcNow();
1687 // We haven't invented time travel by now.
1688 if ($item['edited'] > DateTimeFormat::utcNow()) {
1689 $item['edited'] = DateTimeFormat::utcNow();
1692 $item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
1694 $item['language'] = self::getLanguage($item);
1696 $item['gravity'] = self::getGravity($item);
1698 $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
1699 'photo' => $item['author-avatar'], 'network' => $item['network']];
1700 $item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, null, $default);
1702 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
1703 'photo' => $item['owner-avatar'], 'network' => $item['network']];
1704 $item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, null, $default);
1706 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
1707 $item["contact-id"] = self::contactId($item);
1709 if (!self::isValid($item)) {
1713 // We don't store the causer, we only have it here for the checks in the function above
1714 unset($item['causer-id']);
1715 unset($item['causer-link']);
1717 // We don't store these fields anymore in the item table
1718 unset($item['author-link']);
1719 unset($item['author-name']);
1720 unset($item['author-avatar']);
1721 unset($item['author-network']);
1723 unset($item['owner-link']);
1724 unset($item['owner-name']);
1725 unset($item['owner-avatar']);
1727 $item['thr-parent'] = $item['parent-uri'];
1729 if ($item['parent-uri'] != $item['uri']) {
1730 $item = self::getParentData($item);
1735 $parent_id = $item['parent'];
1736 unset($item['parent']);
1737 $parent_origin = $item['parent_origin'];
1738 unset($item['parent_origin']);
1741 $parent_origin = $item['origin'];
1744 $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
1745 $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
1747 // Is this item available in the global items (with uid=0)?
1748 if ($item["uid"] == 0) {
1749 $item["global"] = true;
1751 // Set the global flag on all items if this was a global item entry
1752 DBA::update('item', ['global' => true], ['uri' => $item["uri"]]);
1754 $item["global"] = self::exists(['uid' => 0, 'uri' => $item["uri"]]);
1758 if (!empty($item["allow_cid"] . $item["allow_gid"] . $item["deny_cid"] . $item["deny_gid"])) {
1759 $item["private"] = self::PRIVATE;
1763 $item['edit'] = false;
1764 $item['parent'] = $parent_id;
1765 Hook::callAll('post_local', $item);
1766 unset($item['edit']);
1767 unset($item['parent']);
1769 Hook::callAll('post_remote', $item);
1772 if (!empty($item['cancel'])) {
1773 Logger::log('post cancelled by addon.');
1777 if (empty($item['vid']) && !empty($item['verb'])) {
1778 $item['vid'] = Verb::getID($item['verb']);
1781 // Creates or assigns the permission set
1782 $item['psid'] = PermissionSet::getIdFromACL(
1790 unset($item['allow_cid']);
1791 unset($item['allow_gid']);
1792 unset($item['deny_cid']);
1793 unset($item['deny_gid']);
1795 // This array field is used to trigger some automatic reactions
1796 // It is mainly used in the "post_local" hook.
1797 unset($item['api_source']);
1800 // Check for hashtags in the body and repair or add hashtag links
1801 $item['body'] = self::setHashtags($item['body']);
1803 // Fill the cache field
1804 self::putInCache($item);
1806 if (stristr($item['verb'], Activity::POKE)) {
1807 $notify_type = Delivery::POKE;
1809 $notify_type = Delivery::POST;
1812 $like_no_comment = DI::config()->get('system', 'like_no_comment');
1816 if (!in_array($item['verb'], self::ACTIVITIES)) {
1817 $item['icid'] = self::insertContent($item);
1820 $body = $item['body'];
1822 // We just remove everything that is content
1823 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1824 unset($item[$field]);
1827 unset($item['activity']);
1829 // Filling item related side tables
1831 // Diaspora signature
1832 if (!empty($item['diaspora_signed_text'])) {
1833 DBA::insert('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $item['diaspora_signed_text']], true);
1836 unset($item['diaspora_signed_text']);
1838 // Attached file links
1839 if (!empty($item['file'])) {
1840 Category::storeTextByURIId($item['uri-id'], $item['uid'], $item['file']);
1843 unset($item['file']);
1845 // Delivery relevant data
1846 $delivery_data = Post\DeliveryData::extractFields($item);
1847 unset($item['postopts']);
1848 unset($item['inform']);
1850 if (!empty($item['origin']) || !empty($item['wall']) || !empty($delivery_data['postopts']) || !empty($delivery_data['inform'])) {
1851 Post\DeliveryData::insert($item['uri-id'], $delivery_data);
1854 // Store tags from the body if this hadn't been handled previously in the protocol classes
1855 if (!Tag::existsForPost($item['uri-id'])) {
1856 Tag::storeFromBody($item['uri-id'], $body);
1859 // Remove all fields that aren't part of the item table
1860 foreach ($item as $field => $value) {
1861 if (!in_array($field, $structure['item'])) {
1862 unset($item[$field]);
1866 $ret = DBA::insert('item', $item);
1868 // When the item was successfully stored we fetch the ID of the item.
1869 if (DBA::isResult($ret)) {
1870 $current_post = DBA::lastInsertId();
1872 // This can happen - for example - if there are locking timeouts.
1875 // Store the data into a spool file so that we can try again later.
1876 self::spool($orig_item);
1880 if ($current_post == 0) {
1881 // This is one of these error messages that never should occur.
1882 Logger::log("couldn't find created item - we better quit now.");
1887 // How much entries have we created?
1888 // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
1889 $entries = DBA::count('item', ['uri' => $item['uri'], 'uid' => $item['uid'], 'network' => $item['network']]);
1892 // There are duplicates. We delete our just created entry.
1893 Logger::info('Delete duplicated item', ['id' => $current_post, 'uri' => $item['uri'], 'uid' => $item['uid'], 'guid' => $item['guid']]);
1895 // Yes, we could do a rollback here - but we possibly are still having users with MyISAM.
1896 DBA::delete('item', ['id' => $current_post]);
1899 } elseif ($entries == 0) {
1900 // This really should never happen since we quit earlier if there were problems.
1901 Logger::log("Something is terribly wrong. We haven't found our created entry.");
1906 Logger::log('created item '.$current_post);
1908 if (!$parent_id || ($item['parent-uri'] === $item['uri'])) {
1909 $parent_id = $current_post;
1913 DBA::update('item', ['parent' => $parent_id], ['id' => $current_post]);
1915 $item['id'] = $current_post;
1916 $item['parent'] = $parent_id;
1918 // update the commented timestamp on the parent
1919 // Only update "commented" if it is really a comment
1920 if (($item['gravity'] != GRAVITY_ACTIVITY) || !$like_no_comment) {
1921 DBA::update('item', ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1923 DBA::update('item', ['changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1926 if ($item['parent-uri'] === $item['uri']) {
1927 self::addThread($current_post);
1929 self::updateThread($parent_id);
1933 // In that function we check if this is a forum post. Additionally we delete the item under certain circumstances
1934 if (self::tagDeliver($item['uid'], $current_post)) {
1935 // Get the user information for the logging
1936 $user = User::getById($uid);
1938 Logger::notice('Item had been deleted', ['id' => $current_post, 'user' => $uid, 'account-type' => $user['account-type']]);
1943 $posted_item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $current_post]);
1944 if (DBA::isResult($posted_item)) {
1946 Hook::callAll('post_local_end', $posted_item);
1948 Hook::callAll('post_remote_end', $posted_item);
1951 Logger::log('new item not found in DB, id ' . $current_post);
1955 if ($item['parent-uri'] === $item['uri']) {
1956 self::addShadow($current_post);
1958 self::addShadowPost($current_post);
1961 self::updateContact($item);
1963 UserItem::setNotification($current_post);
1965 check_user_notification($current_post);
1967 // Distribute items to users who subscribed to their tags
1968 self::distributeByTags($item, $orig_item);
1970 $transmit = $notify || ($item['visible'] && ($parent_origin || $item['origin']));
1973 $transmit_item = Item::selectFirst(['verb', 'origin'], ['id' => $item['id']]);
1974 // Don't relay participation messages
1975 if (($transmit_item['verb'] == Activity::FOLLOW) &&
1976 (!$transmit_item['origin'] || ($item['author-id'] != Contact::getPublicIdByUserId($uid)))) {
1977 Logger::info('Participation messages will not be relayed', ['item' => $item['id'], 'uri' => $item['uri'], 'verb' => $transmit_item['verb']]);
1983 Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, $current_post);
1986 return $current_post;
1990 * Distribute the given item to users who subscribed to their tags
1992 * @param array $item Processed item
1993 * @param array $original Original item
1995 private static function distributeByTags(array $item, array $original)
1997 if (($item['uid'] != 0) || ($item['gravity'] != GRAVITY_PARENT) || !in_array($item['network'], Protocol::FEDERATED)) {
2001 $uids = Tag::getUIDListByURIId($item['uri-id']);
2002 foreach ($uids as $uid) {
2003 $original['uri-id'] = $item['uri-id'];
2004 $stored = self::storeForUser($original, $uid);
2005 Logger::info('Stored item for users', ['uri-id' => $item['uri-id'], 'uid' => $uid, 'stored' => $stored]);
2010 * Insert a new item content entry
2012 * @param array $item The item fields that are to be inserted
2013 * @throws \Exception
2015 private static function insertContent(array $item)
2017 $fields = ['uri-plink-hash' => (string)$item['uri-id'], 'uri-id' => $item['uri-id']];
2019 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2020 if (isset($item[$field])) {
2021 $fields[$field] = $item[$field];
2025 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
2026 if (DBA::isResult($item_content)) {
2027 $icid = $item_content['id'];
2028 Logger::info('Content found', ['icid' => $icid, 'uri' => $item['uri']]);
2032 DBA::insert('item-content', $fields, true);
2033 $icid = DBA::lastInsertId();
2035 Logger::info('Content inserted', ['icid' => $icid, 'uri' => $item['uri']]);
2039 // Possibly there can be timing issues. Then the same content could be inserted multiple times.
2040 // Due to the indexes this doesn't happen, but "lastInsertId" will be empty in these situations.
2041 // So we have to fetch the id manually. This is no bug and there is no data loss.
2042 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
2043 if (DBA::isResult($item_content)) {
2044 $icid = $item_content['id'];
2045 Logger::notice('Content inserted with empty lastInsertId', ['icid' => $icid, 'uri' => $item['uri']]);
2049 // This shouldn't happen.
2050 Logger::error("Content wasn't inserted", $item);
2055 * Update existing item content entries
2057 * @param array $item The item fields that are to be changed
2058 * @param array $condition The condition for finding the item content entries
2059 * @throws \Exception
2061 private static function updateContent($item, $condition)
2063 // We have to select only the fields from the "item-content" table
2065 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2066 if (isset($item[$field])) {
2067 $fields[$field] = $item[$field];
2071 if (empty($fields)) {
2075 DBA::update('item-content', $fields, $condition, true);
2076 Logger::info('Updated content', ['condition' => $condition]);
2080 * Distributes public items to the receivers
2082 * @param integer $itemid Item ID that should be added
2083 * @param string $signed_text Original text (for Diaspora signatures), JSON encoded.
2084 * @throws \Exception
2086 public static function distribute($itemid, $signed_text = '')
2088 $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
2089 $parent = self::selectFirst(['owner-id'], $condition);
2090 if (!DBA::isResult($parent)) {
2094 // Only distribute public items from native networks
2095 $condition = ['id' => $itemid, 'uid' => 0,
2096 'network' => array_merge(Protocol::FEDERATED ,['']),
2097 'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => [self::PUBLIC, self::UNLISTED]];
2098 $item = self::selectFirst(self::ITEM_FIELDLIST, $condition);
2099 if (!DBA::isResult($item)) {
2103 $origin = $item['origin'];
2107 /// @todo add a field "pcid" in the contact table that referrs to the public contact id.
2108 $owner = DBA::selectFirst('contact', ['url', 'nurl', 'alias'], ['id' => $parent['owner-id']]);
2109 if (!DBA::isResult($owner)) {
2113 $condition = ['nurl' => $owner['nurl'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2114 $contacts = DBA::select('contact', ['uid'], $condition);
2115 while ($contact = DBA::fetch($contacts)) {
2116 if ($contact['uid'] == 0) {
2120 $users[$contact['uid']] = $contact['uid'];
2122 DBA::close($contacts);
2124 $condition = ['alias' => $owner['url'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2125 $contacts = DBA::select('contact', ['uid'], $condition);
2126 while ($contact = DBA::fetch($contacts)) {
2127 if ($contact['uid'] == 0) {
2131 $users[$contact['uid']] = $contact['uid'];
2133 DBA::close($contacts);
2135 if (!empty($owner['alias'])) {
2136 $condition = ['nurl' => Strings::normaliseLink($owner['alias']), 'rel' => [Contact::SHARING, Contact::FRIEND]];
2137 $contacts = DBA::select('contact', ['uid'], $condition);
2138 while ($contact = DBA::fetch($contacts)) {
2139 if ($contact['uid'] == 0) {
2143 $users[$contact['uid']] = $contact['uid'];
2145 DBA::close($contacts);
2150 if ($item['uri'] != $item['parent-uri']) {
2151 $parents = self::select(['uid', 'origin'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
2152 while ($parent = self::fetch($parents)) {
2153 $users[$parent['uid']] = $parent['uid'];
2154 if ($parent['origin'] && !$origin) {
2155 $origin_uid = $parent['uid'];
2160 foreach ($users as $uid) {
2161 if ($origin_uid == $uid) {
2162 $item['diaspora_signed_text'] = $signed_text;
2164 self::storeForUser($item, $uid);
2169 * Store public items for the receivers
2171 * @param array $item The item entry that will be stored
2172 * @param integer $uid The user that will receive the item entry
2173 * @return integer stored item id
2174 * @throws \Exception
2176 private static function storeForUser(array $item, int $uid)
2178 if (self::exists(['uri-id' => $item['uri-id'], 'uid' => $uid])) {
2179 Logger::info('Item already exists', ['uri-id' => $item['uri-id'], 'uid' => $uid]);
2184 unset($item['parent']);
2185 unset($item['mention']);
2186 unset($item['starred']);
2188 $item['uid'] = $uid;
2189 $item['origin'] = 0;
2192 if ($item['uri'] == $item['parent-uri']) {
2193 $contact = Contact::getByURLForUser($item['owner-link'], $uid, false, ['id']);
2195 $contact = Contact::getByURLForUser($item['author-link'], $uid, false, ['id']);
2198 if (!empty($contact['id'])) {
2199 $item['contact-id'] = $contact['id'];
2201 // Shouldn't happen at all
2202 Logger::warning('contact-id could not be fetched', ['uid' => $uid, 'item' => $item]);
2203 $self = DBA::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
2204 if (!DBA::isResult($self)) {
2205 // Shouldn't happen even less
2206 Logger::warning('self contact could not be fetched', ['uid' => $uid, 'item' => $item]);
2209 $item['contact-id'] = $self['id'];
2212 /// @todo Handling of "event-id"
2215 if ($item['uri'] == $item['parent-uri']) {
2216 $contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
2217 if (DBA::isResult($contact)) {
2218 $notify = self::isRemoteSelf($contact, $item);
2222 $distributed = self::insert($item, $notify, true);
2224 if (!$distributed) {
2225 Logger::info("Distributed public item wasn't stored", ['uri-id' => $item['uri-id'], 'user' => $uid]);
2227 Logger::info('Distributed public item was stored', ['uri-id' => $item['uri-id'], 'user' => $uid, 'stored' => $distributed]);
2229 return $distributed;
2233 * Add a shadow entry for a given item id that is a thread starter
2235 * We store every public item entry additionally with the user id "0".
2236 * This is used for the community page and for the search.
2237 * It is planned that in the future we will store public item entries only once.
2239 * @param integer $itemid Item ID that should be added
2240 * @throws \Exception
2242 public static function addShadow($itemid)
2244 $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network', 'uri'];
2245 $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
2246 $item = self::selectFirst($fields, $condition);
2248 if (!DBA::isResult($item)) {
2252 // is it already a copy?
2253 if (($itemid == 0) || ($item['uid'] == 0)) {
2257 // Is it a visible public post?
2258 if (!$item["visible"] || $item["deleted"] || $item["moderated"] || ($item["private"] == Item::PRIVATE)) {
2262 // is it an entry from a connector? Only add an entry for natively connected networks
2263 if (!in_array($item["network"], array_merge(Protocol::FEDERATED ,['']))) {
2267 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2271 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2273 if (DBA::isResult($item)) {
2274 // Preparing public shadow (removing user specific data)
2277 unset($item['parent']);
2278 unset($item['wall']);
2279 unset($item['mention']);
2280 unset($item['origin']);
2281 unset($item['starred']);
2282 unset($item['postopts']);
2283 unset($item['inform']);
2284 if ($item['uri'] == $item['parent-uri']) {
2285 $item['contact-id'] = $item['owner-id'];
2287 $item['contact-id'] = $item['author-id'];
2290 $public_shadow = self::insert($item, false, true);
2292 Logger::info('Stored public shadow', ['thread' => $itemid, 'id' => $public_shadow]);
2297 * Add a shadow entry for a given item id that is a comment
2299 * This function does the same like the function above - but for comments
2301 * @param integer $itemid Item ID that should be added
2302 * @throws \Exception
2304 public static function addShadowPost($itemid)
2306 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2307 if (!DBA::isResult($item)) {
2311 // Is it a toplevel post?
2312 if ($item['gravity'] == GRAVITY_PARENT) {
2313 self::addShadow($itemid);
2317 // Is this a shadow entry?
2318 if ($item['uid'] == 0) {
2322 // Is there a shadow parent?
2323 if (!self::exists(['uri' => $item['parent-uri'], 'uid' => 0])) {
2327 // Is there already a shadow entry?
2328 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2332 // Save "origin" and "parent" state
2333 $origin = $item['origin'];
2334 $parent = $item['parent'];
2336 // Preparing public shadow (removing user specific data)
2339 unset($item['parent']);
2340 unset($item['wall']);
2341 unset($item['mention']);
2342 unset($item['origin']);
2343 unset($item['starred']);
2344 unset($item['postopts']);
2345 unset($item['inform']);
2346 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
2348 $public_shadow = self::insert($item, false, true);
2350 Logger::info('Stored public shadow', ['uri' => $item['uri'], 'id' => $public_shadow]);
2352 // If this was a comment to a Diaspora post we don't get our comment back.
2353 // This means that we have to distribute the comment by ourselves.
2354 if ($origin && self::exists(['id' => $parent, 'network' => Protocol::DIASPORA])) {
2355 self::distribute($public_shadow);
2360 * Adds a language specification in a "language" element of given $arr.
2361 * Expects "body" element to exist in $arr.
2363 * @param array $item
2364 * @return string detected language
2365 * @throws \Text_LanguageDetect_Exception
2367 private static function getLanguage(array $item)
2369 $naked_body = BBCode::toPlaintext($item['body'], false);
2371 $ld = new Text_LanguageDetect();
2372 $ld->setNameMode(2);
2373 $languages = $ld->detect($naked_body, 3);
2374 if (is_array($languages)) {
2375 return json_encode($languages);
2382 * Creates an unique guid out of a given uri
2384 * @param string $uri uri of an item entry
2385 * @param string $host hostname for the GUID prefix
2386 * @return string unique guid
2388 public static function guidFromUri($uri, $host)
2390 // Our regular guid routine is using this kind of prefix as well
2391 // We have to avoid that different routines could accidentally create the same value
2392 $parsed = parse_url($uri);
2394 // We use a hash of the hostname as prefix for the guid
2395 $guid_prefix = hash("crc32", $host);
2397 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
2398 unset($parsed["scheme"]);
2400 // Glue it together to be able to make a hash from it
2401 $host_id = implode("/", $parsed);
2403 // We could use any hash algorithm since it isn't a security issue
2404 $host_hash = hash("ripemd128", $host_id);
2406 return $guid_prefix.$host_hash;
2410 * generate an unique URI
2412 * @param integer $uid User id
2413 * @param string $guid An existing GUID (Otherwise it will be generated)
2416 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2418 public static function newURI($uid, $guid = "")
2421 $guid = System::createUUID();
2424 return DI::baseUrl()->get() . '/objects/' . $guid;
2428 * Set "success_update" and "last-item" to the date of the last time we heard from this contact
2430 * This can be used to filter for inactive contacts.
2431 * Only do this for public postings to avoid privacy problems, since poco data is public.
2432 * Don't set this value if it isn't from the owner (could be an author that we don't know)
2434 * @param array $arr Contains the just posted item record
2435 * @throws \Exception
2437 private static function updateContact($arr)
2439 // Unarchive the author
2440 $contact = DBA::selectFirst('contact', [], ['id' => $arr["author-id"]]);
2441 if (DBA::isResult($contact)) {
2442 Contact::unmarkForArchival($contact);
2445 // Unarchive the contact if it's not our own contact
2446 $contact = DBA::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
2447 if (DBA::isResult($contact)) {
2448 Contact::unmarkForArchival($contact);
2451 /// @todo On private posts we could obfuscate the date
2452 $update = ($arr['private'] != self::PRIVATE) || in_array($arr['network'], Protocol::FEDERATED);
2454 // Is it a forum? Then we don't care about the rules from above
2455 if (!$update && in_array($arr["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN]) && ($arr["parent-uri"] === $arr["uri"])) {
2456 if (DBA::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
2462 // The "self" contact id is used (for example in the connectors) when the contact is unknown
2463 // So we have to ensure to only update the last item when it had been our own post,
2464 // or it had been done by a "regular" contact.
2465 if (!empty($arr['wall'])) {
2466 $condition = ['id' => $arr['contact-id']];
2468 $condition = ['id' => $arr['contact-id'], 'self' => false];
2470 DBA::update('contact', ['failed' => false, 'success_update' => $arr['received'], 'last-item' => $arr['received']], $condition);
2472 // Now do the same for the system wide contacts with uid=0
2473 if ($arr['private'] != self::PRIVATE) {
2474 DBA::update('contact', ['failed' => false, 'success_update' => $arr['received'], 'last-item' => $arr['received']],
2475 ['id' => $arr['owner-id']]);
2477 if ($arr['owner-id'] != $arr['author-id']) {
2478 DBA::update('contact', ['failed' => false, 'success_update' => $arr['received'], 'last-item' => $arr['received']],
2479 ['id' => $arr['author-id']]);
2484 public static function setHashtags($body)
2486 $body = BBCode::performWithEscapedTags($body, ['noparse', 'pre', 'code'], function ($body) {
2487 $tags = BBCode::getTags($body);
2490 if (!count($tags)) {
2494 // This sorting is important when there are hashtags that are part of other hashtags
2495 // Otherwise there could be problems with hashtags like #test and #test2
2496 // Because of this we are sorting from the longest to the shortest tag.
2497 usort($tags, function ($a, $b) {
2498 return strlen($b) <=> strlen($a);
2501 $URLSearchString = "^\[\]";
2503 // All hashtags should point to the home server if "local_tags" is activated
2504 if (DI::config()->get('system', 'local_tags')) {
2505 $body = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2506 "#[url=" . DI::baseUrl() . "/search?tag=$2]$2[/url]", $body);
2509 // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
2510 $body = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2512 return ("[url=" . str_replace("#", "#", $match[1]) . "]" . str_replace("#", "#", $match[2]) . "[/url]");
2515 $body = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
2517 return ("[bookmark=" . str_replace("#", "#", $match[1]) . "]" . str_replace("#", "#", $match[2]) . "[/bookmark]");
2520 $body = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
2522 return ("[attachment " . str_replace("#", "#", $match[1]) . "]" . $match[2] . "[/attachment]");
2525 // Repair recursive urls
2526 $body = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2529 foreach ($tags as $tag) {
2530 if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || strlen($tag) < 2 || $tag[1] == '#') {
2534 $basetag = str_replace('_', ' ', substr($tag, 1));
2535 $newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
2537 $body = str_replace($tag, $newtag, $body);
2540 // Convert back the masked hashtags
2541 $body = str_replace("#", "#", $body);
2550 * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
2553 * @param int $item_id
2554 * @return boolean true if item was deleted, else false
2555 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2556 * @throws \ImagickException
2558 private static function tagDeliver($uid, $item_id)
2562 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
2563 if (!DBA::isResult($user)) {
2567 $community_page = (($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
2568 $prvgroup = (($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP) ? true : false);
2570 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
2571 if (!DBA::isResult($item)) {
2575 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2578 * Diaspora uses their own hardwired link URL in @-tags
2579 * instead of the one we supply with webfinger
2581 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2583 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2585 foreach ($matches as $mtch) {
2586 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2588 Logger::log('mention found: ' . $mtch[2]);
2594 if (($community_page || $prvgroup) &&
2595 !$item['wall'] && !$item['origin'] && ($item['gravity'] == GRAVITY_PARENT)) {
2596 Logger::info('Delete private group/communiy top-level item without mention', ['id' => $item_id, 'guid'=> $item['guid']]);
2597 DBA::delete('item', ['id' => $item_id]);
2603 $arr = ['item' => $item, 'user' => $user];
2605 Hook::callAll('tagged', $arr);
2607 if (!$community_page && !$prvgroup) {
2612 * tgroup delivery - setup a second delivery chain
2613 * prevent delivery looping - only proceed
2614 * if the message originated elsewhere and is a top-level post
2616 if ($item['wall'] || $item['origin'] || ($item['id'] != $item['parent'])) {
2620 // now change this copy of the post to a forum head message and deliver to all the tgroup members
2621 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'], ['uid' => $uid, 'self' => true]);
2622 if (!DBA::isResult($self)) {
2626 $owner_id = Contact::getIdForURL($self['url']);
2628 // also reset all the privacy bits to the forum default permissions
2630 $private = ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) ? self::PRIVATE : self::PUBLIC;
2632 $psid = PermissionSet::getIdFromACL(
2640 $forum_mode = ($prvgroup ? 2 : 1);
2642 $fields = ['wall' => true, 'origin' => true, 'forum_mode' => $forum_mode, 'contact-id' => $self['id'],
2643 'owner-id' => $owner_id, 'private' => $private, 'psid' => $psid];
2644 self::update($fields, ['id' => $item_id]);
2646 self::updateThread($item_id);
2648 Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'Notifier', Delivery::POST, $item_id);
2653 public static function isRemoteSelf($contact, &$datarray)
2655 if (!$contact['remote_self']) {
2659 // Prevent the forwarding of posts that are forwarded
2660 if (!empty($datarray["extid"]) && ($datarray["extid"] == Protocol::DFRN)) {
2661 Logger::info('Already forwarded');
2665 // Prevent to forward already forwarded posts
2666 if ($datarray["app"] == DI::baseUrl()->getHostname()) {
2667 Logger::info('Already forwarded (second test)');
2671 // Only forward posts
2672 if ($datarray["verb"] != Activity::POST) {
2673 Logger::info('No post');
2677 if (($contact['network'] != Protocol::FEED) && ($datarray['private'] == self::PRIVATE)) {
2678 Logger::info('Not public');
2682 $datarray2 = $datarray;
2683 Logger::info('remote-self start', ['contact' => $contact['url'], 'remote_self'=> $contact['remote_self'], 'item' => $datarray]);
2684 if ($contact['remote_self'] == 2) {
2685 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
2686 ['uid' => $contact['uid'], 'self' => true]);
2687 if (DBA::isResult($self)) {
2688 $datarray['contact-id'] = $self["id"];
2690 $datarray['owner-name'] = $self["name"];
2691 $datarray['owner-link'] = $self["url"];
2692 $datarray['owner-avatar'] = $self["thumb"];
2694 $datarray['author-name'] = $datarray['owner-name'];
2695 $datarray['author-link'] = $datarray['owner-link'];
2696 $datarray['author-avatar'] = $datarray['owner-avatar'];
2698 unset($datarray['edited']);
2700 unset($datarray['network']);
2701 unset($datarray['owner-id']);
2702 unset($datarray['author-id']);
2705 if ($contact['network'] != Protocol::FEED) {
2706 $datarray["guid"] = System::createUUID();
2707 unset($datarray["plink"]);
2708 $datarray["uri"] = self::newURI($contact['uid'], $datarray["guid"]);
2709 $datarray["parent-uri"] = $datarray["uri"];
2710 $datarray["thr-parent"] = $datarray["uri"];
2711 $datarray["extid"] = Protocol::DFRN;
2712 $urlpart = parse_url($datarray2['author-link']);
2713 $datarray["app"] = $urlpart["host"];
2715 $datarray['private'] = self::PUBLIC;
2719 if ($contact['network'] != Protocol::FEED) {
2720 // Store the original post
2721 $result = self::insert($datarray2);
2722 Logger::info('remote-self post original item', ['contact' => $contact['url'], 'result'=> $result, 'item' => $datarray2]);
2724 $datarray["app"] = "Feed";
2728 // Trigger automatic reactions for addons
2729 $datarray['api_source'] = true;
2731 // We have to tell the hooks who we are - this really should be improved
2732 $_SESSION["authenticated"] = true;
2733 $_SESSION["uid"] = $contact['uid'];
2742 * @param array $item
2745 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2746 * @throws \ImagickException
2748 public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
2750 if (DI::config()->get('system', 'disable_embedded')) {
2754 Logger::info('check for photos');
2755 $site = substr(DI::baseUrl(), strpos(DI::baseUrl(), '://'));
2760 $img_start = strpos($orig_body, '[img');
2761 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2762 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2764 while (($img_st_close !== false) && ($img_len !== false)) {
2765 $img_st_close++; // make it point to AFTER the closing bracket
2766 $image = substr($orig_body, $img_start + $img_st_close, $img_len);
2768 Logger::info('found photo', ['image' => $image]);
2770 if (stristr($image, $site . '/photo/')) {
2771 // Only embed locally hosted photos
2773 $i = basename($image);
2774 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
2775 $x = strpos($i, '-');
2778 $res = substr($i, $x + 1);
2779 $i = substr($i, 0, $x);
2780 $photo = Photo::getPhotoForUser($uid, $i, $res);
2781 if (DBA::isResult($photo)) {
2783 * Check to see if we should replace this photo link with an embedded image
2784 * 1. No need to do so if the photo is public
2785 * 2. If there's a contact-id provided, see if they're in the access list
2786 * for the photo. If so, embed it.
2787 * 3. Otherwise, if we have an item, see if the item permissions match the photo
2788 * permissions, regardless of order but first check to see if they're an exact
2789 * match to save some processing overhead.
2791 if (self::hasPermissions($photo)) {
2793 $recips = self::enumeratePermissions($photo);
2794 if (in_array($cid, $recips)) {
2798 if (self::samePermissions($uid, $item, $photo)) {
2804 $photo_img = Photo::getImageForPhoto($photo);
2805 // If a custom width and height were specified, apply before embedding
2806 if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
2807 Logger::info('scaling photo');
2809 $width = intval($match[1]);
2810 $height = intval($match[2]);
2812 $photo_img->scaleDown(max($width, $height));
2815 $data = $photo_img->asString();
2816 $type = $photo_img->getType();
2818 Logger::info('replacing photo');
2819 $image = 'data:' . $type . ';base64,' . base64_encode($data);
2820 Logger::debug('replaced', ['image' => $image]);
2826 $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
2827 $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
2828 if ($orig_body === false) {
2832 $img_start = strpos($orig_body, '[img');
2833 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2834 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2837 $new_body = $new_body . $orig_body;
2842 private static function hasPermissions($obj)
2844 return !empty($obj['allow_cid']) || !empty($obj['allow_gid']) ||
2845 !empty($obj['deny_cid']) || !empty($obj['deny_gid']);
2848 private static function samePermissions($uid, $obj1, $obj2)
2850 // first part is easy. Check that these are exactly the same.
2851 if (($obj1['allow_cid'] == $obj2['allow_cid'])
2852 && ($obj1['allow_gid'] == $obj2['allow_gid'])
2853 && ($obj1['deny_cid'] == $obj2['deny_cid'])
2854 && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
2858 // This is harder. Parse all the permissions and compare the resulting set.
2859 $recipients1 = self::enumeratePermissions($obj1);
2860 $recipients2 = self::enumeratePermissions($obj2);
2864 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
2865 return ($recipients1 == $recipients2);
2869 * Returns an array of contact-ids that are allowed to see this object
2871 * @param array $obj Item array with at least uid, allow_cid, allow_gid, deny_cid and deny_gid
2872 * @param bool $check_dead Prunes unavailable contacts from the result
2874 * @throws \Exception
2876 public static function enumeratePermissions(array $obj, bool $check_dead = false)
2878 $aclFormater = DI::aclFormatter();
2880 $allow_people = $aclFormater->expand($obj['allow_cid']);
2881 $allow_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['allow_gid']), $check_dead);
2882 $deny_people = $aclFormater->expand($obj['deny_cid']);
2883 $deny_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['deny_gid']), $check_dead);
2884 $recipients = array_unique(array_merge($allow_people, $allow_groups));
2885 $deny = array_unique(array_merge($deny_people, $deny_groups));
2886 $recipients = array_diff($recipients, $deny);
2890 public static function expire($uid, $days, $network = "", $force = false)
2892 if (!$uid || ($days < 1)) {
2896 $condition = ["`uid` = ? AND NOT `deleted` AND `gravity` = ?",
2897 $uid, GRAVITY_PARENT];
2900 * $expire_network_only = save your own wall posts
2901 * and just expire conversations started by others
2903 $expire_network_only = DI::pConfig()->get($uid, 'expire', 'network_only', false);
2905 if ($expire_network_only) {
2906 $condition[0] .= " AND NOT `wall`";
2909 if ($network != "") {
2910 $condition[0] .= " AND `network` = ?";
2911 $condition[] = $network;
2914 $condition[0] .= " AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY";
2915 $condition[] = $days;
2917 $items = self::select(['file', 'resource-id', 'starred', 'type', 'id', 'post-type'], $condition);
2919 if (!DBA::isResult($items)) {
2923 $expire_items = DI::pConfig()->get($uid, 'expire', 'items', true);
2925 // Forcing expiring of items - but not notes and marked items
2927 $expire_items = true;
2930 $expire_notes = DI::pConfig()->get($uid, 'expire', 'notes', true);
2931 $expire_starred = DI::pConfig()->get($uid, 'expire', 'starred', true);
2932 $expire_photos = DI::pConfig()->get($uid, 'expire', 'photos', false);
2936 while ($item = Item::fetch($items)) {
2937 // don't expire filed items
2939 if (strpos($item['file'], '[') !== false) {
2943 // Only expire posts, not photos and photo comments
2945 if (!$expire_photos && strlen($item['resource-id'])) {
2947 } elseif (!$expire_starred && intval($item['starred'])) {
2949 } elseif (!$expire_notes && (($item['type'] == 'note') || ($item['post-type'] == Item::PT_PERSONAL_NOTE))) {
2951 } elseif (!$expire_items && ($item['type'] != 'note') && ($item['post-type'] != Item::PT_PERSONAL_NOTE)) {
2955 self::markForDeletionById($item['id'], PRIORITY_LOW);
2960 Logger::log('User ' . $uid . ": expired $expired items; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2963 public static function firstPostDate($uid, $wall = false)
2965 $condition = ['uid' => $uid, 'wall' => $wall, 'deleted' => false, 'visible' => true, 'moderated' => false];
2966 $params = ['order' => ['received' => false]];
2967 $thread = DBA::selectFirst('thread', ['received'], $condition, $params);
2968 if (DBA::isResult($thread)) {
2969 return substr(DateTimeFormat::local($thread['received']), 0, 10);
2975 * add/remove activity to an item
2977 * Toggle activities as like,dislike,attend of an item
2979 * @param string $item_id
2980 * @param string $verb
2981 * Activity verb. One of
2982 * like, unlike, dislike, undislike, attendyes, unattendyes,
2983 * attendno, unattendno, attendmaybe, unattendmaybe
2985 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2986 * @throws \ImagickException
2987 * @hook 'post_local_end'
2989 * 'post_id' => ID of posted item
2991 public static function performActivity($item_id, $verb)
2993 if (!Session::isAuthenticated()) {
2997 Logger::log('like: verb ' . $verb . ' item ' . $item_id);
2999 $item = self::selectFirst(self::ITEM_FIELDLIST, ['`id` = ? OR `uri` = ?', $item_id, $item_id]);
3000 if (!DBA::isResult($item)) {
3001 Logger::log('like: unknown item ' . $item_id);
3005 $item_uri = $item['uri'];
3007 $uid = $item['uid'];
3008 if (($uid == 0) && local_user()) {
3009 $uid = local_user();
3012 if (!Security::canWriteToUserWall($uid)) {
3013 Logger::log('like: unable to write on wall ' . $uid);
3017 // Retrieves the local post owner
3018 $owner_self_contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'self' => true]);
3019 if (!DBA::isResult($owner_self_contact)) {
3020 Logger::log('like: unknown owner ' . $uid);
3024 // Retrieve the current logged in user's public contact
3025 $author_id = public_contact();
3027 $author_contact = DBA::selectFirst('contact', ['url'], ['id' => $author_id]);
3028 if (!DBA::isResult($author_contact)) {
3029 Logger::log('like: unknown author ' . $author_id);
3033 // Contact-id is the uid-dependant author contact
3034 if (local_user() == $uid) {
3035 $item_contact_id = $owner_self_contact['id'];
3037 $item_contact_id = Contact::getIdForURL($author_contact['url'], $uid, false);
3038 $item_contact = DBA::selectFirst('contact', [], ['id' => $item_contact_id]);
3039 if (!DBA::isResult($item_contact)) {
3040 Logger::log('like: unknown item contact ' . $item_contact_id);
3049 $activity = Activity::LIKE;
3053 $activity = Activity::DISLIKE;
3057 $activity = Activity::ATTEND;
3061 $activity = Activity::ATTENDNO;
3064 case 'unattendmaybe':
3065 $activity = Activity::ATTENDMAYBE;
3069 $activity = Activity::FOLLOW;
3072 Logger::log('like: unknown verb ' . $verb . ' for item ' . $item_id);
3076 $mode = Strings::startsWith($verb, 'un') ? 'delete' : 'create';
3078 // Enable activity toggling instead of on/off
3079 $event_verb_flag = $activity === Activity::ATTEND || $activity === Activity::ATTENDNO || $activity === Activity::ATTENDMAYBE;
3081 // Look for an existing verb row
3082 // Event participation activities are mutually exclusive, only one of them can exist at all times.
3083 if ($event_verb_flag) {
3084 $verbs = [Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE];
3086 // Translate to the index based activity index
3088 foreach ($verbs as $verb) {
3089 $vids[] = Verb::getID($verb);
3092 $vids = Verb::getID($activity);
3095 $condition = ['vid' => $vids, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY,
3096 'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent' => $item_uri];
3097 $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
3099 if (DBA::isResult($like_item)) {
3101 * Truth table for existing activities
3103 * | Inputs || Outputs |
3104 * |----------------------------||-------------------|
3105 * | Mode | Event | Same verb || Delete? | Return? |
3106 * |--------|-------|-----------||---------|---------|
3107 * | create | Yes | Yes || No | Yes |
3108 * | create | Yes | No || Yes | No |
3109 * | create | No | Yes || No | Yes |
3110 * | create | No | No || N/A†|
3111 * | delete | Yes | Yes || Yes | N/A‡ |
3112 * | delete | Yes | No || No | N/A‡ |
3113 * | delete | No | Yes || Yes | N/A‡ |
3114 * | delete | No | No || N/A†|
3115 * |--------|-------|-----------||---------|---------|
3116 * | A | B | C || A xor C | !B or C |
3118 * †Can't happen: It's impossible to find an existing non-event activity without
3119 * the same verb because we are only looking for this single verb.
3121 * ‡ The "mode = delete" is returning early whether an existing activity was found or not.
3123 if ($mode == 'create' xor $like_item['verb'] == $activity) {
3124 self::markForDeletionById($like_item['id']);
3127 if (!$event_verb_flag || $like_item['verb'] == $activity) {
3132 // No need to go further if we aren't creating anything
3133 if ($mode == 'delete') {
3137 $objtype = $item['resource-id'] ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE;
3140 'guid' => System::createUUID(),
3141 'uri' => self::newURI($item['uid']),
3142 'uid' => $item['uid'],
3143 'contact-id' => $item_contact_id,
3144 'wall' => $item['wall'],
3146 'network' => Protocol::DFRN,
3147 'gravity' => GRAVITY_ACTIVITY,
3148 'parent' => $item['id'],
3149 'parent-uri' => $item['uri'],
3150 'thr-parent' => $item['uri'],
3151 'owner-id' => $author_id,
3152 'author-id' => $author_id,
3153 'body' => $activity,
3154 'verb' => $activity,
3155 'object-type' => $objtype,
3156 'allow_cid' => $item['allow_cid'],
3157 'allow_gid' => $item['allow_gid'],
3158 'deny_cid' => $item['deny_cid'],
3159 'deny_gid' => $item['deny_gid'],
3164 $signed = Diaspora::createLikeSignature($uid, $new_item);
3165 if (!empty($signed)) {
3166 $new_item['diaspora_signed_text'] = json_encode($signed);
3169 $new_item_id = self::insert($new_item);
3171 // If the parent item isn't visible then set it to visible
3172 if (!$item['visible']) {
3173 self::update(['visible' => true], ['id' => $item['id']]);
3176 $new_item['id'] = $new_item_id;
3178 Hook::callAll('post_local_end', $new_item);
3183 private static function addThread($itemid, $onlyshadow = false)
3185 $fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
3186 'moderated', 'visible', 'starred', 'contact-id', 'post-type', 'uri-id',
3187 'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
3188 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3189 $item = self::selectFirst($fields, $condition);
3191 if (!DBA::isResult($item)) {
3195 $item['iid'] = $itemid;
3198 $result = DBA::insert('thread', $item);
3200 Logger::info('Add thread', ['item' => $itemid, 'result' => $result]);
3204 private static function updateThread($itemid, $setmention = false)
3206 $fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed', 'post-type',
3207 'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'contact-id', 'uri-id',
3208 'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
3209 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3211 $item = self::selectFirst($fields, $condition);
3212 if (!DBA::isResult($item)) {
3217 $item["mention"] = 1;
3222 foreach ($item as $field => $data) {
3223 if (!in_array($field, ["guid"])) {
3224 $fields[$field] = $data;
3228 $result = DBA::update('thread', $fields, ['iid' => $itemid]);
3230 Logger::info('Update thread', ['item' => $itemid, 'guid' => $item["guid"], 'result' => $result]);
3233 private static function deleteThread($itemid, $itemuri = "")
3235 $item = DBA::selectFirst('thread', ['uid'], ['iid' => $itemid]);
3236 if (!DBA::isResult($item)) {
3237 Logger::info('No thread found', ['id' => $itemid]);
3241 $result = DBA::delete('thread', ['iid' => $itemid], ['cascade' => false]);
3243 Logger::info('Deleted thread', ['item' => $itemid, 'result' => $result]);
3245 if ($itemuri != "") {
3246 $condition = ["`uri` = ? AND NOT `deleted` AND NOT (`uid` IN (?, 0))", $itemuri, $item["uid"]];
3247 if (!self::exists($condition)) {
3248 DBA::delete('item', ['uri' => $itemuri, 'uid' => 0]);
3249 Logger::debug('Deleted shadow item', ['id' => $itemid, 'uri' => $itemuri]);
3254 public static function getPermissionsSQLByUserId($owner_id)
3256 $local_user = local_user();
3257 $remote_user = Session::getRemoteContactID($owner_id);
3260 * Construct permissions
3262 * default permissions - anonymous user
3264 $sql = sprintf(" AND `item`.`private` != %d", self::PRIVATE);
3266 // Profile owner - everything is visible
3267 if ($local_user && ($local_user == $owner_id)) {
3269 } elseif ($remote_user) {
3271 * Authenticated visitor. Unless pre-verified,
3272 * check that the contact belongs to this $owner_id
3273 * and load the groups the visitor belongs to.
3274 * If pre-verified, the caller is expected to have already
3275 * done this and passed the groups into this function.
3277 $set = PermissionSet::get($owner_id, $remote_user);
3280 $sql_set = sprintf(" OR (`item`.`private` = %d AND `item`.`wall` AND `item`.`psid` IN (", self::PRIVATE) . implode(',', $set) . "))";
3285 $sql = sprintf(" AND (`item`.`private` != %d", self::PRIVATE) . $sql_set . ")";
3292 * get translated item type
3297 public static function postType($item)
3299 if (!empty($item['event-id'])) {
3300 return DI::l10n()->t('event');
3301 } elseif (!empty($item['resource-id'])) {
3302 return DI::l10n()->t('photo');
3303 } elseif ($item['gravity'] == GRAVITY_ACTIVITY) {
3304 return DI::l10n()->t('activity');
3305 } elseif ($item['gravity'] == GRAVITY_COMMENT) {
3306 return DI::l10n()->t('comment');
3309 return DI::l10n()->t('post');
3313 * Sets the "rendered-html" field of the provided item
3315 * Body is preserved to avoid side-effects as we modify it just-in-time for spoilers and private image links
3317 * @param array $item
3318 * @param bool $update
3320 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3321 * @todo Remove reference, simply return "rendered-html" and "rendered-hash"
3323 public static function putInCache(&$item, $update = false)
3325 $body = $item["body"];
3327 $rendered_hash = $item['rendered-hash'] ?? '';
3328 $rendered_html = $item['rendered-html'] ?? '';
3330 if ($rendered_hash == ''
3331 || $rendered_html == ""
3332 || $rendered_hash != hash("md5", $item["body"])
3333 || DI::config()->get("system", "ignore_cache")
3335 self::addRedirToImageTags($item);
3337 $item["rendered-html"] = BBCode::convert($item["body"]);
3338 $item["rendered-hash"] = hash("md5", $item["body"]);
3340 $hook_data = ['item' => $item, 'rendered-html' => $item['rendered-html'], 'rendered-hash' => $item['rendered-hash']];
3341 Hook::callAll('put_item_in_cache', $hook_data);
3342 $item['rendered-html'] = $hook_data['rendered-html'];
3343 $item['rendered-hash'] = $hook_data['rendered-hash'];
3346 // Force an update if the generated values differ from the existing ones
3347 if ($rendered_hash != $item["rendered-hash"]) {
3351 // Only compare the HTML when we forcefully ignore the cache
3352 if (DI::config()->get("system", "ignore_cache") && ($rendered_html != $item["rendered-html"])) {
3356 if ($update && !empty($item["id"])) {
3359 'rendered-html' => $item["rendered-html"],
3360 'rendered-hash' => $item["rendered-hash"]
3362 ['id' => $item["id"]]
3367 $item["body"] = $body;
3371 * Find any non-embedded images in private items and add redir links to them
3373 * @param array &$item The field array of an item row
3375 private static function addRedirToImageTags(array &$item)
3380 $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
3382 foreach ($matches as $mtch) {
3383 if (strpos($mtch[1], '/redir') !== false) {
3387 if ((local_user() == $item['uid']) && ($item['private'] == self::PRIVATE) && ($item['contact-id'] != $app->contact['id']) && ($item['network'] == Protocol::DFRN)) {
3388 $img_url = 'redir/' . $item['contact-id'] . '?url=' . urlencode($mtch[1]);
3389 $item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
3396 * Given an item array, convert the body element from bbcode to html and add smilie icons.
3397 * If attach is true, also add icons for item attachments.
3399 * @param array $item
3400 * @param boolean $attach
3401 * @param boolean $is_preview
3402 * @return string item body html
3403 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3404 * @throws \ImagickException
3405 * @hook prepare_body_init item array before any work
3406 * @hook prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
3407 * @hook prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
3408 * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
3410 public static function prepareBody(array &$item, $attach = false, $is_preview = false)
3413 Hook::callAll('prepare_body_init', $item);
3415 // In order to provide theme developers more possibilities, event items
3416 // are treated differently.
3417 if ($item['object-type'] === Activity\ObjectType::EVENT && isset($item['event-id'])) {
3418 $ev = Event::getItemHTML($item);
3422 $tags = Tag::populateFromItem($item);
3424 $item['tags'] = $tags['tags'];
3425 $item['hashtags'] = $tags['hashtags'];
3426 $item['mentions'] = $tags['mentions'];
3428 // Compile eventual content filter reasons
3429 $filter_reasons = [];
3430 if (!$is_preview && public_contact() != $item['author-id']) {
3431 if (!empty($item['content-warning']) && (!local_user() || !DI::pConfig()->get(local_user(), 'system', 'disable_cw', false))) {
3432 $filter_reasons[] = DI::l10n()->t('Content warning: %s', $item['content-warning']);
3437 'filter_reasons' => $filter_reasons
3439 Hook::callAll('prepare_body_content_filter', $hook_data);
3440 $filter_reasons = $hook_data['filter_reasons'];
3444 // Update the cached values if there is no "zrl=..." on the links.
3445 $update = (!Session::isAuthenticated() && ($item["uid"] == 0));
3447 // Or update it if the current viewer is the intented viewer.
3448 if (($item["uid"] == local_user()) && ($item["uid"] != 0)) {
3452 self::putInCache($item, $update);
3453 $s = $item["rendered-html"];
3458 'preview' => $is_preview,
3459 'filter_reasons' => $filter_reasons
3461 Hook::callAll('prepare_body', $hook_data);
3462 $s = $hook_data['html'];
3466 // Replace the blockquotes with quotes that are used in mails.
3467 $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
3468 $s = str_replace(['<blockquote>', '<blockquote class="spoiler">', '<blockquote class="author">'], [$mailquote, $mailquote, $mailquote], $s);
3475 preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\"(?: title=\"(.*?)\")?|', $item['attach'], $matches, PREG_SET_ORDER);
3476 foreach ($matches as $mtch) {
3479 $the_url = Contact::magicLinkById($item['author-id'], $mtch[1]);
3481 if (strpos($mime, 'video') !== false) {
3484 DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('videos_head.tpl'));
3487 $url_parts = explode('/', $the_url);
3488 $id = end($url_parts);
3489 $as .= Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [
3492 'title' => DI::l10n()->t('View Video'),
3499 $filetype = strtolower(substr($mime, 0, strpos($mime, '/')));
3501 $filesubtype = strtolower(substr($mime, strpos($mime, '/') + 1));
3502 $filesubtype = str_replace('.', '-', $filesubtype);
3505 $filesubtype = 'unkn';
3508 $title = Strings::escapeHtml(trim(($mtch[4] ?? '') ?: $mtch[1]));
3509 $title .= ' ' . $mtch[2] . ' ' . DI::l10n()->t('bytes');
3511 $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
3512 $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" rel="noopener noreferrer" >' . $icon . '</a>';
3516 $s .= '<div class="body-attach">'.$as.'<div class="clear"></div></div>';
3520 if (strpos($s, '<div class="map">') !== false && !empty($item['coord'])) {
3521 $x = Map::byCoordinates(trim($item['coord']));
3523 $s = preg_replace('/\<div class\=\"map\"\>/', '$0' . $x, $s);
3527 // Replace friendica image url size with theme preference.
3528 if (!empty($a->theme_info['item_image_size'])) {
3529 $ps = $a->theme_info['item_image_size'];
3530 $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
3533 $s = HTML::applyContentFilter($s, $filter_reasons);
3535 $hook_data = ['item' => $item, 'html' => $s];
3536 Hook::callAll('prepare_body_final', $hook_data);
3538 return $hook_data['html'];
3542 * get private link for item
3544 * @param array $item
3545 * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
3546 * @throws \Exception
3548 public static function getPlink($item)
3552 'href' => "display/" . $item['guid'],
3553 'orig' => "display/" . $item['guid'],
3554 'title' => DI::l10n()->t('View on separate page'),
3555 'orig_title' => DI::l10n()->t('view on separate page'),
3558 if (!empty($item['plink'])) {
3559 $ret["href"] = DI::baseUrl()->remove($item['plink']);
3560 $ret["title"] = DI::l10n()->t('link to source');
3562 } elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
3564 'href' => $item['plink'],
3565 'orig' => $item['plink'],
3566 'title' => DI::l10n()->t('link to source'),
3576 * Is the given item array a post that is sent as starting post to a forum?
3578 * @param array $item
3579 * @param array $owner
3581 * @return boolean "true" when it is a forum post
3583 public static function isForumPost(array $item, array $owner = [])
3585 if (empty($owner)) {
3586 $owner = User::getOwnerDataById($item['uid']);
3587 if (empty($owner)) {
3592 if (($item['author-id'] == $item['owner-id']) ||
3593 ($owner['id'] == $item['contact-id']) ||
3594 ($item['uri'] != $item['parent-uri']) ||
3599 return Contact::isForum($item['contact-id']);
3603 * Search item id for given URI or plink
3605 * @param string $uri
3606 * @param integer $uid
3608 * @return integer item id
3610 public static function searchByLink($uri, $uid = 0)
3612 $ssl_uri = str_replace('http://', 'https://', $uri);
3613 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3615 $item = DBA::selectFirst('item', ['id'], ['uri' => $uris, 'uid' => $uid]);
3616 if (DBA::isResult($item)) {
3620 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3621 if (!DBA::isResult($itemcontent)) {
3625 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3626 if (!DBA::isResult($itemuri)) {
3630 $item = DBA::selectFirst('item', ['id'], ['uri' => $itemuri['uri'], 'uid' => $uid]);
3631 if (DBA::isResult($item)) {
3639 * Return the URI for a link to the post
3641 * @param string $uri URI or link to post
3643 * @return string URI
3645 public static function getURIByLink(string $uri)
3647 $ssl_uri = str_replace('http://', 'https://', $uri);
3648 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3650 $item = DBA::selectFirst('item', ['uri'], ['uri' => $uris]);
3651 if (DBA::isResult($item)) {
3652 return $item['uri'];
3655 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3656 if (!DBA::isResult($itemcontent)) {
3660 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3661 if (DBA::isResult($itemuri)) {
3662 return $itemuri['uri'];
3669 * Fetches item for given URI or plink
3671 * @param string $uri
3672 * @param integer $uid
3674 * @return integer item id
3676 public static function fetchByLink($uri, $uid = 0)
3678 $item_id = self::searchByLink($uri, $uid);
3679 if (!empty($item_id)) {
3683 if ($fetched_uri = ActivityPub\Processor::fetchMissingActivity($uri)) {
3684 $item_id = self::searchByLink($fetched_uri, $uid);
3686 $item_id = Diaspora::fetchByURL($uri);
3689 if (!empty($item_id)) {
3697 * Return share data from an item array (if the item is shared item)
3698 * We are providing the complete Item array, because at some time in the future
3699 * we hopefully will define these values not in the body anymore but in some item fields.
3700 * This function is meant to replace all similar functions in the system.
3702 * @param array $item
3704 * @return array with share information
3706 public static function getShareArray($item)
3708 if (!preg_match("/(.*?)\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", $item['body'], $matches)) {
3712 $attribute_string = $matches[2];
3713 $attributes = ['comment' => trim($matches[1]), 'shared' => trim($matches[3])];
3714 foreach (['author', 'profile', 'avatar', 'guid', 'posted', 'link'] as $field) {
3715 if (preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches)) {
3716 $attributes[$field] = trim(html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8'));
3723 * Fetch item information for shared items from the original items and adds it.
3725 * @param array $item
3727 * @return array item array with data from the original item
3729 public static function addShareDataFromOriginal($item)
3731 $shared = self::getShareArray($item);
3732 if (empty($shared)) {
3736 // Real reshares always have got a GUID.
3737 if (empty($shared['guid'])) {
3741 $uid = $item['uid'] ?? 0;
3743 // first try to fetch the item via the GUID. This will work for all reshares that had been created on this system
3744 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['guid' => $shared['guid'], 'uid' => [0, $uid]]);
3745 if (!DBA::isResult($shared_item)) {
3746 if (empty($shared['link'])) {
3750 // Otherwhise try to find (and possibly fetch) the item via the link. This should work for Diaspora and ActivityPub posts
3751 $id = self::fetchByLink($shared['link'], $uid);
3753 Logger::info('Original item not found', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3757 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['id' => $id]);
3758 if (!DBA::isResult($shared_item)) {
3761 Logger::info('Got shared data from url', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3763 Logger::info('Got shared data from guid', ['guid' => $shared['guid'], 'callstack' => System::callstack()]);
3766 if (!empty($shared_item['title'])) {
3767 $body = '[h3]' . $shared_item['title'] . "[/h3]\n" . $shared_item['body'];
3768 unset($shared_item['title']);
3770 $body = $shared_item['body'];
3773 $item['body'] = preg_replace("/\[share ([^\[\]]*)\].*\[\/share\]/ism", '[share $1]' . $body . '[/share]', $item['body']);
3774 unset($shared_item['body']);
3776 return array_merge($item, $shared_item);