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;
35 use Friendica\Model\Post\Category;
36 use Friendica\Protocol\Activity;
37 use Friendica\Protocol\ActivityPub;
38 use Friendica\Protocol\Diaspora;
39 use Friendica\Util\DateTimeFormat;
40 use Friendica\Util\Map;
41 use Friendica\Util\Network;
42 use Friendica\Util\Security;
43 use Friendica\Util\Strings;
44 use Friendica\Worker\Delivery;
45 use Text_LanguageDetect;
46 use Friendica\Repository\PermissionSet as RepPermissionSet;
50 // Posting types, inspired by https://www.w3.org/TR/activitystreams-vocabulary/#object-types
57 const PT_DOCUMENT = 19;
59 const PT_PERSONAL_NOTE = 128;
61 // Field list that is used to display the items
62 const DISPLAY_FIELDLIST = [
63 'uid', 'id', 'parent', 'uri-id', 'uri', 'thr-parent', 'parent-uri', 'guid', 'network', 'gravity',
64 'commented', 'created', 'edited', 'received', 'verb', 'object-type', 'postopts', 'plink',
65 'wall', 'private', 'starred', 'origin', 'title', 'body', 'file', 'attach', 'language',
66 'content-warning', 'location', 'coord', 'app', 'rendered-hash', 'rendered-html', 'object',
67 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'item_id',
68 'author-id', 'author-link', 'author-name', 'author-avatar', 'author-network',
69 'owner-id', 'owner-link', 'owner-name', 'owner-avatar', 'owner-network',
70 'contact-id', 'contact-uid', 'contact-link', 'contact-name', 'contact-avatar',
71 'writable', 'self', 'cid', 'alias', 'pinned',
72 'event-id', 'event-created', 'event-edited', 'event-start', 'event-finish',
73 'event-summary', 'event-desc', 'event-location', 'event-type',
74 'event-nofinish', 'event-adjust', 'event-ignore', 'event-id',
75 'delivery_queue_count', 'delivery_queue_done', 'delivery_queue_failed', 'activity'
78 // Field list that is used to deliver items via the protocols
79 const DELIVER_FIELDLIST = ['uid', 'id', 'parent', 'uri-id', 'uri', 'thr-parent', 'parent-uri', 'guid',
80 'parent-guid', 'created', 'edited', 'verb', 'object-type', 'object', 'target',
81 'private', 'title', 'body', 'location', 'coord', 'app',
82 'attach', 'deleted', 'extid', 'post-type',
83 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
84 'author-id', 'author-link', 'owner-link', 'contact-uid',
85 'signed_text', 'signature', 'signer', 'network'];
87 // Field list for "item-content" table that is mixed with the item table
88 const MIXED_CONTENT_FIELDLIST = ['title', 'content-warning', 'body', 'location',
89 'coord', 'app', 'rendered-hash', 'rendered-html', 'verb',
90 'object-type', 'object', 'target-type', 'target', 'plink'];
92 // Field list for "item-content" table that is not present in the "item" table
93 const CONTENT_FIELDLIST = ['language'];
95 // All fields in the item table
96 const ITEM_FIELDLIST = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent',
97 'guid', 'uri-id', 'parent-uri-id', 'thr-parent-id', 'vid',
98 'contact-id', 'type', 'wall', 'gravity', 'extid', 'icid', 'psid',
99 'created', 'edited', 'commented', 'received', 'changed', 'verb',
100 'postopts', 'plink', 'resource-id', 'event-id', 'attach', 'inform',
101 'file', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'post-type',
102 'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
103 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global', 'network',
104 'title', 'content-warning', 'body', 'location', 'coord', 'app',
105 'rendered-hash', 'rendered-html', 'object-type', 'object', 'target-type', 'target',
106 'author-id', 'author-link', 'author-name', 'author-avatar', 'author-network',
107 'owner-id', 'owner-link', 'owner-name', 'owner-avatar'];
109 // List of all verbs that don't need additional content data.
110 // Never reorder or remove entries from this list. Just add new ones at the end, if needed.
112 Activity::LIKE, Activity::DISLIKE,
113 Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE,
121 private static $legacy_mode = null;
123 public static function isLegacyMode()
125 if (is_null(self::$legacy_mode)) {
126 self::$legacy_mode = (DI::config()->get("system", "post_update_version") < 1279);
129 return self::$legacy_mode;
133 * Set the pinned state of an item
135 * @param integer $iid Item ID
136 * @param integer $uid User ID
137 * @param boolean $pinned Pinned state
139 public static function setPinned(int $iid, int $uid, bool $pinned)
141 DBA::update('user-item', ['pinned' => $pinned], ['iid' => $iid, 'uid' => $uid], true);
145 * Get the pinned state
147 * @param integer $iid Item ID
148 * @param integer $uid User ID
150 * @return boolean pinned state
152 public static function getPinned(int $iid, int $uid)
154 $useritem = DBA::selectFirst('user-item', ['pinned'], ['iid' => $iid, 'uid' => $uid]);
155 if (!DBA::isResult($useritem)) {
158 return (bool)$useritem['pinned'];
162 * Select pinned rows from the item table for a given user
164 * @param integer $uid User ID
165 * @param array $selected Array of selected fields, empty for all
166 * @param array $condition Array of fields for condition
167 * @param array $params Array of several parameters
169 * @return boolean|object
172 public static function selectPinned(int $uid, array $selected = [], array $condition = [], $params = [])
174 $useritems = DBA::select('user-item', ['iid'], ['uid' => $uid, 'pinned' => true]);
175 if (!DBA::isResult($useritems)) {
180 while ($useritem = DBA::fetch($useritems)) {
181 $pinned[] = $useritem['iid'];
183 DBA::close($useritems);
185 if (empty($pinned)) {
189 if (empty($condition) || !is_array($condition)) {
190 $condition = ['iid' => $pinned];
193 $first_key = key($condition);
194 if (!is_int($first_key)) {
195 $condition['iid'] = $pinned;
197 $values_string = substr(str_repeat("?, ", count($pinned)), 0, -2);
198 $condition[0] = '(' . $condition[0] . ") AND `iid` IN (" . $values_string . ")";
199 $condition = array_merge($condition, $pinned);
203 return self::selectThreadForUser($uid, $selected, $condition, $params);
207 * Fetch a single item row
209 * @param mixed $stmt statement object
210 * @return array current row
212 public static function fetch($stmt)
214 $row = DBA::fetch($stmt);
220 // ---------------------- Transform item structure data ----------------------
222 // We prefer the data from the user's contact over the public one
223 if (!empty($row['author-link']) && !empty($row['contact-link']) &&
224 ($row['author-link'] == $row['contact-link'])) {
225 if (isset($row['author-avatar']) && !empty($row['contact-avatar'])) {
226 $row['author-avatar'] = $row['contact-avatar'];
228 if (isset($row['author-name']) && !empty($row['contact-name'])) {
229 $row['author-name'] = $row['contact-name'];
233 if (!empty($row['owner-link']) && !empty($row['contact-link']) &&
234 ($row['owner-link'] == $row['contact-link'])) {
235 if (isset($row['owner-avatar']) && !empty($row['contact-avatar'])) {
236 $row['owner-avatar'] = $row['contact-avatar'];
238 if (isset($row['owner-name']) && !empty($row['contact-name'])) {
239 $row['owner-name'] = $row['contact-name'];
243 // We can always comment on posts from these networks
244 if (array_key_exists('writable', $row) &&
245 in_array($row['internal-network'], Protocol::FEDERATED)) {
246 $row['writable'] = true;
249 // ---------------------- Transform item content data ----------------------
251 // Fetch data from the item-content table whenever there is content there
252 if (self::isLegacyMode()) {
253 $legacy_fields = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, self::MIXED_CONTENT_FIELDLIST);
254 foreach ($legacy_fields as $field) {
255 if (empty($row[$field]) && !empty($row['internal-item-' . $field])) {
256 $row[$field] = $row['internal-item-' . $field];
258 unset($row['internal-item-' . $field]);
262 if (array_key_exists('verb', $row)) {
263 if (!is_null($row['internal-verb'])) {
264 $row['verb'] = $row['internal-verb'];
267 if (in_array($row['verb'], self::ACTIVITIES)) {
268 if (array_key_exists('title', $row)) {
271 if (array_key_exists('body', $row)) {
272 $row['body'] = $row['verb'];
274 if (array_key_exists('object', $row)) {
277 if (array_key_exists('object-type', $row)) {
278 $row['object-type'] = Activity\ObjectType::NOTE;
280 } elseif (in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
281 // Posts don't have a target - but having tags or files.
282 if (array_key_exists('target', $row)) {
288 if (!array_key_exists('verb', $row) || in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
289 // Build the file string out of the term entries
290 if (array_key_exists('file', $row) && empty($row['file'])) {
291 $row['file'] = Category::getTextByURIId($row['internal-uri-id'], $row['internal-uid']);
295 if ($row['internal-psid'] == RepPermissionSet::PUBLIC) {
296 if (array_key_exists('allow_cid', $row)) {
297 $row['allow_cid'] = '';
299 if (array_key_exists('allow_gid', $row)) {
300 $row['allow_gid'] = '';
302 if (array_key_exists('deny_cid', $row)) {
303 $row['deny_cid'] = '';
305 if (array_key_exists('deny_gid', $row)) {
306 $row['deny_gid'] = '';
310 if (array_key_exists('ignored', $row) && array_key_exists('internal-user-ignored', $row) && !is_null($row['internal-user-ignored'])) {
311 $row['ignored'] = $row['internal-user-ignored'];
314 // Remove internal fields
315 unset($row['internal-network']);
316 unset($row['internal-uri-id']);
317 unset($row['internal-uid']);
318 unset($row['internal-psid']);
319 unset($row['internal-verb']);
320 unset($row['internal-user-ignored']);
321 unset($row['interaction']);
327 * Fills an array with data from an item query
329 * @param object $stmt statement object
330 * @param bool $do_close
331 * @return array Data array
333 public static function inArray($stmt, $do_close = true) {
334 if (is_bool($stmt)) {
339 while ($row = self::fetch($stmt)) {
349 * Check if item data exists
351 * @param array $condition array of fields for condition
353 * @return boolean Are there rows for that condition?
356 public static function exists($condition) {
357 $stmt = self::select(['id'], $condition, ['limit' => 1]);
359 if (is_bool($stmt)) {
362 $retval = (DBA::numRows($stmt) > 0);
371 * Retrieve a single record from the item table for a given user and returns it in an associative array
373 * @param integer $uid User ID
374 * @param array $selected
375 * @param array $condition
376 * @param array $params
381 public static function selectFirstForUser($uid, array $selected = [], array $condition = [], $params = [])
383 $params['uid'] = $uid;
385 if (empty($selected)) {
386 $selected = Item::DISPLAY_FIELDLIST;
389 return self::selectFirst($selected, $condition, $params);
393 * Select rows from the item table for a given user
395 * @param integer $uid User ID
396 * @param array $selected Array of selected fields, empty for all
397 * @param array $condition Array of fields for condition
398 * @param array $params Array of several parameters
400 * @return boolean|object
403 public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [])
405 $params['uid'] = $uid;
407 if (empty($selected)) {
408 $selected = Item::DISPLAY_FIELDLIST;
411 return self::select($selected, $condition, $params);
415 * Retrieve a single record from the item table and returns it in an associative array
417 * @param array $fields
418 * @param array $condition
419 * @param array $params
424 public static function selectFirst(array $fields = [], array $condition = [], $params = [])
426 $params['limit'] = 1;
428 $result = self::select($fields, $condition, $params);
430 if (is_bool($result)) {
433 $row = self::fetch($result);
440 * Select rows from the item table and returns them as an array
442 * @param array $selected Array of selected fields, empty for all
443 * @param array $condition Array of fields for condition
444 * @param array $params Array of several parameters
449 public static function selectToArray(array $fields = [], array $condition = [], $params = [])
451 $result = self::select($fields, $condition, $params);
453 if (is_bool($result)) {
458 while ($row = self::fetch($result)) {
467 * Select rows from the item table
469 * @param array $selected Array of selected fields, empty for all
470 * @param array $condition Array of fields for condition
471 * @param array $params Array of several parameters
473 * @return boolean|object
476 public static function select(array $selected = [], array $condition = [], $params = [])
481 if (isset($params['uid'])) {
482 $uid = $params['uid'];
486 $fields = self::fieldlist($usermode);
488 $select_fields = self::constructSelectFields($fields, $selected);
490 $condition_string = DBA::buildCondition($condition);
492 $condition_string = self::addTablesToFields($condition_string, $fields);
495 $condition_string = $condition_string . ' AND ' . self::condition(false);
498 $param_string = self::addTablesToFields(DBA::buildParameter($params), $fields);
500 $table = "`item` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, false, $usermode);
502 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
504 return DBA::p($sql, $condition);
508 * Select rows from the starting post in the item table
510 * @param integer $uid User ID
511 * @param array $selected
512 * @param array $condition Array of fields for condition
513 * @param array $params Array of several parameters
515 * @return boolean|object
518 public static function selectThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
520 $params['uid'] = $uid;
522 if (empty($selected)) {
523 $selected = Item::DISPLAY_FIELDLIST;
526 return self::selectThread($selected, $condition, $params);
530 * Retrieve a single record from the starting post in the item table and returns it in an associative array
532 * @param integer $uid User ID
533 * @param array $selected
534 * @param array $condition
535 * @param array $params
540 public static function selectFirstThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
542 $params['uid'] = $uid;
544 if (empty($selected)) {
545 $selected = Item::DISPLAY_FIELDLIST;
548 return self::selectFirstThread($selected, $condition, $params);
552 * Retrieve a single record from the starting post in the item table and returns it in an associative array
554 * @param array $fields
555 * @param array $condition
556 * @param array $params
561 public static function selectFirstThread(array $fields = [], array $condition = [], $params = [])
563 $params['limit'] = 1;
564 $result = self::selectThread($fields, $condition, $params);
566 if (is_bool($result)) {
569 $row = self::fetch($result);
576 * Select rows from the starting post in the item table
578 * @param array $selected Array of selected fields, empty for all
579 * @param array $condition Array of fields for condition
580 * @param array $params Array of several parameters
582 * @return boolean|object
585 public static function selectThread(array $selected = [], array $condition = [], $params = [])
590 if (isset($params['uid'])) {
591 $uid = $params['uid'];
595 $fields = self::fieldlist($usermode);
597 $fields['thread'] = ['mention', 'ignored', 'iid'];
599 $threadfields = ['thread' => ['iid', 'uid', 'contact-id', 'owner-id', 'author-id',
600 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private',
601 'pubmail', 'moderated', 'visible', 'starred', 'ignored', 'post-type',
602 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'network']];
604 $select_fields = self::constructSelectFields($fields, $selected);
606 $condition_string = DBA::buildCondition($condition);
608 $condition_string = self::addTablesToFields($condition_string, $threadfields);
609 $condition_string = self::addTablesToFields($condition_string, $fields);
612 $condition_string = $condition_string . ' AND ' . self::condition(true);
615 $param_string = DBA::buildParameter($params);
616 $param_string = self::addTablesToFields($param_string, $threadfields);
617 $param_string = self::addTablesToFields($param_string, $fields);
619 $table = "`thread` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, true, $usermode);
621 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
623 return DBA::p($sql, $condition);
627 * Returns a list of fields that are associated with the item table
630 * @return array field list
632 private static function fieldlist($usermode)
636 $fields['item'] = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent',
637 'guid', 'uri-id', 'parent-uri-id', 'thr-parent-id', 'vid',
638 'contact-id', 'owner-id', 'author-id', 'type', 'wall', 'gravity', 'extid',
639 'created', 'edited', 'commented', 'received', 'changed', 'psid',
640 'resource-id', 'event-id', 'attach', 'post-type', 'file',
641 'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
642 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global',
643 'id' => 'item_id', 'network', 'icid',
644 'uri-id' => 'internal-uri-id', 'uid' => 'internal-uid',
645 'network' => 'internal-network', 'psid' => 'internal-psid'];
648 $fields['user-item'] = ['pinned', 'notification-type', 'ignored' => 'internal-user-ignored'];
651 $fields['item-content'] = array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST);
653 $fields['post-delivery-data'] = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, Post\DeliveryData::FIELD_LIST);
655 $fields['verb'] = ['name' => 'internal-verb'];
657 $fields['permissionset'] = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
659 $fields['author'] = ['url' => 'author-link', 'name' => 'author-name', 'addr' => 'author-addr',
660 'thumb' => 'author-avatar', 'nick' => 'author-nick', 'network' => 'author-network'];
662 $fields['owner'] = ['url' => 'owner-link', 'name' => 'owner-name', 'addr' => 'owner-addr',
663 'thumb' => 'owner-avatar', 'nick' => 'owner-nick', 'network' => 'owner-network'];
665 $fields['contact'] = ['url' => 'contact-link', 'name' => 'contact-name', 'thumb' => 'contact-avatar',
666 'writable', 'self', 'id' => 'cid', 'alias', 'uid' => 'contact-uid',
667 'photo', 'name-date', 'uri-date', 'avatar-date', 'thumb', 'dfrn-id'];
669 $fields['parent-item'] = ['guid' => 'parent-guid', 'network' => 'parent-network'];
671 $fields['parent-item-author'] = ['url' => 'parent-author-link', 'name' => 'parent-author-name'];
673 $fields['event'] = ['created' => 'event-created', 'edited' => 'event-edited',
674 'start' => 'event-start','finish' => 'event-finish',
675 'summary' => 'event-summary','desc' => 'event-desc',
676 'location' => 'event-location', 'type' => 'event-type',
677 'nofinish' => 'event-nofinish','adjust' => 'event-adjust',
678 'ignore' => 'event-ignore', 'id' => 'event-id'];
680 $fields['diaspora-interaction'] = ['interaction', 'interaction' => 'signed_text'];
686 * Returns SQL condition for the "select" functions
688 * @param boolean $thread_mode Called for the items (false) or for the threads (true)
690 * @return string SQL condition
692 private static function condition($thread_mode)
695 $master_table = "`thread`";
697 $master_table = "`item`";
699 return sprintf("$master_table.`visible` AND NOT $master_table.`deleted` AND NOT $master_table.`moderated`
700 AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
701 AND (`user-author`.`blocked` IS NULL OR NOT `user-author`.`blocked`)
702 AND (`user-author`.`ignored` IS NULL OR NOT `user-author`.`ignored` OR `item`.`gravity` != %d)
703 AND (`user-owner`.`blocked` IS NULL OR NOT `user-owner`.`blocked`)
704 AND (`user-owner`.`ignored` IS NULL OR NOT `user-owner`.`ignored` OR `item`.`gravity` != %d) ",
705 GRAVITY_PARENT, GRAVITY_PARENT);
709 * Returns all needed "JOIN" commands for the "select" functions
711 * @param integer $uid User ID
712 * @param string $sql_commands The parts of the built SQL commands in the "select" functions
713 * @param boolean $thread_mode Called for the items (false) or for the threads (true)
716 * @return string The SQL joins for the "select" functions
718 private static function constructJoins($uid, $sql_commands, $thread_mode, $user_mode)
721 $master_table = "`thread`";
722 $master_table_key = "`thread`.`iid`";
723 $joins = "STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` ";
725 $master_table = "`item`";
726 $master_table_key = "`item`.`id`";
731 $joins .= sprintf("STRAIGHT_JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`
732 AND NOT `contact`.`blocked`
733 AND ((NOT `contact`.`readonly` AND NOT `contact`.`pending` AND (`contact`.`rel` IN (%s, %s)))
734 OR `contact`.`self` OR `item`.`gravity` != %d OR `contact`.`uid` = 0)
735 STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id` AND NOT `author`.`blocked`
736 STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id` AND NOT `owner`.`blocked`
737 LEFT JOIN `user-item` ON `user-item`.`iid` = $master_table_key AND `user-item`.`uid` = %d
738 LEFT JOIN `user-contact` AS `user-author` ON `user-author`.`cid` = $master_table.`author-id` AND `user-author`.`uid` = %d
739 LEFT JOIN `user-contact` AS `user-owner` ON `user-owner`.`cid` = $master_table.`owner-id` AND `user-owner`.`uid` = %d",
740 Contact::SHARING, Contact::FRIEND, GRAVITY_PARENT, intval($uid), intval($uid), intval($uid));
742 if (strpos($sql_commands, "`contact`.") !== false) {
743 $joins .= "LEFT JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`";
745 if (strpos($sql_commands, "`author`.") !== false) {
746 $joins .= " LEFT JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id`";
748 if (strpos($sql_commands, "`owner`.") !== false) {
749 $joins .= " LEFT JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id`";
753 if (strpos($sql_commands, "`group_member`.") !== false) {
754 $joins .= " STRAIGHT_JOIN `group_member` ON `group_member`.`contact-id` = $master_table.`contact-id`";
757 if (strpos($sql_commands, "`user`.") !== false) {
758 $joins .= " STRAIGHT_JOIN `user` ON `user`.`uid` = $master_table.`uid`";
761 if (strpos($sql_commands, "`event`.") !== false) {
762 $joins .= " LEFT JOIN `event` ON `event-id` = `event`.`id`";
765 if (strpos($sql_commands, "`diaspora-interaction`.") !== false) {
766 $joins .= " LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `item`.`uri-id`";
769 if (strpos($sql_commands, "`item-content`.") !== false) {
770 $joins .= " LEFT JOIN `item-content` ON `item-content`.`uri-id` = `item`.`uri-id`";
773 if (strpos($sql_commands, "`post-delivery-data`.") !== false) {
774 $joins .= " LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `item`.`uri-id` AND `item`.`origin`";
777 if (strpos($sql_commands, "`verb`.") !== false) {
778 $joins .= " LEFT JOIN `verb` ON `verb`.`id` = `item`.`vid`";
781 if (strpos($sql_commands, "`permissionset`.") !== false) {
782 $joins .= " LEFT JOIN `permissionset` ON `permissionset`.`id` = `item`.`psid`";
785 if ((strpos($sql_commands, "`parent-item`.") !== false) || (strpos($sql_commands, "`parent-author`.") !== false)) {
786 $joins .= " STRAIGHT_JOIN `item` AS `parent-item` ON `parent-item`.`id` = `item`.`parent`";
789 if (strpos($sql_commands, "`parent-item-author`.") !== false) {
790 $joins .= " STRAIGHT_JOIN `contact` AS `parent-item-author` ON `parent-item-author`.`id` = `parent-item`.`author-id`";
797 * Add the field list for the "select" functions
799 * @param array $fields The field definition array
800 * @param array $selected The array with the selected fields from the "select" functions
802 * @return string The field list
804 private static function constructSelectFields(array $fields, array $selected)
806 if (!empty($selected)) {
807 $selected = array_merge($selected, ['internal-uri-id', 'internal-uid', 'internal-psid', 'internal-network']);
810 if (in_array('verb', $selected)) {
811 $selected = array_merge($selected, ['internal-verb']);
814 if (in_array('ignored', $selected)) {
815 $selected[] = 'internal-user-ignored';
818 $legacy_fields = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, self::MIXED_CONTENT_FIELDLIST);
821 foreach ($fields as $table => $table_fields) {
822 foreach ($table_fields as $field => $select) {
823 if (empty($selected) || in_array($select, $selected)) {
824 if (self::isLegacyMode() && in_array($select, $legacy_fields)) {
825 $selection[] = "`item`.`".$select."` AS `internal-item-" . $select . "`";
827 if (is_int($field)) {
828 $selection[] = "`" . $table . "`.`" . $select . "`";
830 $selection[] = "`" . $table . "`.`" . $field . "` AS `" . $select . "`";
835 return implode(", ", $selection);
839 * add table definition to fields in an SQL query
841 * @param string $query SQL query
842 * @param array $fields The field definition array
844 * @return string the changed SQL query
846 private static function addTablesToFields($query, $fields)
848 foreach ($fields as $table => $table_fields) {
849 foreach ($table_fields as $alias => $field) {
850 if (is_int($alias)) {
851 $replace_field = $field;
853 $replace_field = $alias;
856 $search = "/([^\.])`" . $field . "`/i";
857 $replace = "$1`" . $table . "`.`" . $replace_field . "`";
858 $query = preg_replace($search, $replace, $query);
865 * Update existing item entries
867 * @param array $fields The fields that are to be changed
868 * @param array $condition The condition for finding the item entries
870 * In the future we may have to change permissions as well.
871 * Then we had to add the user id as third parameter.
873 * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
875 * @return integer|boolean number of affected rows - or "false" if there was an error
876 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
878 public static function update(array $fields, array $condition)
880 if (empty($condition) || empty($fields)) {
884 // To ensure the data integrity we do it in an transaction
887 // We cannot simply expand the condition to check for origin entries
888 // The condition needn't to be a simple array but could be a complex condition.
889 // And we have to execute this query before the update to ensure to fetch the same data.
890 $items = DBA::select('item', ['id', 'origin', 'uri', 'uri-id', 'icid', 'uid', 'file'], $condition);
892 $content_fields = [];
893 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
894 if (isset($fields[$field])) {
895 $content_fields[$field] = $fields[$field];
896 if (in_array($field, self::CONTENT_FIELDLIST) || !self::isLegacyMode()) {
897 unset($fields[$field]);
899 $fields[$field] = null;
904 $delivery_data = Post\DeliveryData::extractFields($fields);
906 $clear_fields = ['bookmark', 'type', 'author-name', 'author-avatar', 'author-link', 'owner-name', 'owner-avatar', 'owner-link', 'postopts', 'inform'];
907 foreach ($clear_fields as $field) {
908 if (array_key_exists($field, $fields)) {
909 $fields[$field] = null;
913 if (array_key_exists('file', $fields)) {
914 $files = $fields['file'];
915 $fields['file'] = null;
920 if (!empty($content_fields['verb'])) {
921 $fields['vid'] = Verb::getID($content_fields['verb']);
924 if (!empty($fields)) {
925 $success = DBA::update('item', $fields, $condition);
934 // When there is no content for the "old" item table, this will count the fetched items
935 $rows = DBA::affectedRows();
939 while ($item = DBA::fetch($items)) {
940 if (empty($content_fields['verb']) || !in_array($content_fields['verb'], self::ACTIVITIES)) {
941 self::updateContent($content_fields, ['uri-id' => $item['uri-id']]);
943 if (empty($item['icid'])) {
944 $item_content = DBA::selectFirst('item-content', [], ['uri-id' => $item['uri-id']]);
945 if (DBA::isResult($item_content)) {
946 $item_fields = ['icid' => $item_content['id']];
947 // Clear all fields in the item table that have a content in the item-content table
948 if (self::isLegacyMode()) {
949 foreach ($item_content as $field => $content) {
950 if (in_array($field, self::MIXED_CONTENT_FIELDLIST) && !empty($content)) {
951 $item_fields[$field] = null;
955 DBA::update('item', $item_fields, ['id' => $item['id']]);
960 if (!is_null($files)) {
961 Category::storeTextByURIId($item['uri-id'], $item['uid'], $files);
962 if (!empty($item['file'])) {
963 DBA::update('item', ['file' => ''], ['id' => $item['id']]);
967 Post\DeliveryData::update($item['uri-id'], $delivery_data);
969 self::updateThread($item['id']);
971 // We only need to notfiy others when it is an original entry from us.
972 // Only call the notifier when the item has some content relevant change.
973 if ($item['origin'] && in_array('edited', array_keys($fields))) {
974 $notify_items[] = $item['id'];
981 foreach ($notify_items as $notify_item) {
982 Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $notify_item);
989 * Delete an item and notify others about it - if it was ours
991 * @param array $condition The condition for finding the item entries
992 * @param integer $priority Priority for the notification
993 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
995 public static function markForDeletion($condition, $priority = PRIORITY_HIGH)
997 $items = self::select(['id'], $condition);
998 while ($item = self::fetch($items)) {
999 self::markForDeletionById($item['id'], $priority);
1005 * Delete an item for an user and notify others about it - if it was ours
1007 * @param array $condition The condition for finding the item entries
1008 * @param integer $uid User who wants to delete this item
1009 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1011 public static function deleteForUser($condition, $uid)
1017 $items = self::select(['id', 'uid'], $condition);
1018 while ($item = self::fetch($items)) {
1019 // "Deleting" global items just means hiding them
1020 if ($item['uid'] == 0) {
1021 DBA::update('user-item', ['hidden' => true], ['iid' => $item['id'], 'uid' => $uid], true);
1023 // Delete notifications
1024 DBA::delete('notify', ['iid' => $item['id'], 'uid' => $uid]);
1025 } elseif ($item['uid'] == $uid) {
1026 self::markForDeletionById($item['id'], PRIORITY_HIGH);
1028 Logger::log('Wrong ownership. Not deleting item ' . $item['id']);
1035 * Mark an item for deletion, delete related data and notify others about it - if it was ours
1037 * @param integer $item_id
1038 * @param integer $priority Priority for the notification
1040 * @return boolean success
1041 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1043 public static function markForDeletionById($item_id, $priority = PRIORITY_HIGH)
1045 Logger::info('Mark item for deletion by id', ['id' => $item_id, 'callstack' => System::callstack()]);
1046 // locate item to be deleted
1047 $fields = ['id', 'uri', 'uri-id', 'uid', 'parent', 'parent-uri', 'origin',
1048 'deleted', 'file', 'resource-id', 'event-id', 'attach',
1049 'verb', 'object-type', 'object', 'target', 'contact-id',
1051 $item = self::selectFirst($fields, ['id' => $item_id]);
1052 if (!DBA::isResult($item)) {
1053 Logger::info('Item not found.', ['id' => $item_id]);
1057 if ($item['deleted']) {
1058 Logger::info('Item has already been marked for deletion.', ['id' => $item_id]);
1062 $parent = self::selectFirst(['origin'], ['id' => $item['parent']]);
1063 if (!DBA::isResult($parent)) {
1064 $parent = ['origin' => false];
1067 // clean up categories and tags so they don't end up as orphans
1070 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
1073 foreach ($matches as $mtch) {
1074 FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],true);
1080 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
1083 foreach ($matches as $mtch) {
1084 FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],false);
1089 * If item is a link to a photo resource, nuke all the associated photos
1090 * (visitors will not have photo resources)
1091 * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
1092 * generate a resource-id and therefore aren't intimately linked to the item.
1094 /// @TODO: this should first check if photo is used elsewhere
1095 if (strlen($item['resource-id'])) {
1096 Photo::delete(['resource-id' => $item['resource-id'], 'uid' => $item['uid']]);
1099 // If item is a link to an event, delete the event.
1100 if (intval($item['event-id'])) {
1101 Event::delete($item['event-id']);
1104 // If item has attachments, drop them
1105 /// @TODO: this should first check if attachment is used elsewhere
1106 foreach (explode(",", $item['attach']) as $attach) {
1107 preg_match("|attach/(\d+)|", $attach, $matches);
1108 if (is_array($matches) && count($matches) > 1) {
1109 Attach::delete(['id' => $matches[1], 'uid' => $item['uid']]);
1113 // Delete notifications
1114 DBA::delete('notify', ['iid' => $item['id'], 'uid' => $item['uid']]);
1116 // Set the item to "deleted"
1117 $item_fields = ['deleted' => true, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
1118 DBA::update('item', $item_fields, ['id' => $item['id']]);
1120 Category::storeTextByURIId($item['uri-id'], $item['uid'], '');
1121 self::deleteThread($item['id'], $item['parent-uri']);
1123 if (!self::exists(["`uri` = ? AND `uid` != 0 AND NOT `deleted`", $item['uri']])) {
1124 self::markForDeletion(['uri' => $item['uri'], 'uid' => 0, 'deleted' => false], $priority);
1127 Post\DeliveryData::delete($item['uri-id']);
1129 if (!empty($item['icid']) && !self::exists(['icid' => $item['icid'], 'deleted' => false])) {
1130 DBA::delete('item-content', ['id' => $item['icid']], ['cascade' => false]);
1132 // When the permission set will be used in photo and events as well,
1133 // this query here needs to be extended.
1134 // @todo Currently deactivated. We need the permission set in the deletion process.
1135 // This is a reminder to add the removal somewhere else.
1136 //if (!empty($item['psid']) && !self::exists(['psid' => $item['psid'], 'deleted' => false])) {
1137 // DBA::delete('permissionset', ['id' => $item['psid']], ['cascade' => false]);
1140 // If it's the parent of a comment thread, kill all the kids
1141 if ($item['id'] == $item['parent']) {
1142 self::markForDeletion(['parent' => $item['parent'], 'deleted' => false], $priority);
1145 // Is it our comment and/or our thread?
1146 if ($item['origin'] || $parent['origin']) {
1147 // When we delete the original post we will delete all existing copies on the server as well
1148 self::markForDeletion(['uri' => $item['uri'], 'deleted' => false], $priority);
1150 // send the notification upstream/downstream
1151 Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", Delivery::DELETION, intval($item['id']));
1152 } elseif ($item['uid'] != 0) {
1154 // When we delete just our local user copy of an item, we have to set a marker to hide it
1155 $global_item = self::selectFirst(['id'], ['uri' => $item['uri'], 'uid' => 0, 'deleted' => false]);
1156 if (DBA::isResult($global_item)) {
1157 DBA::update('user-item', ['hidden' => true], ['iid' => $global_item['id'], 'uid' => $item['uid']], true);
1161 Logger::info('Item has been marked for deletion.', ['id' => $item_id]);
1167 private static function guid($item, $notify)
1169 if (!empty($item['guid'])) {
1170 return Strings::escapeTags(trim($item['guid']));
1174 // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
1175 // We add the hash of our own host because our host is the original creator of the post.
1176 $prefix_host = DI::baseUrl()->getHostname();
1180 // We are only storing the post so we create a GUID from the original hostname.
1181 if (!empty($item['author-link'])) {
1182 $parsed = parse_url($item['author-link']);
1183 if (!empty($parsed['host'])) {
1184 $prefix_host = $parsed['host'];
1188 if (empty($prefix_host) && !empty($item['plink'])) {
1189 $parsed = parse_url($item['plink']);
1190 if (!empty($parsed['host'])) {
1191 $prefix_host = $parsed['host'];
1195 if (empty($prefix_host) && !empty($item['uri'])) {
1196 $parsed = parse_url($item['uri']);
1197 if (!empty($parsed['host'])) {
1198 $prefix_host = $parsed['host'];
1202 // Is it in the format data@host.tld? - Used for mail contacts
1203 if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
1204 $mailparts = explode('@', $item['author-link']);
1205 $prefix_host = array_pop($mailparts);
1209 if (!empty($item['plink'])) {
1210 $guid = self::guidFromUri($item['plink'], $prefix_host);
1211 } elseif (!empty($item['uri'])) {
1212 $guid = self::guidFromUri($item['uri'], $prefix_host);
1214 $guid = System::createUUID(hash('crc32', $prefix_host));
1220 private static function contactId($item)
1222 if (!empty($item['contact-id']) && DBA::exists('contact', ['self' => true, 'id' => $item['contact-id']])) {
1223 return $item['contact-id'];
1224 } elseif (($item['gravity'] == GRAVITY_PARENT) && !empty($item['uid']) && !empty($item['contact-id']) && Contact::isSharing($item['contact-id'], $item['uid'])) {
1225 return $item['contact-id'];
1226 } elseif (!empty($item['uid']) && !Contact::isSharing($item['author-id'], $item['uid'])) {
1227 return $item['author-id'];
1228 } elseif (!empty($item['contact-id'])) {
1229 return $item['contact-id'];
1231 $contact_id = Contact::getIdForURL($item['author-link'], $item['uid']);
1232 if (!empty($contact_id)) {
1236 return $item['author-id'];
1239 // This function will finally cover most of the preparation functionality in mod/item.php
1240 public static function prepare(&$item)
1243 * @TODO: Unused code triggering inspection errors
1245 $data = BBCode::getAttachmentData($item['body']);
1246 if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $item['body'], $match, PREG_SET_ORDER) || isset($data["type"]))
1247 && ($posttype != Item::PT_PERSONAL_NOTE)) {
1248 $posttype = Item::PT_PAGE;
1249 $objecttype = ACTIVITY_OBJ_BOOKMARK;
1255 * Write an item array into a spool file to be inserted later.
1256 * This command is called whenever there are issues storing an item.
1258 * @param array $item The item fields that are to be inserted
1259 * @throws \Exception
1261 private static function spool($orig_item)
1263 // Now we store the data in the spool directory
1264 // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
1265 $file = 'item-' . round(microtime(true) * 10000) . '-' . mt_rand() . '.msg';
1267 $spoolpath = get_spoolpath();
1268 if ($spoolpath != "") {
1269 $spool = $spoolpath . '/' . $file;
1271 file_put_contents($spool, json_encode($orig_item));
1272 Logger::warning("Item wasn't stored - Item was spooled into file", ['file' => $file]);
1277 * Check if the item array is a duplicate
1279 * @param array $item
1280 * @return boolean is it a duplicate?
1282 private static function isDuplicate(array $item)
1284 // Checking if there is already an item with the same guid
1285 $condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
1286 if (self::exists($condition)) {
1287 Logger::notice('Found already existing item', [
1288 'guid' => $item['guid'],
1289 'uid' => $item['uid'],
1290 'network' => $item['network']
1295 $condition = ["`uri` = ? AND `network` IN (?, ?) AND `uid` = ?",
1296 $item['uri'], $item['network'], Protocol::DFRN, $item['uid']];
1297 if (self::exists($condition)) {
1298 Logger::notice('duplicated item with the same uri found.', $item);
1302 // On Friendica and Diaspora the GUID is unique
1303 if (in_array($item['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
1304 $condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
1305 if (self::exists($condition)) {
1306 Logger::notice('duplicated item with the same guid found.', $item);
1309 } elseif ($item['network'] == Protocol::OSTATUS) {
1310 // Check for an existing post with the same content. There seems to be a problem with OStatus.
1311 $condition = ["`body` = ? AND `network` = ? AND `created` = ? AND `contact-id` = ? AND `uid` = ?",
1312 $item['body'], $item['network'], $item['created'], $item['contact-id'], $item['uid']];
1313 if (self::exists($condition)) {
1314 Logger::notice('duplicated item with the same body found.', $item);
1320 * Check for already added items.
1321 * There is a timing issue here that sometimes creates double postings.
1322 * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
1324 if (($item['uid'] == 0) && self::exists(['uri' => trim($item['uri']), 'uid' => 0])) {
1325 Logger::notice('Global item already stored.', ['uri' => $item['uri'], 'network' => $item['network']]);
1333 * Check if the item array is valid
1335 * @param array $item
1336 * @return boolean item is valid
1338 private static function isValid(array $item)
1340 // When there is no content then we don't post it
1341 if ($item['body'].$item['title'] == '') {
1342 Logger::notice('No body, no title.');
1346 // check for create date and expire time
1347 $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0);
1349 $user = DBA::selectFirst('user', ['expire'], ['uid' => $item['uid']]);
1350 if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
1351 $expire_interval = $user['expire'];
1354 if (($expire_interval > 0) && !empty($item['created'])) {
1355 $expire_date = time() - ($expire_interval * 86400);
1356 $created_date = strtotime($item['created']);
1357 if ($created_date < $expire_date) {
1358 Logger::notice('Item created before expiration interval.', [
1359 'created' => date('c', $created_date),
1360 'expired' => date('c', $expire_date),
1367 if (Contact::isBlocked($item['author-id'])) {
1368 Logger::notice('Author is blocked node-wide', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
1372 if (!empty($item['author-link']) && Network::isUrlBlocked($item['author-link'])) {
1373 Logger::notice('Author server is blocked', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
1377 if (!empty($item['uid']) && Contact::isBlockedByUser($item['author-id'], $item['uid'])) {
1378 Logger::notice('Author is blocked by user', ['author-link' => $item['author-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1382 if (Contact::isBlocked($item['owner-id'])) {
1383 Logger::notice('Owner is blocked node-wide', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
1387 if (!empty($item['owner-link']) && Network::isUrlBlocked($item['owner-link'])) {
1388 Logger::notice('Owner server is blocked', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
1392 if (!empty($item['uid']) && Contact::isBlockedByUser($item['owner-id'], $item['uid'])) {
1393 Logger::notice('Owner is blocked by user', ['owner-link' => $item['owner-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1397 // The causer is set during a thread completion, for example because of a reshare. It countains the responsible actor.
1398 if (!empty($item['uid']) && !empty($item['causer-id']) && Contact::isBlockedByUser($item['causer-id'], $item['uid'])) {
1399 Logger::notice('Causer is blocked by user', ['causer-link' => $item['causer-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1403 if (!empty($item['uid']) && !empty($item['causer-id']) && ($item['parent-uri'] == $item['uri']) && Contact::isIgnoredByUser($item['causer-id'], $item['uid'])) {
1404 Logger::notice('Causer is ignored by user', ['causer-link' => $item['causer-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1408 if ($item['verb'] == Activity::FOLLOW) {
1409 if (!$item['origin'] && ($item['author-id'] == Contact::getPublicIdByUserId($item['uid']))) {
1410 // Our own follow request can be relayed to us. We don't store it to avoid notification chaos.
1411 Logger::info("Follow: Don't store not origin follow request", ['parent-uri' => $item['parent-uri']]);
1415 $condition = ['verb' => Activity::FOLLOW, 'uid' => $item['uid'],
1416 'parent-uri' => $item['parent-uri'], 'author-id' => $item['author-id']];
1417 if (self::exists($condition)) {
1418 // It happens that we receive multiple follow requests by the same author - we only store one.
1419 Logger::info('Follow: Found existing follow request from author', ['author-id' => $item['author-id'], 'parent-uri' => $item['parent-uri']]);
1428 * Return the id of the given item array if it has been stored before
1430 * @param array $item
1431 * @return integer item id
1433 private static function getDuplicateID(array $item)
1435 if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
1436 $condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?, ?)",
1437 trim($item['uri']), $item['uid'],
1438 Protocol::ACTIVITYPUB, Protocol::DIASPORA, Protocol::DFRN, Protocol::OSTATUS];
1439 $existing = self::selectFirst(['id', 'network'], $condition);
1440 if (DBA::isResult($existing)) {
1441 // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
1442 if ($item['uid'] != 0) {
1443 Logger::notice('Item already existed for user', [
1444 'uri' => $item['uri'],
1445 'uid' => $item['uid'],
1446 'network' => $item['network'],
1447 'existing_id' => $existing["id"],
1448 'existing_network' => $existing["network"]
1452 return $existing["id"];
1459 * Fetch parent data for the given item array
1461 * @param array $item
1462 * @return array item array with parent data
1464 private static function getParentData(array $item)
1466 // find the parent and snarf the item id and ACLs
1467 // and anything else we need to inherit
1469 $fields = ['uri', 'parent-uri', 'id', 'deleted',
1470 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
1471 'wall', 'private', 'forum_mode', 'origin', 'author-id'];
1472 $condition = ['uri' => $item['parent-uri'], 'uid' => $item['uid']];
1473 $params = ['order' => ['id' => false]];
1474 $parent = self::selectFirst($fields, $condition, $params);
1476 if (!DBA::isResult($parent)) {
1477 Logger::info('item parent was not found - ignoring item', ['parent-uri' => $item['parent-uri'], 'uid' => $item['uid']]);
1480 // is the new message multi-level threaded?
1481 // even though we don't support it now, preserve the info
1482 // and re-attach to the conversation parent.
1483 if ($parent['uri'] != $parent['parent-uri']) {
1484 $item['parent-uri'] = $parent['parent-uri'];
1486 $condition = ['uri' => $item['parent-uri'],
1487 'parent-uri' => $item['parent-uri'],
1488 'uid' => $item['uid']];
1489 $params = ['order' => ['id' => false]];
1490 $toplevel_parent = self::selectFirst($fields, $condition, $params);
1492 if (DBA::isResult($toplevel_parent)) {
1493 $parent = $toplevel_parent;
1497 $item["parent"] = $parent['id'];
1498 $item["deleted"] = $parent['deleted'];
1499 $item["allow_cid"] = $parent['allow_cid'];
1500 $item['allow_gid'] = $parent['allow_gid'];
1501 $item['deny_cid'] = $parent['deny_cid'];
1502 $item['deny_gid'] = $parent['deny_gid'];
1503 $item['parent_origin'] = $parent['origin'];
1505 // Don't federate received participation messages
1506 if ($item['verb'] != Activity::FOLLOW) {
1507 $item['wall'] = $parent['wall'];
1509 $item['wall'] = false;
1513 * If the parent is private, force privacy for the entire conversation
1514 * This differs from the above settings as it subtly allows comments from
1515 * email correspondents to be private even if the overall thread is not.
1517 if ($parent['private']) {
1518 $item['private'] = $parent['private'];
1522 * Edge case. We host a public forum that was originally posted to privately.
1523 * The original author commented, but as this is a comment, the permissions
1524 * weren't fixed up so it will still show the comment as private unless we fix it here.
1526 if ((intval($parent['forum_mode']) == 1) && ($parent['private'] != self::PUBLIC)) {
1527 $item['private'] = self::PUBLIC;
1530 // If its a post that originated here then tag the thread as "mention"
1531 if ($item['origin'] && $item['uid']) {
1532 DBA::update('thread', ['mention' => true], ['iid' => $item["parent"]]);
1533 Logger::info('tagged thread as mention', ['parent' => $item["parent"], 'uid' => $item['uid']]);
1536 // Update the contact relations
1537 if ($item['author-id'] != $parent['author-id']) {
1538 DBA::update('contact-relation', ['last-interaction' => $item['created']], ['cid' => $parent['author-id'], 'relation-cid' => $item['author-id']], true);
1546 * Get the gravity for the given item array
1548 * @param array $item
1549 * @return integer gravity
1551 private static function getGravity(array $item)
1553 $activity = DI::activity();
1555 if (isset($item['gravity'])) {
1556 return intval($item['gravity']);
1557 } elseif ($item['parent-uri'] === $item['uri']) {
1558 return GRAVITY_PARENT;
1559 } elseif ($activity->match($item['verb'], Activity::POST)) {
1560 return GRAVITY_COMMENT;
1561 } elseif ($activity->match($item['verb'], Activity::FOLLOW)) {
1562 return GRAVITY_ACTIVITY;
1564 Logger::info('Unknown gravity for verb', ['verb' => $item['verb']]);
1565 return GRAVITY_UNKNOWN; // Should not happen
1568 public static function insert($item, $notify = false, $dontcache = false)
1572 $priority = PRIORITY_HIGH;
1574 // If it is a posting where users should get notifications, then define it as wall posting
1577 $item['origin'] = 1;
1578 $item['network'] = Protocol::DFRN;
1579 $item['protocol'] = Conversation::PARCEL_DFRN;
1581 if (is_int($notify)) {
1582 $priority = $notify;
1585 $item['network'] = trim(($item['network'] ?? '') ?: Protocol::PHANTOM);
1588 $uid = intval($item['uid']);
1590 $item['guid'] = self::guid($item, $notify);
1591 $item['uri'] = substr(Strings::escapeTags(trim(($item['uri'] ?? '') ?: self::newURI($item['uid'], $item['guid']))), 0, 255);
1594 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
1596 // Store conversation data
1597 $item = Conversation::insert($item);
1599 if (!empty($item['thr-parent'])) {
1600 $item['parent-uri'] = $item['thr-parent'];
1604 * Do we already have this item?
1605 * We have to check several networks since Friendica posts could be repeated
1606 * via OStatus (maybe Diasporsa as well)
1608 $duplicate = self::getDuplicateID($item);
1613 // Additional duplicate checks
1614 /// @todo Check why the first duplication check returns the item number and the second a 0
1615 if (self::isDuplicate($item)) {
1619 $item['wall'] = intval($item['wall'] ?? 0);
1620 $item['extid'] = trim($item['extid'] ?? '');
1621 $item['author-name'] = trim($item['author-name'] ?? '');
1622 $item['author-link'] = trim($item['author-link'] ?? '');
1623 $item['author-avatar'] = trim($item['author-avatar'] ?? '');
1624 $item['owner-name'] = trim($item['owner-name'] ?? '');
1625 $item['owner-link'] = trim($item['owner-link'] ?? '');
1626 $item['owner-avatar'] = trim($item['owner-avatar'] ?? '');
1627 $item['received'] = (isset($item['received']) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
1628 $item['created'] = (isset($item['created']) ? DateTimeFormat::utc($item['created']) : $item['received']);
1629 $item['edited'] = (isset($item['edited']) ? DateTimeFormat::utc($item['edited']) : $item['created']);
1630 $item['changed'] = (isset($item['changed']) ? DateTimeFormat::utc($item['changed']) : $item['created']);
1631 $item['commented'] = (isset($item['commented']) ? DateTimeFormat::utc($item['commented']) : $item['created']);
1632 $item['title'] = substr(trim($item['title'] ?? ''), 0, 255);
1633 $item['location'] = trim($item['location'] ?? '');
1634 $item['coord'] = trim($item['coord'] ?? '');
1635 $item['visible'] = (isset($item['visible']) ? intval($item['visible']) : 1);
1636 $item['deleted'] = 0;
1637 $item['parent-uri'] = trim(($item['parent-uri'] ?? '') ?: $item['uri']);
1638 $item['post-type'] = ($item['post-type'] ?? '') ?: self::PT_ARTICLE;
1639 $item['verb'] = trim($item['verb'] ?? '');
1640 $item['object-type'] = trim($item['object-type'] ?? '');
1641 $item['object'] = trim($item['object'] ?? '');
1642 $item['target-type'] = trim($item['target-type'] ?? '');
1643 $item['target'] = trim($item['target'] ?? '');
1644 $item['plink'] = substr(trim($item['plink'] ?? ''), 0, 255);
1645 $item['allow_cid'] = trim($item['allow_cid'] ?? '');
1646 $item['allow_gid'] = trim($item['allow_gid'] ?? '');
1647 $item['deny_cid'] = trim($item['deny_cid'] ?? '');
1648 $item['deny_gid'] = trim($item['deny_gid'] ?? '');
1649 $item['private'] = intval($item['private'] ?? self::PUBLIC);
1650 $item['body'] = trim($item['body'] ?? '');
1651 $item['attach'] = trim($item['attach'] ?? '');
1652 $item['app'] = trim($item['app'] ?? '');
1653 $item['origin'] = intval($item['origin'] ?? 0);
1654 $item['postopts'] = trim($item['postopts'] ?? '');
1655 $item['resource-id'] = trim($item['resource-id'] ?? '');
1656 $item['event-id'] = intval($item['event-id'] ?? 0);
1657 $item['inform'] = trim($item['inform'] ?? '');
1658 $item['file'] = trim($item['file'] ?? '');
1660 // Items cannot be stored before they happen ...
1661 if ($item['created'] > DateTimeFormat::utcNow()) {
1662 $item['created'] = DateTimeFormat::utcNow();
1665 // We haven't invented time travel by now.
1666 if ($item['edited'] > DateTimeFormat::utcNow()) {
1667 $item['edited'] = DateTimeFormat::utcNow();
1670 $item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
1672 $item['language'] = self::getLanguage($item);
1674 $item['gravity'] = self::getGravity($item);
1676 $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
1677 'photo' => $item['author-avatar'], 'network' => $item['network']];
1678 $item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, false, $default);
1680 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
1681 'photo' => $item['owner-avatar'], 'network' => $item['network']];
1682 $item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, false, $default);
1684 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
1685 $item["contact-id"] = self::contactId($item);
1687 if (!self::isValid($item)) {
1691 // We don't store the causer, we only have it here for the checks in the function above
1692 unset($item['causer-id']);
1693 unset($item['causer-link']);
1695 // We don't store these fields anymore in the item table
1696 unset($item['author-link']);
1697 unset($item['author-name']);
1698 unset($item['author-avatar']);
1699 unset($item['author-network']);
1701 unset($item['owner-link']);
1702 unset($item['owner-name']);
1703 unset($item['owner-avatar']);
1705 $item['thr-parent'] = $item['parent-uri'];
1707 if ($item['parent-uri'] != $item['uri']) {
1708 $item = self::getParentData($item);
1713 $parent_id = $item['parent'];
1714 unset($item['parent']);
1715 $parent_origin = $item['parent_origin'];
1716 unset($item['parent_origin']);
1719 $parent_origin = $item['origin'];
1722 $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
1723 $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
1725 // Is this item available in the global items (with uid=0)?
1726 if ($item["uid"] == 0) {
1727 $item["global"] = true;
1729 // Set the global flag on all items if this was a global item entry
1730 DBA::update('item', ['global' => true], ['uri' => $item["uri"]]);
1732 $item["global"] = self::exists(['uid' => 0, 'uri' => $item["uri"]]);
1736 if (!empty($item["allow_cid"] . $item["allow_gid"] . $item["deny_cid"] . $item["deny_gid"])) {
1737 $item["private"] = self::PRIVATE;
1741 $item['edit'] = false;
1742 $item['parent'] = $parent_id;
1743 Hook::callAll('post_local', $item);
1744 unset($item['edit']);
1745 unset($item['parent']);
1747 Hook::callAll('post_remote', $item);
1750 if (!empty($item['cancel'])) {
1751 Logger::log('post cancelled by addon.');
1755 if (empty($item['vid']) && !empty($item['verb'])) {
1756 $item['vid'] = Verb::getID($item['verb']);
1759 // Creates or assigns the permission set
1760 $item['psid'] = PermissionSet::getIdFromACL(
1768 unset($item['allow_cid']);
1769 unset($item['allow_gid']);
1770 unset($item['deny_cid']);
1771 unset($item['deny_gid']);
1773 // This array field is used to trigger some automatic reactions
1774 // It is mainly used in the "post_local" hook.
1775 unset($item['api_source']);
1778 // Check for hashtags in the body and repair or add hashtag links
1779 self::setHashtags($item);
1781 // Fill the cache field
1782 self::putInCache($item);
1784 if (stristr($item['verb'], Activity::POKE)) {
1785 $notify_type = Delivery::POKE;
1787 $notify_type = Delivery::POST;
1790 $like_no_comment = DI::config()->get('system', 'like_no_comment');
1794 if (!in_array($item['verb'], self::ACTIVITIES)) {
1795 $item['icid'] = self::insertContent($item);
1798 $body = $item['body'];
1800 // We just remove everything that is content
1801 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1802 unset($item[$field]);
1805 // Filling item related side tables
1807 // Diaspora signature
1808 if (!empty($item['diaspora_signed_text'])) {
1809 DBA::insert('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $item['diaspora_signed_text']], true);
1812 unset($item['diaspora_signed_text']);
1814 // Attached file links
1815 if (!empty($item['file'])) {
1816 Category::storeTextByURIId($item['uri-id'], $item['uid'], $item['file']);
1819 unset($item['file']);
1821 // Delivery relevant data
1822 $delivery_data = Post\DeliveryData::extractFields($item);
1823 unset($item['postopts']);
1824 unset($item['inform']);
1826 if (!empty($item['origin']) || !empty($item['wall']) || !empty($delivery_data['postopts']) || !empty($delivery_data['inform'])) {
1827 Post\DeliveryData::insert($item['uri-id'], $delivery_data);
1830 // Store tags from the body if this hadn't been handled previously in the protocol classes
1831 if (!Tag::existsForPost($item['uri-id'])) {
1832 Tag::storeFromBody($item['uri-id'], $body);
1835 $ret = DBA::insert('item', $item);
1837 // When the item was successfully stored we fetch the ID of the item.
1838 if (DBA::isResult($ret)) {
1839 $current_post = DBA::lastInsertId();
1841 // This can happen - for example - if there are locking timeouts.
1844 // Store the data into a spool file so that we can try again later.
1845 self::spool($orig_item);
1849 if ($current_post == 0) {
1850 // This is one of these error messages that never should occur.
1851 Logger::log("couldn't find created item - we better quit now.");
1856 // How much entries have we created?
1857 // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
1858 $entries = DBA::count('item', ['uri' => $item['uri'], 'uid' => $item['uid'], 'network' => $item['network']]);
1861 // There are duplicates. We delete our just created entry.
1862 Logger::info('Delete duplicated item', ['id' => $current_post, 'uri' => $item['uri'], 'uid' => $item['uid'], 'guid' => $item['guid']]);
1864 // Yes, we could do a rollback here - but we possibly are still having users with MyISAM.
1865 DBA::delete('item', ['id' => $current_post]);
1868 } elseif ($entries == 0) {
1869 // This really should never happen since we quit earlier if there were problems.
1870 Logger::log("Something is terribly wrong. We haven't found our created entry.");
1875 Logger::log('created item '.$current_post);
1877 if (!$parent_id || ($item['parent-uri'] === $item['uri'])) {
1878 $parent_id = $current_post;
1882 DBA::update('item', ['parent' => $parent_id], ['id' => $current_post]);
1884 $item['id'] = $current_post;
1885 $item['parent'] = $parent_id;
1887 // update the commented timestamp on the parent
1888 // Only update "commented" if it is really a comment
1889 if (($item['gravity'] != GRAVITY_ACTIVITY) || !$like_no_comment) {
1890 DBA::update('item', ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1892 DBA::update('item', ['changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1895 if ($item['parent-uri'] === $item['uri']) {
1896 self::addThread($current_post);
1898 self::updateThread($parent_id);
1902 // In that function we check if this is a forum post. Additionally we delete the item under certain circumstances
1903 if (self::tagDeliver($item['uid'], $current_post)) {
1904 // Get the user information for the logging
1905 $user = User::getById($uid);
1907 Logger::notice('Item had been deleted', ['id' => $current_post, 'user' => $uid, 'account-type' => $user['account-type']]);
1912 $posted_item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $current_post]);
1913 if (DBA::isResult($posted_item)) {
1915 Hook::callAll('post_local_end', $posted_item);
1917 Hook::callAll('post_remote_end', $posted_item);
1920 Logger::log('new item not found in DB, id ' . $current_post);
1924 if ($item['parent-uri'] === $item['uri']) {
1925 self::addShadow($current_post);
1927 self::addShadowPost($current_post);
1930 self::updateContact($item);
1932 UserItem::setNotification($current_post);
1934 check_user_notification($current_post);
1936 $transmit = $notify || ($item['visible'] && ($parent_origin || $item['origin']));
1939 $transmit_item = Item::selectFirst(['verb', 'origin'], ['id' => $item['id']]);
1940 // Don't relay participation messages
1941 if (($transmit_item['verb'] == Activity::FOLLOW) &&
1942 (!$transmit_item['origin'] || ($item['author-id'] != Contact::getPublicIdByUserId($uid)))) {
1943 Logger::info('Participation messages will not be relayed', ['item' => $item['id'], 'uri' => $item['uri'], 'verb' => $transmit_item['verb']]);
1949 Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, $current_post);
1952 return $current_post;
1956 * Insert a new item content entry
1958 * @param array $item The item fields that are to be inserted
1959 * @throws \Exception
1961 private static function insertContent(array $item)
1963 $fields = ['uri-plink-hash' => (string)$item['uri-id'], 'uri-id' => $item['uri-id']];
1965 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1966 if (isset($item[$field])) {
1967 $fields[$field] = $item[$field];
1971 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
1972 if (DBA::isResult($item_content)) {
1973 $icid = $item_content['id'];
1974 Logger::info('Content found', ['icid' => $icid, 'uri' => $item['uri']]);
1978 DBA::insert('item-content', $fields, true);
1979 $icid = DBA::lastInsertId();
1981 Logger::info('Content inserted', ['icid' => $icid, 'uri' => $item['uri']]);
1985 // Possibly there can be timing issues. Then the same content could be inserted multiple times.
1986 // Due to the indexes this doesn't happen, but "lastInsertId" will be empty in these situations.
1987 // So we have to fetch the id manually. This is no bug and there is no data loss.
1988 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
1989 if (DBA::isResult($item_content)) {
1990 $icid = $item_content['id'];
1991 Logger::notice('Content inserted with empty lastInsertId', ['icid' => $icid, 'uri' => $item['uri']]);
1995 // This shouldn't happen.
1996 Logger::error("Content wasn't inserted", $item);
2001 * Update existing item content entries
2003 * @param array $item The item fields that are to be changed
2004 * @param array $condition The condition for finding the item content entries
2005 * @throws \Exception
2007 private static function updateContent($item, $condition)
2009 // We have to select only the fields from the "item-content" table
2011 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2012 if (isset($item[$field])) {
2013 $fields[$field] = $item[$field];
2017 if (empty($fields)) {
2018 // when there are no fields at all, just use the condition
2019 // This is to ensure that we always store content.
2020 $fields = $condition;
2023 DBA::update('item-content', $fields, $condition, true);
2024 Logger::info('Updated content', ['condition' => $condition]);
2028 * Distributes public items to the receivers
2030 * @param integer $itemid Item ID that should be added
2031 * @param string $signed_text Original text (for Diaspora signatures), JSON encoded.
2032 * @throws \Exception
2034 public static function distribute($itemid, $signed_text = '')
2036 $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
2037 $parent = self::selectFirst(['owner-id'], $condition);
2038 if (!DBA::isResult($parent)) {
2042 // Only distribute public items from native networks
2043 $condition = ['id' => $itemid, 'uid' => 0,
2044 'network' => array_merge(Protocol::FEDERATED ,['']),
2045 'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => [self::PUBLIC, self::UNLISTED]];
2046 $item = self::selectFirst(self::ITEM_FIELDLIST, $condition);
2047 if (!DBA::isResult($item)) {
2051 $origin = $item['origin'];
2054 unset($item['parent']);
2055 unset($item['mention']);
2056 unset($item['wall']);
2057 unset($item['origin']);
2058 unset($item['starred']);
2062 /// @todo add a field "pcid" in the contact table that referrs to the public contact id.
2063 $owner = DBA::selectFirst('contact', ['url', 'nurl', 'alias'], ['id' => $parent['owner-id']]);
2064 if (!DBA::isResult($owner)) {
2068 $condition = ['nurl' => $owner['nurl'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2069 $contacts = DBA::select('contact', ['uid'], $condition);
2070 while ($contact = DBA::fetch($contacts)) {
2071 if ($contact['uid'] == 0) {
2075 $users[$contact['uid']] = $contact['uid'];
2077 DBA::close($contacts);
2079 $condition = ['alias' => $owner['url'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2080 $contacts = DBA::select('contact', ['uid'], $condition);
2081 while ($contact = DBA::fetch($contacts)) {
2082 if ($contact['uid'] == 0) {
2086 $users[$contact['uid']] = $contact['uid'];
2088 DBA::close($contacts);
2090 if (!empty($owner['alias'])) {
2091 $condition = ['url' => $owner['alias'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2092 $contacts = DBA::select('contact', ['uid'], $condition);
2093 while ($contact = DBA::fetch($contacts)) {
2094 if ($contact['uid'] == 0) {
2098 $users[$contact['uid']] = $contact['uid'];
2100 DBA::close($contacts);
2105 if ($item['uri'] != $item['parent-uri']) {
2106 $parents = self::select(['uid', 'origin'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
2107 while ($parent = self::fetch($parents)) {
2108 $users[$parent['uid']] = $parent['uid'];
2109 if ($parent['origin'] && !$origin) {
2110 $origin_uid = $parent['uid'];
2115 foreach ($users as $uid) {
2116 if ($origin_uid == $uid) {
2117 $item['diaspora_signed_text'] = $signed_text;
2119 self::storeForUser($itemid, $item, $uid);
2124 * Store public items for the receivers
2126 * @param integer $itemid Item ID that should be added
2127 * @param array $item The item entry that will be stored
2128 * @param integer $uid The user that will receive the item entry
2129 * @throws \Exception
2131 private static function storeForUser($itemid, $item, $uid)
2133 $item['uid'] = $uid;
2134 $item['origin'] = 0;
2136 if ($item['uri'] == $item['parent-uri']) {
2137 $item['contact-id'] = Contact::getIdForURL($item['owner-link'], $uid);
2139 $item['contact-id'] = Contact::getIdForURL($item['author-link'], $uid);
2142 if (empty($item['contact-id'])) {
2143 $self = DBA::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
2144 if (!DBA::isResult($self)) {
2147 $item['contact-id'] = $self['id'];
2150 /// @todo Handling of "event-id"
2153 if ($item['uri'] == $item['parent-uri']) {
2154 $contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
2155 if (DBA::isResult($contact)) {
2156 $notify = self::isRemoteSelf($contact, $item);
2160 $distributed = self::insert($item, $notify, true);
2162 if (!$distributed) {
2163 Logger::log("Distributed public item " . $itemid . " for user " . $uid . " wasn't stored", Logger::DEBUG);
2165 Logger::log("Distributed public item " . $itemid . " for user " . $uid . " with id " . $distributed, Logger::DEBUG);
2170 * Add a shadow entry for a given item id that is a thread starter
2172 * We store every public item entry additionally with the user id "0".
2173 * This is used for the community page and for the search.
2174 * It is planned that in the future we will store public item entries only once.
2176 * @param integer $itemid Item ID that should be added
2177 * @throws \Exception
2179 public static function addShadow($itemid)
2181 $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network', 'uri'];
2182 $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
2183 $item = self::selectFirst($fields, $condition);
2185 if (!DBA::isResult($item)) {
2189 // is it already a copy?
2190 if (($itemid == 0) || ($item['uid'] == 0)) {
2194 // Is it a visible public post?
2195 if (!$item["visible"] || $item["deleted"] || $item["moderated"] || ($item["private"] == Item::PRIVATE)) {
2199 // is it an entry from a connector? Only add an entry for natively connected networks
2200 if (!in_array($item["network"], array_merge(Protocol::FEDERATED ,['']))) {
2204 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2208 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2210 if (DBA::isResult($item)) {
2211 // Preparing public shadow (removing user specific data)
2214 unset($item['parent']);
2215 unset($item['wall']);
2216 unset($item['mention']);
2217 unset($item['origin']);
2218 unset($item['starred']);
2219 unset($item['postopts']);
2220 unset($item['inform']);
2221 if ($item['uri'] == $item['parent-uri']) {
2222 $item['contact-id'] = $item['owner-id'];
2224 $item['contact-id'] = $item['author-id'];
2227 $public_shadow = self::insert($item, false, true);
2229 Logger::log("Stored public shadow for thread ".$itemid." under id ".$public_shadow, Logger::DEBUG);
2234 * Add a shadow entry for a given item id that is a comment
2236 * This function does the same like the function above - but for comments
2238 * @param integer $itemid Item ID that should be added
2239 * @throws \Exception
2241 public static function addShadowPost($itemid)
2243 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2244 if (!DBA::isResult($item)) {
2248 // Is it a toplevel post?
2249 if ($item['id'] == $item['parent']) {
2250 self::addShadow($itemid);
2254 // Is this a shadow entry?
2255 if ($item['uid'] == 0) {
2259 // Is there a shadow parent?
2260 if (!self::exists(['uri' => $item['parent-uri'], 'uid' => 0])) {
2264 // Is there already a shadow entry?
2265 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2269 // Save "origin" and "parent" state
2270 $origin = $item['origin'];
2271 $parent = $item['parent'];
2273 // Preparing public shadow (removing user specific data)
2276 unset($item['parent']);
2277 unset($item['wall']);
2278 unset($item['mention']);
2279 unset($item['origin']);
2280 unset($item['starred']);
2281 unset($item['postopts']);
2282 unset($item['inform']);
2283 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
2285 $public_shadow = self::insert($item, false, true);
2287 Logger::log("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, Logger::DEBUG);
2289 // If this was a comment to a Diaspora post we don't get our comment back.
2290 // This means that we have to distribute the comment by ourselves.
2291 if ($origin && self::exists(['id' => $parent, 'network' => Protocol::DIASPORA])) {
2292 self::distribute($public_shadow);
2297 * Adds a language specification in a "language" element of given $arr.
2298 * Expects "body" element to exist in $arr.
2300 * @param array $item
2301 * @return string detected language
2302 * @throws \Text_LanguageDetect_Exception
2304 private static function getLanguage(array $item)
2306 $naked_body = BBCode::toPlaintext($item['body'], false);
2308 $ld = new Text_LanguageDetect();
2309 $ld->setNameMode(2);
2310 $languages = $ld->detect($naked_body, 3);
2311 if (is_array($languages)) {
2312 return json_encode($languages);
2319 * Creates an unique guid out of a given uri
2321 * @param string $uri uri of an item entry
2322 * @param string $host hostname for the GUID prefix
2323 * @return string unique guid
2325 public static function guidFromUri($uri, $host)
2327 // Our regular guid routine is using this kind of prefix as well
2328 // We have to avoid that different routines could accidentally create the same value
2329 $parsed = parse_url($uri);
2331 // We use a hash of the hostname as prefix for the guid
2332 $guid_prefix = hash("crc32", $host);
2334 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
2335 unset($parsed["scheme"]);
2337 // Glue it together to be able to make a hash from it
2338 $host_id = implode("/", $parsed);
2340 // We could use any hash algorithm since it isn't a security issue
2341 $host_hash = hash("ripemd128", $host_id);
2343 return $guid_prefix.$host_hash;
2347 * generate an unique URI
2349 * @param integer $uid User id
2350 * @param string $guid An existing GUID (Otherwise it will be generated)
2353 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2355 public static function newURI($uid, $guid = "")
2358 $guid = System::createUUID();
2361 return DI::baseUrl()->get() . '/objects/' . $guid;
2365 * Set "success_update" and "last-item" to the date of the last time we heard from this contact
2367 * This can be used to filter for inactive contacts.
2368 * Only do this for public postings to avoid privacy problems, since poco data is public.
2369 * Don't set this value if it isn't from the owner (could be an author that we don't know)
2371 * @param array $arr Contains the just posted item record
2372 * @throws \Exception
2374 private static function updateContact($arr)
2376 // Unarchive the author
2377 $contact = DBA::selectFirst('contact', [], ['id' => $arr["author-id"]]);
2378 if (DBA::isResult($contact)) {
2379 Contact::unmarkForArchival($contact);
2382 // Unarchive the contact if it's not our own contact
2383 $contact = DBA::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
2384 if (DBA::isResult($contact)) {
2385 Contact::unmarkForArchival($contact);
2388 /// @todo On private posts we could obfuscate the date
2389 $update = ($arr['private'] != self::PRIVATE);
2391 // Is it a forum? Then we don't care about the rules from above
2392 if (!$update && in_array($arr["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN]) && ($arr["parent-uri"] === $arr["uri"])) {
2393 if (DBA::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
2399 // The "self" contact id is used (for example in the connectors) when the contact is unknown
2400 // So we have to ensure to only update the last item when it had been our own post,
2401 // or it had been done by a "regular" contact.
2402 if (!empty($arr['wall'])) {
2403 $condition = ['id' => $arr['contact-id']];
2405 $condition = ['id' => $arr['contact-id'], 'self' => false];
2407 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']], $condition);
2409 // Now do the same for the system wide contacts with uid=0
2410 if ($arr['private'] != self::PRIVATE) {
2411 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2412 ['id' => $arr['owner-id']]);
2414 if ($arr['owner-id'] != $arr['author-id']) {
2415 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2416 ['id' => $arr['author-id']]);
2421 public static function setHashtags(&$item)
2423 $tags = BBCode::getTags($item["body"]);
2426 if (!count($tags)) {
2430 // What happens in [code], stays in [code]!
2431 // escape the # and the [
2432 // hint: we will also get in trouble with #tags, when we want markdown in posts -> ### Headline 3
2433 $item["body"] = preg_replace_callback("/\[code(.*?)\](.*?)\[\/code\]/ism",
2435 // we truly ESCape all # and [ to prevent gettin weird tags in [code] blocks
2437 $replace = [chr(27).'sharp', chr(27).'leftsquarebracket'];
2438 return ("[code" . $match[1] . "]" . str_replace($find, $replace, $match[2]) . "[/code]");
2441 // This sorting is important when there are hashtags that are part of other hashtags
2442 // Otherwise there could be problems with hashtags like #test and #test2
2443 // Because of this we are sorting from the longest to the shortest tag.
2444 usort($tags, function($a, $b) {
2445 return strlen($b) <=> strlen($a);
2448 $URLSearchString = "^\[\]";
2450 // All hashtags should point to the home server if "local_tags" is activated
2451 if (DI::config()->get('system', 'local_tags')) {
2452 $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2453 "#[url=".DI::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
2456 // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
2457 $item["body"] = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2459 return ("[url=" . str_replace("#", "#", $match[1]) . "]" . str_replace("#", "#", $match[2]) . "[/url]");
2462 $item["body"] = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
2464 return ("[bookmark=" . str_replace("#", "#", $match[1]) . "]" . str_replace("#", "#", $match[2]) . "[/bookmark]");
2467 $item["body"] = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
2469 return ("[attachment " . str_replace("#", "#", $match[1]) . "]" . $match[2] . "[/attachment]");
2472 // Repair recursive urls
2473 $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2474 "#$2", $item["body"]);
2476 foreach ($tags as $tag) {
2477 if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || strlen($tag) < 2 || $tag[1] == '#') {
2481 $basetag = str_replace('_',' ',substr($tag,1));
2482 $newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
2484 $item["body"] = str_replace($tag, $newtag, $item["body"]);
2487 // Convert back the masked hashtags
2488 $item["body"] = str_replace("#", "#", $item["body"]);
2490 // Remember! What happens in [code], stays in [code]
2491 // roleback the # and [
2492 $item["body"] = preg_replace_callback("/\[code(.*?)\](.*?)\[\/code\]/ism",
2494 // we truly unESCape all sharp and leftsquarebracket
2495 $find = [chr(27).'sharp', chr(27).'leftsquarebracket'];
2496 $replace = ['#', '['];
2497 return ("[code" . $match[1] . "]" . str_replace($find, $replace, $match[2]) . "[/code]");
2502 * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
2505 * @param int $item_id
2506 * @return boolean true if item was deleted, else false
2507 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2508 * @throws \ImagickException
2510 private static function tagDeliver($uid, $item_id)
2514 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
2515 if (!DBA::isResult($user)) {
2519 $community_page = (($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
2520 $prvgroup = (($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP) ? true : false);
2522 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
2523 if (!DBA::isResult($item)) {
2527 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2530 * Diaspora uses their own hardwired link URL in @-tags
2531 * instead of the one we supply with webfinger
2533 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2535 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2537 foreach ($matches as $mtch) {
2538 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2540 Logger::log('mention found: ' . $mtch[2]);
2546 if (($community_page || $prvgroup) &&
2547 !$item['wall'] && !$item['origin'] && ($item['id'] == $item['parent'])) {
2548 Logger::info('Delete private group/communiy top-level item without mention', ['id' => $item_id, 'guid'=> $item['guid']]);
2549 DBA::delete('item', ['id' => $item_id]);
2555 $arr = ['item' => $item, 'user' => $user];
2557 Hook::callAll('tagged', $arr);
2559 if (!$community_page && !$prvgroup) {
2564 * tgroup delivery - setup a second delivery chain
2565 * prevent delivery looping - only proceed
2566 * if the message originated elsewhere and is a top-level post
2568 if ($item['wall'] || $item['origin'] || ($item['id'] != $item['parent'])) {
2572 // now change this copy of the post to a forum head message and deliver to all the tgroup members
2573 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'], ['uid' => $uid, 'self' => true]);
2574 if (!DBA::isResult($self)) {
2578 $owner_id = Contact::getIdForURL($self['url']);
2580 // also reset all the privacy bits to the forum default permissions
2582 $private = ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) ? self::PRIVATE : self::PUBLIC;
2584 $psid = PermissionSet::getIdFromACL(
2592 $forum_mode = ($prvgroup ? 2 : 1);
2594 $fields = ['wall' => true, 'origin' => true, 'forum_mode' => $forum_mode, 'contact-id' => $self['id'],
2595 'owner-id' => $owner_id, 'private' => $private, 'psid' => $psid];
2596 self::update($fields, ['id' => $item_id]);
2598 self::updateThread($item_id);
2600 Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'Notifier', Delivery::POST, $item_id);
2605 public static function isRemoteSelf($contact, &$datarray)
2607 if (!$contact['remote_self']) {
2611 // Prevent the forwarding of posts that are forwarded
2612 if (!empty($datarray["extid"]) && ($datarray["extid"] == Protocol::DFRN)) {
2613 Logger::log('Already forwarded', Logger::DEBUG);
2617 // Prevent to forward already forwarded posts
2618 if ($datarray["app"] == DI::baseUrl()->getHostname()) {
2619 Logger::log('Already forwarded (second test)', Logger::DEBUG);
2623 // Only forward posts
2624 if ($datarray["verb"] != Activity::POST) {
2625 Logger::log('No post', Logger::DEBUG);
2629 if (($contact['network'] != Protocol::FEED) && ($datarray['private'] == self::PRIVATE)) {
2630 Logger::log('Not public', Logger::DEBUG);
2634 $datarray2 = $datarray;
2635 Logger::log('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), Logger::DEBUG);
2636 if ($contact['remote_self'] == 2) {
2637 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
2638 ['uid' => $contact['uid'], 'self' => true]);
2639 if (DBA::isResult($self)) {
2640 $datarray['contact-id'] = $self["id"];
2642 $datarray['owner-name'] = $self["name"];
2643 $datarray['owner-link'] = $self["url"];
2644 $datarray['owner-avatar'] = $self["thumb"];
2646 $datarray['author-name'] = $datarray['owner-name'];
2647 $datarray['author-link'] = $datarray['owner-link'];
2648 $datarray['author-avatar'] = $datarray['owner-avatar'];
2650 unset($datarray['edited']);
2652 unset($datarray['network']);
2653 unset($datarray['owner-id']);
2654 unset($datarray['author-id']);
2657 if ($contact['network'] != Protocol::FEED) {
2658 $datarray["guid"] = System::createUUID();
2659 unset($datarray["plink"]);
2660 $datarray["uri"] = self::newURI($contact['uid'], $datarray["guid"]);
2661 $datarray["parent-uri"] = $datarray["uri"];
2662 $datarray["thr-parent"] = $datarray["uri"];
2663 $datarray["extid"] = Protocol::DFRN;
2664 $urlpart = parse_url($datarray2['author-link']);
2665 $datarray["app"] = $urlpart["host"];
2667 $datarray['private'] = self::PUBLIC;
2671 if ($contact['network'] != Protocol::FEED) {
2672 // Store the original post
2673 $result = self::insert($datarray2);
2674 Logger::log('remote-self post original item - Contact '.$contact['url'].' return '.$result.' Item '.print_r($datarray2, true), Logger::DEBUG);
2676 $datarray["app"] = "Feed";
2680 // Trigger automatic reactions for addons
2681 $datarray['api_source'] = true;
2683 // We have to tell the hooks who we are - this really should be improved
2684 $_SESSION["authenticated"] = true;
2685 $_SESSION["uid"] = $contact['uid'];
2694 * @param array $item
2697 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2698 * @throws \ImagickException
2700 public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
2702 if (DI::config()->get('system', 'disable_embedded')) {
2706 Logger::log('check for photos', Logger::DEBUG);
2707 $site = substr(DI::baseUrl(), strpos(DI::baseUrl(), '://'));
2712 $img_start = strpos($orig_body, '[img');
2713 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2714 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2716 while (($img_st_close !== false) && ($img_len !== false)) {
2717 $img_st_close++; // make it point to AFTER the closing bracket
2718 $image = substr($orig_body, $img_start + $img_st_close, $img_len);
2720 Logger::log('found photo ' . $image, Logger::DEBUG);
2722 if (stristr($image, $site . '/photo/')) {
2723 // Only embed locally hosted photos
2725 $i = basename($image);
2726 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
2727 $x = strpos($i, '-');
2730 $res = substr($i, $x + 1);
2731 $i = substr($i, 0, $x);
2732 $photo = Photo::getPhotoForUser($uid, $i, $res);
2733 if (DBA::isResult($photo)) {
2735 * Check to see if we should replace this photo link with an embedded image
2736 * 1. No need to do so if the photo is public
2737 * 2. If there's a contact-id provided, see if they're in the access list
2738 * for the photo. If so, embed it.
2739 * 3. Otherwise, if we have an item, see if the item permissions match the photo
2740 * permissions, regardless of order but first check to see if they're an exact
2741 * match to save some processing overhead.
2743 if (self::hasPermissions($photo)) {
2745 $recips = self::enumeratePermissions($photo);
2746 if (in_array($cid, $recips)) {
2750 if (self::samePermissions($uid, $item, $photo)) {
2756 $photo_img = Photo::getImageForPhoto($photo);
2757 // If a custom width and height were specified, apply before embedding
2758 if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
2759 Logger::log('scaling photo', Logger::DEBUG);
2761 $width = intval($match[1]);
2762 $height = intval($match[2]);
2764 $photo_img->scaleDown(max($width, $height));
2767 $data = $photo_img->asString();
2768 $type = $photo_img->getType();
2770 Logger::log('replacing photo', Logger::DEBUG);
2771 $image = 'data:' . $type . ';base64,' . base64_encode($data);
2772 Logger::log('replaced: ' . $image, Logger::DATA);
2778 $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
2779 $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
2780 if ($orig_body === false) {
2784 $img_start = strpos($orig_body, '[img');
2785 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2786 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2789 $new_body = $new_body . $orig_body;
2794 private static function hasPermissions($obj)
2796 return !empty($obj['allow_cid']) || !empty($obj['allow_gid']) ||
2797 !empty($obj['deny_cid']) || !empty($obj['deny_gid']);
2800 private static function samePermissions($uid, $obj1, $obj2)
2802 // first part is easy. Check that these are exactly the same.
2803 if (($obj1['allow_cid'] == $obj2['allow_cid'])
2804 && ($obj1['allow_gid'] == $obj2['allow_gid'])
2805 && ($obj1['deny_cid'] == $obj2['deny_cid'])
2806 && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
2810 // This is harder. Parse all the permissions and compare the resulting set.
2811 $recipients1 = self::enumeratePermissions($obj1);
2812 $recipients2 = self::enumeratePermissions($obj2);
2816 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
2817 return ($recipients1 == $recipients2);
2821 * Returns an array of contact-ids that are allowed to see this object
2823 * @param array $obj Item array with at least uid, allow_cid, allow_gid, deny_cid and deny_gid
2824 * @param bool $check_dead Prunes unavailable contacts from the result
2826 * @throws \Exception
2828 public static function enumeratePermissions(array $obj, bool $check_dead = false)
2830 $aclFormater = DI::aclFormatter();
2832 $allow_people = $aclFormater->expand($obj['allow_cid']);
2833 $allow_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['allow_gid']), $check_dead);
2834 $deny_people = $aclFormater->expand($obj['deny_cid']);
2835 $deny_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['deny_gid']), $check_dead);
2836 $recipients = array_unique(array_merge($allow_people, $allow_groups));
2837 $deny = array_unique(array_merge($deny_people, $deny_groups));
2838 $recipients = array_diff($recipients, $deny);
2842 public static function expire($uid, $days, $network = "", $force = false)
2844 if (!$uid || ($days < 1)) {
2848 $condition = ["`uid` = ? AND NOT `deleted` AND `id` = `parent` AND `gravity` = ?",
2849 $uid, GRAVITY_PARENT];
2852 * $expire_network_only = save your own wall posts
2853 * and just expire conversations started by others
2855 $expire_network_only = DI::pConfig()->get($uid, 'expire', 'network_only', false);
2857 if ($expire_network_only) {
2858 $condition[0] .= " AND NOT `wall`";
2861 if ($network != "") {
2862 $condition[0] .= " AND `network` = ?";
2863 $condition[] = $network;
2866 $condition[0] .= " AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY";
2867 $condition[] = $days;
2869 $items = self::select(['file', 'resource-id', 'starred', 'type', 'id', 'post-type'], $condition);
2871 if (!DBA::isResult($items)) {
2875 $expire_items = DI::pConfig()->get($uid, 'expire', 'items', true);
2877 // Forcing expiring of items - but not notes and marked items
2879 $expire_items = true;
2882 $expire_notes = DI::pConfig()->get($uid, 'expire', 'notes', true);
2883 $expire_starred = DI::pConfig()->get($uid, 'expire', 'starred', true);
2884 $expire_photos = DI::pConfig()->get($uid, 'expire', 'photos', false);
2888 while ($item = Item::fetch($items)) {
2889 // don't expire filed items
2891 if (strpos($item['file'], '[') !== false) {
2895 // Only expire posts, not photos and photo comments
2897 if (!$expire_photos && strlen($item['resource-id'])) {
2899 } elseif (!$expire_starred && intval($item['starred'])) {
2901 } elseif (!$expire_notes && (($item['type'] == 'note') || ($item['post-type'] == Item::PT_PERSONAL_NOTE))) {
2903 } elseif (!$expire_items && ($item['type'] != 'note') && ($item['post-type'] != Item::PT_PERSONAL_NOTE)) {
2907 self::markForDeletionById($item['id'], PRIORITY_LOW);
2912 Logger::log('User ' . $uid . ": expired $expired items; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2915 public static function firstPostDate($uid, $wall = false)
2917 $condition = ['uid' => $uid, 'wall' => $wall, 'deleted' => false, 'visible' => true, 'moderated' => false];
2918 $params = ['order' => ['received' => false]];
2919 $thread = DBA::selectFirst('thread', ['received'], $condition, $params);
2920 if (DBA::isResult($thread)) {
2921 return substr(DateTimeFormat::local($thread['received']), 0, 10);
2927 * add/remove activity to an item
2929 * Toggle activities as like,dislike,attend of an item
2931 * @param string $item_id
2932 * @param string $verb
2933 * Activity verb. One of
2934 * like, unlike, dislike, undislike, attendyes, unattendyes,
2935 * attendno, unattendno, attendmaybe, unattendmaybe
2937 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2938 * @throws \ImagickException
2939 * @hook 'post_local_end'
2941 * 'post_id' => ID of posted item
2943 public static function performActivity($item_id, $verb)
2945 if (!Session::isAuthenticated()) {
2949 Logger::log('like: verb ' . $verb . ' item ' . $item_id);
2951 $item = self::selectFirst(self::ITEM_FIELDLIST, ['`id` = ? OR `uri` = ?', $item_id, $item_id]);
2952 if (!DBA::isResult($item)) {
2953 Logger::log('like: unknown item ' . $item_id);
2957 $item_uri = $item['uri'];
2959 $uid = $item['uid'];
2960 if (($uid == 0) && local_user()) {
2961 $uid = local_user();
2964 if (!Security::canWriteToUserWall($uid)) {
2965 Logger::log('like: unable to write on wall ' . $uid);
2969 // Retrieves the local post owner
2970 $owner_self_contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'self' => true]);
2971 if (!DBA::isResult($owner_self_contact)) {
2972 Logger::log('like: unknown owner ' . $uid);
2976 // Retrieve the current logged in user's public contact
2977 $author_id = public_contact();
2979 $author_contact = DBA::selectFirst('contact', ['url'], ['id' => $author_id]);
2980 if (!DBA::isResult($author_contact)) {
2981 Logger::log('like: unknown author ' . $author_id);
2985 // Contact-id is the uid-dependant author contact
2986 if (local_user() == $uid) {
2987 $item_contact_id = $owner_self_contact['id'];
2989 $item_contact_id = Contact::getIdForURL($author_contact['url'], $uid, true);
2990 $item_contact = DBA::selectFirst('contact', [], ['id' => $item_contact_id]);
2991 if (!DBA::isResult($item_contact)) {
2992 Logger::log('like: unknown item contact ' . $item_contact_id);
3000 $activity = Activity::LIKE;
3004 $activity = Activity::DISLIKE;
3008 $activity = Activity::ATTEND;
3012 $activity = Activity::ATTENDNO;
3015 case 'unattendmaybe':
3016 $activity = Activity::ATTENDMAYBE;
3020 $activity = Activity::FOLLOW;
3023 Logger::log('like: unknown verb ' . $verb . ' for item ' . $item_id);
3027 $mode = Strings::startsWith($verb, 'un') ? 'delete' : 'create';
3029 // Enable activity toggling instead of on/off
3030 $event_verb_flag = $activity === Activity::ATTEND || $activity === Activity::ATTENDNO || $activity === Activity::ATTENDMAYBE;
3032 // Look for an existing verb row
3033 // Event participation activities are mutually exclusive, only one of them can exist at all times.
3034 if ($event_verb_flag) {
3035 $verbs = [Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE];
3037 // Translate to the index based activity index
3039 foreach ($verbs as $verb) {
3040 $vids[] = Verb::getID($verb);
3043 $vids = Verb::getID($activity);
3046 $condition = ['vid' => $vids, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY,
3047 'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent' => $item_uri];
3048 $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
3050 if (DBA::isResult($like_item)) {
3052 * Truth table for existing activities
3054 * | Inputs || Outputs |
3055 * |----------------------------||-------------------|
3056 * | Mode | Event | Same verb || Delete? | Return? |
3057 * |--------|-------|-----------||---------|---------|
3058 * | create | Yes | Yes || No | Yes |
3059 * | create | Yes | No || Yes | No |
3060 * | create | No | Yes || No | Yes |
3061 * | create | No | No || N/A†|
3062 * | delete | Yes | Yes || Yes | N/A‡ |
3063 * | delete | Yes | No || No | N/A‡ |
3064 * | delete | No | Yes || Yes | N/A‡ |
3065 * | delete | No | No || N/A†|
3066 * |--------|-------|-----------||---------|---------|
3067 * | A | B | C || A xor C | !B or C |
3069 * †Can't happen: It's impossible to find an existing non-event activity without
3070 * the same verb because we are only looking for this single verb.
3072 * ‡ The "mode = delete" is returning early whether an existing activity was found or not.
3074 if ($mode == 'create' xor $like_item['verb'] == $activity) {
3075 self::markForDeletionById($like_item['id']);
3078 if (!$event_verb_flag || $like_item['verb'] == $activity) {
3083 // No need to go further if we aren't creating anything
3084 if ($mode == 'delete') {
3088 $objtype = $item['resource-id'] ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE;
3091 'guid' => System::createUUID(),
3092 'uri' => self::newURI($item['uid']),
3093 'uid' => $item['uid'],
3094 'contact-id' => $item_contact_id,
3095 'wall' => $item['wall'],
3097 'network' => Protocol::DFRN,
3098 'gravity' => GRAVITY_ACTIVITY,
3099 'parent' => $item['id'],
3100 'parent-uri' => $item['uri'],
3101 'thr-parent' => $item['uri'],
3102 'owner-id' => $author_id,
3103 'author-id' => $author_id,
3104 'body' => $activity,
3105 'verb' => $activity,
3106 'object-type' => $objtype,
3107 'allow_cid' => $item['allow_cid'],
3108 'allow_gid' => $item['allow_gid'],
3109 'deny_cid' => $item['deny_cid'],
3110 'deny_gid' => $item['deny_gid'],
3115 $signed = Diaspora::createLikeSignature($uid, $new_item);
3116 if (!empty($signed)) {
3117 $new_item['diaspora_signed_text'] = json_encode($signed);
3120 $new_item_id = self::insert($new_item);
3122 // If the parent item isn't visible then set it to visible
3123 if (!$item['visible']) {
3124 self::update(['visible' => true], ['id' => $item['id']]);
3127 $new_item['id'] = $new_item_id;
3129 Hook::callAll('post_local_end', $new_item);
3134 private static function addThread($itemid, $onlyshadow = false)
3136 $fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
3137 'moderated', 'visible', 'starred', 'contact-id', 'post-type',
3138 'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
3139 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3140 $item = self::selectFirst($fields, $condition);
3142 if (!DBA::isResult($item)) {
3146 $item['iid'] = $itemid;
3149 $result = DBA::insert('thread', $item);
3151 Logger::log("Add thread for item ".$itemid." - ".print_r($result, true), Logger::DEBUG);
3155 private static function updateThread($itemid, $setmention = false)
3157 $fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed', 'post-type',
3158 'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'contact-id',
3159 'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
3160 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3162 $item = self::selectFirst($fields, $condition);
3163 if (!DBA::isResult($item)) {
3168 $item["mention"] = 1;
3173 foreach ($item as $field => $data) {
3174 if (!in_array($field, ["guid"])) {
3175 $fields[$field] = $data;
3179 $result = DBA::update('thread', $fields, ['iid' => $itemid]);
3181 Logger::log("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".(int)$result, Logger::DEBUG);
3184 private static function deleteThread($itemid, $itemuri = "")
3186 $item = DBA::selectFirst('thread', ['uid'], ['iid' => $itemid]);
3187 if (!DBA::isResult($item)) {
3188 Logger::log('No thread found for id '.$itemid, Logger::DEBUG);
3192 $result = DBA::delete('thread', ['iid' => $itemid], ['cascade' => false]);
3194 Logger::log("deleteThread: Deleted thread for item ".$itemid." - ".print_r($result, true), Logger::DEBUG);
3196 if ($itemuri != "") {
3197 $condition = ["`uri` = ? AND NOT `deleted` AND NOT (`uid` IN (?, 0))", $itemuri, $item["uid"]];
3198 if (!self::exists($condition)) {
3199 DBA::delete('item', ['uri' => $itemuri, 'uid' => 0]);
3200 Logger::debug('Deleted shadow item', ['id' => $itemid, 'uri' => $itemuri]);
3205 public static function getPermissionsSQLByUserId($owner_id)
3207 $local_user = local_user();
3208 $remote_user = Session::getRemoteContactID($owner_id);
3211 * Construct permissions
3213 * default permissions - anonymous user
3215 $sql = sprintf(" AND `item`.`private` != %d", self::PRIVATE);
3217 // Profile owner - everything is visible
3218 if ($local_user && ($local_user == $owner_id)) {
3220 } elseif ($remote_user) {
3222 * Authenticated visitor. Unless pre-verified,
3223 * check that the contact belongs to this $owner_id
3224 * and load the groups the visitor belongs to.
3225 * If pre-verified, the caller is expected to have already
3226 * done this and passed the groups into this function.
3228 $set = PermissionSet::get($owner_id, $remote_user);
3231 $sql_set = sprintf(" OR (`item`.`private` = %d AND `item`.`wall` AND `item`.`psid` IN (", self::PRIVATE) . implode(',', $set) . "))";
3236 $sql = sprintf(" AND (`item`.`private` != %d", self::PRIVATE) . $sql_set . ")";
3243 * get translated item type
3248 public static function postType($item)
3250 if (!empty($item['event-id'])) {
3251 return DI::l10n()->t('event');
3252 } elseif (!empty($item['resource-id'])) {
3253 return DI::l10n()->t('photo');
3254 } elseif (!empty($item['verb']) && $item['verb'] !== Activity::POST) {
3255 return DI::l10n()->t('activity');
3256 } elseif ($item['id'] != $item['parent']) {
3257 return DI::l10n()->t('comment');
3260 return DI::l10n()->t('post');
3264 * Sets the "rendered-html" field of the provided item
3266 * Body is preserved to avoid side-effects as we modify it just-in-time for spoilers and private image links
3268 * @param array $item
3269 * @param bool $update
3271 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3272 * @todo Remove reference, simply return "rendered-html" and "rendered-hash"
3274 public static function putInCache(&$item, $update = false)
3276 $body = $item["body"];
3278 $rendered_hash = $item['rendered-hash'] ?? '';
3279 $rendered_html = $item['rendered-html'] ?? '';
3281 if ($rendered_hash == ''
3282 || $rendered_html == ""
3283 || $rendered_hash != hash("md5", $item["body"])
3284 || DI::config()->get("system", "ignore_cache")
3286 self::addRedirToImageTags($item);
3288 $item["rendered-html"] = BBCode::convert($item["body"]);
3289 $item["rendered-hash"] = hash("md5", $item["body"]);
3291 $hook_data = ['item' => $item, 'rendered-html' => $item['rendered-html'], 'rendered-hash' => $item['rendered-hash']];
3292 Hook::callAll('put_item_in_cache', $hook_data);
3293 $item['rendered-html'] = $hook_data['rendered-html'];
3294 $item['rendered-hash'] = $hook_data['rendered-hash'];
3297 // Force an update if the generated values differ from the existing ones
3298 if ($rendered_hash != $item["rendered-hash"]) {
3302 // Only compare the HTML when we forcefully ignore the cache
3303 if (DI::config()->get("system", "ignore_cache") && ($rendered_html != $item["rendered-html"])) {
3307 if ($update && !empty($item["id"])) {
3310 'rendered-html' => $item["rendered-html"],
3311 'rendered-hash' => $item["rendered-hash"]
3313 ['id' => $item["id"]]
3318 $item["body"] = $body;
3322 * Find any non-embedded images in private items and add redir links to them
3324 * @param array &$item The field array of an item row
3326 private static function addRedirToImageTags(array &$item)
3331 $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
3333 foreach ($matches as $mtch) {
3334 if (strpos($mtch[1], '/redir') !== false) {
3338 if ((local_user() == $item['uid']) && ($item['private'] == self::PRIVATE) && ($item['contact-id'] != $app->contact['id']) && ($item['network'] == Protocol::DFRN)) {
3339 $img_url = 'redir/' . $item['contact-id'] . '?url=' . urlencode($mtch[1]);
3340 $item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
3347 * Given an item array, convert the body element from bbcode to html and add smilie icons.
3348 * If attach is true, also add icons for item attachments.
3350 * @param array $item
3351 * @param boolean $attach
3352 * @param boolean $is_preview
3353 * @return string item body html
3354 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3355 * @throws \ImagickException
3356 * @hook prepare_body_init item array before any work
3357 * @hook prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
3358 * @hook prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
3359 * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
3361 public static function prepareBody(array &$item, $attach = false, $is_preview = false)
3364 Hook::callAll('prepare_body_init', $item);
3366 // In order to provide theme developers more possibilities, event items
3367 // are treated differently.
3368 if ($item['object-type'] === Activity\ObjectType::EVENT && isset($item['event-id'])) {
3369 $ev = Event::getItemHTML($item);
3373 $tags = Tag::populateFromItem($item);
3375 $item['tags'] = $tags['tags'];
3376 $item['hashtags'] = $tags['hashtags'];
3377 $item['mentions'] = $tags['mentions'];
3379 // Compile eventual content filter reasons
3380 $filter_reasons = [];
3381 if (!$is_preview && public_contact() != $item['author-id']) {
3382 if (!empty($item['content-warning']) && (!local_user() || !DI::pConfig()->get(local_user(), 'system', 'disable_cw', false))) {
3383 $filter_reasons[] = DI::l10n()->t('Content warning: %s', $item['content-warning']);
3388 'filter_reasons' => $filter_reasons
3390 Hook::callAll('prepare_body_content_filter', $hook_data);
3391 $filter_reasons = $hook_data['filter_reasons'];
3395 // Update the cached values if there is no "zrl=..." on the links.
3396 $update = (!Session::isAuthenticated() && ($item["uid"] == 0));
3398 // Or update it if the current viewer is the intented viewer.
3399 if (($item["uid"] == local_user()) && ($item["uid"] != 0)) {
3403 self::putInCache($item, $update);
3404 $s = $item["rendered-html"];
3409 'preview' => $is_preview,
3410 'filter_reasons' => $filter_reasons
3412 Hook::callAll('prepare_body', $hook_data);
3413 $s = $hook_data['html'];
3417 // Replace the blockquotes with quotes that are used in mails.
3418 $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
3419 $s = str_replace(['<blockquote>', '<blockquote class="spoiler">', '<blockquote class="author">'], [$mailquote, $mailquote, $mailquote], $s);
3426 preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\"(?: title=\"(.*?)\")?|', $item['attach'], $matches, PREG_SET_ORDER);
3427 foreach ($matches as $mtch) {
3430 $the_url = Contact::magicLinkById($item['author-id'], $mtch[1]);
3432 if (strpos($mime, 'video') !== false) {
3435 DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('videos_head.tpl'));
3438 $url_parts = explode('/', $the_url);
3439 $id = end($url_parts);
3440 $as .= Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [
3443 'title' => DI::l10n()->t('View Video'),
3450 $filetype = strtolower(substr($mime, 0, strpos($mime, '/')));
3452 $filesubtype = strtolower(substr($mime, strpos($mime, '/') + 1));
3453 $filesubtype = str_replace('.', '-', $filesubtype);
3456 $filesubtype = 'unkn';
3459 $title = Strings::escapeHtml(trim(($mtch[4] ?? '') ?: $mtch[1]));
3460 $title .= ' ' . $mtch[2] . ' ' . DI::l10n()->t('bytes');
3462 $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
3463 $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" rel="noopener noreferrer" >' . $icon . '</a>';
3467 $s .= '<div class="body-attach">'.$as.'<div class="clear"></div></div>';
3471 if (strpos($s, '<div class="map">') !== false && !empty($item['coord'])) {
3472 $x = Map::byCoordinates(trim($item['coord']));
3474 $s = preg_replace('/\<div class\=\"map\"\>/', '$0' . $x, $s);
3478 // Replace friendica image url size with theme preference.
3479 if (!empty($a->theme_info['item_image_size'])) {
3480 $ps = $a->theme_info['item_image_size'];
3481 $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
3484 $s = HTML::applyContentFilter($s, $filter_reasons);
3486 $hook_data = ['item' => $item, 'html' => $s];
3487 Hook::callAll('prepare_body_final', $hook_data);
3489 return $hook_data['html'];
3493 * get private link for item
3495 * @param array $item
3496 * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
3497 * @throws \Exception
3499 public static function getPlink($item)
3503 if ($a->user['nickname'] != "") {
3505 'href' => "display/" . $item['guid'],
3506 'orig' => "display/" . $item['guid'],
3507 'title' => DI::l10n()->t('View on separate page'),
3508 'orig_title' => DI::l10n()->t('view on separate page'),
3511 if (!empty($item['plink'])) {
3512 $ret["href"] = DI::baseUrl()->remove($item['plink']);
3513 $ret["title"] = DI::l10n()->t('link to source');
3516 } elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
3518 'href' => $item['plink'],
3519 'orig' => $item['plink'],
3520 'title' => DI::l10n()->t('link to source'),
3530 * Is the given item array a post that is sent as starting post to a forum?
3532 * @param array $item
3533 * @param array $owner
3535 * @return boolean "true" when it is a forum post
3537 public static function isForumPost(array $item, array $owner = [])
3539 if (empty($owner)) {
3540 $owner = User::getOwnerDataById($item['uid']);
3541 if (empty($owner)) {
3546 if (($item['author-id'] == $item['owner-id']) ||
3547 ($owner['id'] == $item['contact-id']) ||
3548 ($item['uri'] != $item['parent-uri']) ||
3553 return Contact::isForum($item['contact-id']);
3557 * Search item id for given URI or plink
3559 * @param string $uri
3560 * @param integer $uid
3562 * @return integer item id
3564 public static function searchByLink($uri, $uid = 0)
3566 $ssl_uri = str_replace('http://', 'https://', $uri);
3567 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3569 $item = DBA::selectFirst('item', ['id'], ['uri' => $uris, 'uid' => $uid]);
3570 if (DBA::isResult($item)) {
3574 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3575 if (!DBA::isResult($itemcontent)) {
3579 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3580 if (!DBA::isResult($itemuri)) {
3584 $item = DBA::selectFirst('item', ['id'], ['uri' => $itemuri['uri'], 'uid' => $uid]);
3585 if (DBA::isResult($item)) {
3593 * Return the URI for a link to the post
3595 * @param string $uri URI or link to post
3597 * @return string URI
3599 public static function getURIByLink(string $uri)
3601 $ssl_uri = str_replace('http://', 'https://', $uri);
3602 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3604 $item = DBA::selectFirst('item', ['uri'], ['uri' => $uris]);
3605 if (DBA::isResult($item)) {
3606 return $item['uri'];
3609 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3610 if (!DBA::isResult($itemcontent)) {
3614 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3615 if (DBA::isResult($itemuri)) {
3616 return $itemuri['uri'];
3623 * Fetches item for given URI or plink
3625 * @param string $uri
3626 * @param integer $uid
3628 * @return integer item id
3630 public static function fetchByLink($uri, $uid = 0)
3632 $item_id = self::searchByLink($uri, $uid);
3633 if (!empty($item_id)) {
3637 if ($fetched_uri = ActivityPub\Processor::fetchMissingActivity($uri)) {
3638 $item_id = self::searchByLink($fetched_uri, $uid);
3640 $item_id = Diaspora::fetchByURL($uri);
3643 if (!empty($item_id)) {
3651 * Return share data from an item array (if the item is shared item)
3652 * We are providing the complete Item array, because at some time in the future
3653 * we hopefully will define these values not in the body anymore but in some item fields.
3654 * This function is meant to replace all similar functions in the system.
3656 * @param array $item
3658 * @return array with share information
3660 public static function getShareArray($item)
3662 if (!preg_match("/(.*?)\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", $item['body'], $matches)) {
3666 $attribute_string = $matches[2];
3667 $attributes = ['comment' => trim($matches[1]), 'shared' => trim($matches[3])];
3668 foreach (['author', 'profile', 'avatar', 'guid', 'posted', 'link'] as $field) {
3669 if (preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches)) {
3670 $attributes[$field] = trim(html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8'));
3677 * Fetch item information for shared items from the original items and adds it.
3679 * @param array $item
3681 * @return array item array with data from the original item
3683 public static function addShareDataFromOriginal($item)
3685 $shared = self::getShareArray($item);
3686 if (empty($shared)) {
3690 // Real reshares always have got a GUID.
3691 if (empty($shared['guid'])) {
3695 $uid = $item['uid'] ?? 0;
3697 // first try to fetch the item via the GUID. This will work for all reshares that had been created on this system
3698 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['guid' => $shared['guid'], 'uid' => [0, $uid]]);
3699 if (!DBA::isResult($shared_item)) {
3700 if (empty($shared['link'])) {
3704 // Otherwhise try to find (and possibly fetch) the item via the link. This should work for Diaspora and ActivityPub posts
3705 $id = self::fetchByLink($shared['link'], $uid);
3707 Logger::info('Original item not found', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3711 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['id' => $id]);
3712 if (!DBA::isResult($shared_item)) {
3715 Logger::info('Got shared data from url', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3717 Logger::info('Got shared data from guid', ['guid' => $shared['guid'], 'callstack' => System::callstack()]);
3720 if (!empty($shared_item['title'])) {
3721 $body = '[h3]' . $shared_item['title'] . "[/h3]\n" . $shared_item['body'];
3722 unset($shared_item['title']);
3724 $body = $shared_item['body'];
3727 $item['body'] = preg_replace("/\[share ([^\[\]]*)\].*\[\/share\]/ism", '[share $1]' . $body . '[/share]', $item['body']);
3728 unset($shared_item['body']);
3730 return array_merge($item, $shared_item);