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'
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', 'gravity',
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('vid', $row) && is_null($row['vid']) && !empty($row['verb'])) {
289 $row['vid'] = Verb::getID($row['verb']);
292 if (!array_key_exists('verb', $row) || in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
293 // Build the file string out of the term entries
294 if (array_key_exists('file', $row) && empty($row['file'])) {
295 $row['file'] = Category::getTextByURIId($row['internal-uri-id'], $row['internal-uid']);
299 if ($row['internal-psid'] == RepPermissionSet::PUBLIC) {
300 if (array_key_exists('allow_cid', $row)) {
301 $row['allow_cid'] = '';
303 if (array_key_exists('allow_gid', $row)) {
304 $row['allow_gid'] = '';
306 if (array_key_exists('deny_cid', $row)) {
307 $row['deny_cid'] = '';
309 if (array_key_exists('deny_gid', $row)) {
310 $row['deny_gid'] = '';
314 if (array_key_exists('ignored', $row) && array_key_exists('internal-user-ignored', $row) && !is_null($row['internal-user-ignored'])) {
315 $row['ignored'] = $row['internal-user-ignored'];
318 // Remove internal fields
319 unset($row['internal-network']);
320 unset($row['internal-uri-id']);
321 unset($row['internal-uid']);
322 unset($row['internal-psid']);
323 unset($row['internal-verb']);
324 unset($row['internal-user-ignored']);
325 unset($row['interaction']);
331 * Fills an array with data from an item query
333 * @param object $stmt statement object
334 * @param bool $do_close
335 * @return array Data array
337 public static function inArray($stmt, $do_close = true) {
338 if (is_bool($stmt)) {
343 while ($row = self::fetch($stmt)) {
353 * Check if item data exists
355 * @param array $condition array of fields for condition
357 * @return boolean Are there rows for that condition?
360 public static function exists($condition) {
361 $stmt = self::select(['id'], $condition, ['limit' => 1]);
363 if (is_bool($stmt)) {
366 $retval = (DBA::numRows($stmt) > 0);
375 * Retrieve a single record from the item table for a given user and returns it in an associative array
377 * @param integer $uid User ID
378 * @param array $selected
379 * @param array $condition
380 * @param array $params
385 public static function selectFirstForUser($uid, array $selected = [], array $condition = [], $params = [])
387 $params['uid'] = $uid;
389 if (empty($selected)) {
390 $selected = Item::DISPLAY_FIELDLIST;
393 return self::selectFirst($selected, $condition, $params);
397 * Select rows from the item table for a given user
399 * @param integer $uid User ID
400 * @param array $selected Array of selected fields, empty for all
401 * @param array $condition Array of fields for condition
402 * @param array $params Array of several parameters
404 * @return boolean|object
407 public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [])
409 $params['uid'] = $uid;
411 if (empty($selected)) {
412 $selected = Item::DISPLAY_FIELDLIST;
415 return self::select($selected, $condition, $params);
419 * Retrieve a single record from the item table and returns it in an associative array
421 * @param array $fields
422 * @param array $condition
423 * @param array $params
428 public static function selectFirst(array $fields = [], array $condition = [], $params = [])
430 $params['limit'] = 1;
432 $result = self::select($fields, $condition, $params);
434 if (is_bool($result)) {
437 $row = self::fetch($result);
444 * Select rows from the item table and returns them as an array
446 * @param array $selected Array of selected fields, empty for all
447 * @param array $condition Array of fields for condition
448 * @param array $params Array of several parameters
453 public static function selectToArray(array $fields = [], array $condition = [], $params = [])
455 $result = self::select($fields, $condition, $params);
457 if (is_bool($result)) {
462 while ($row = self::fetch($result)) {
471 * Select rows from the item table
473 * @param array $selected Array of selected fields, empty for all
474 * @param array $condition Array of fields for condition
475 * @param array $params Array of several parameters
477 * @return boolean|object
480 public static function select(array $selected = [], array $condition = [], $params = [])
485 if (isset($params['uid'])) {
486 $uid = $params['uid'];
490 $fields = self::fieldlist($usermode);
492 $select_fields = self::constructSelectFields($fields, $selected);
494 $condition_string = DBA::buildCondition($condition);
496 $condition_string = self::addTablesToFields($condition_string, $fields);
499 $condition_string = $condition_string . ' AND ' . self::condition(false);
502 $param_string = self::addTablesToFields(DBA::buildParameter($params), $fields);
504 $table = "`item` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, false, $usermode);
506 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
508 return DBA::p($sql, $condition);
512 * Select rows from the starting post in the item table
514 * @param integer $uid User ID
515 * @param array $selected
516 * @param array $condition Array of fields for condition
517 * @param array $params Array of several parameters
519 * @return boolean|object
522 public static function selectThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
524 $params['uid'] = $uid;
526 if (empty($selected)) {
527 $selected = Item::DISPLAY_FIELDLIST;
530 return self::selectThread($selected, $condition, $params);
534 * Retrieve a single record from the starting post in the item table and returns it in an associative array
536 * @param integer $uid User ID
537 * @param array $selected
538 * @param array $condition
539 * @param array $params
544 public static function selectFirstThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
546 $params['uid'] = $uid;
548 if (empty($selected)) {
549 $selected = Item::DISPLAY_FIELDLIST;
552 return self::selectFirstThread($selected, $condition, $params);
556 * Retrieve a single record from the starting post in the item table and returns it in an associative array
558 * @param array $fields
559 * @param array $condition
560 * @param array $params
565 public static function selectFirstThread(array $fields = [], array $condition = [], $params = [])
567 $params['limit'] = 1;
568 $result = self::selectThread($fields, $condition, $params);
570 if (is_bool($result)) {
573 $row = self::fetch($result);
580 * Select rows from the starting post in the item table
582 * @param array $selected Array of selected fields, empty for all
583 * @param array $condition Array of fields for condition
584 * @param array $params Array of several parameters
586 * @return boolean|object
589 public static function selectThread(array $selected = [], array $condition = [], $params = [])
594 if (isset($params['uid'])) {
595 $uid = $params['uid'];
599 $fields = self::fieldlist($usermode);
601 $fields['thread'] = ['mention', 'ignored', 'iid'];
603 $threadfields = ['thread' => ['iid', 'uid', 'contact-id', 'owner-id', 'author-id',
604 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private',
605 'pubmail', 'moderated', 'visible', 'starred', 'ignored', 'post-type',
606 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'network']];
608 $select_fields = self::constructSelectFields($fields, $selected);
610 $condition_string = DBA::buildCondition($condition);
612 $condition_string = self::addTablesToFields($condition_string, $threadfields);
613 $condition_string = self::addTablesToFields($condition_string, $fields);
616 $condition_string = $condition_string . ' AND ' . self::condition(true);
619 $param_string = DBA::buildParameter($params);
620 $param_string = self::addTablesToFields($param_string, $threadfields);
621 $param_string = self::addTablesToFields($param_string, $fields);
623 $table = "`thread` " . self::constructJoins($uid, $select_fields . $condition_string . $param_string, true, $usermode);
625 $sql = "SELECT " . $select_fields . " FROM " . $table . $condition_string . $param_string;
627 return DBA::p($sql, $condition);
631 * Returns a list of fields that are associated with the item table
634 * @return array field list
636 private static function fieldlist($usermode)
640 $fields['item'] = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent',
641 'guid', 'uri-id', 'parent-uri-id', 'thr-parent-id', 'vid',
642 'contact-id', 'owner-id', 'author-id', 'type', 'wall', 'gravity', 'extid',
643 'created', 'edited', 'commented', 'received', 'changed', 'psid',
644 'resource-id', 'event-id', 'attach', 'post-type', 'file',
645 'private', 'pubmail', 'moderated', 'visible', 'starred', 'bookmark',
646 'unseen', 'deleted', 'origin', 'forum_mode', 'mention', 'global',
647 'id' => 'item_id', 'network', 'icid',
648 'uri-id' => 'internal-uri-id', 'uid' => 'internal-uid',
649 'network' => 'internal-network', 'psid' => 'internal-psid'];
652 $fields['user-item'] = ['pinned', 'notification-type', 'ignored' => 'internal-user-ignored'];
655 $fields['item-content'] = array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST);
657 $fields['post-delivery-data'] = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, Post\DeliveryData::FIELD_LIST);
659 $fields['verb'] = ['name' => 'internal-verb'];
661 $fields['permissionset'] = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
663 $fields['author'] = ['url' => 'author-link', 'name' => 'author-name', 'addr' => 'author-addr',
664 'thumb' => 'author-avatar', 'nick' => 'author-nick', 'network' => 'author-network'];
666 $fields['owner'] = ['url' => 'owner-link', 'name' => 'owner-name', 'addr' => 'owner-addr',
667 'thumb' => 'owner-avatar', 'nick' => 'owner-nick', 'network' => 'owner-network'];
669 $fields['contact'] = ['url' => 'contact-link', 'name' => 'contact-name', 'thumb' => 'contact-avatar',
670 'writable', 'self', 'id' => 'cid', 'alias', 'uid' => 'contact-uid',
671 'photo', 'name-date', 'uri-date', 'avatar-date', 'thumb', 'dfrn-id'];
673 $fields['parent-item'] = ['guid' => 'parent-guid', 'network' => 'parent-network'];
675 $fields['parent-item-author'] = ['url' => 'parent-author-link', 'name' => 'parent-author-name'];
677 $fields['event'] = ['created' => 'event-created', 'edited' => 'event-edited',
678 'start' => 'event-start','finish' => 'event-finish',
679 'summary' => 'event-summary','desc' => 'event-desc',
680 'location' => 'event-location', 'type' => 'event-type',
681 'nofinish' => 'event-nofinish','adjust' => 'event-adjust',
682 'ignore' => 'event-ignore', 'id' => 'event-id'];
684 $fields['diaspora-interaction'] = ['interaction', 'interaction' => 'signed_text'];
690 * Returns SQL condition for the "select" functions
692 * @param boolean $thread_mode Called for the items (false) or for the threads (true)
694 * @return string SQL condition
696 private static function condition($thread_mode)
699 $master_table = "`thread`";
701 $master_table = "`item`";
703 return sprintf("$master_table.`visible` AND NOT $master_table.`deleted` AND NOT $master_table.`moderated`
704 AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
705 AND (`user-author`.`blocked` IS NULL OR NOT `user-author`.`blocked`)
706 AND (`user-author`.`ignored` IS NULL OR NOT `user-author`.`ignored` OR `item`.`gravity` != %d)
707 AND (`user-owner`.`blocked` IS NULL OR NOT `user-owner`.`blocked`)
708 AND (`user-owner`.`ignored` IS NULL OR NOT `user-owner`.`ignored` OR `item`.`gravity` != %d) ",
709 GRAVITY_PARENT, GRAVITY_PARENT);
713 * Returns all needed "JOIN" commands for the "select" functions
715 * @param integer $uid User ID
716 * @param string $sql_commands The parts of the built SQL commands in the "select" functions
717 * @param boolean $thread_mode Called for the items (false) or for the threads (true)
720 * @return string The SQL joins for the "select" functions
722 private static function constructJoins($uid, $sql_commands, $thread_mode, $user_mode)
725 $master_table = "`thread`";
726 $master_table_key = "`thread`.`iid`";
727 $joins = "STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid` ";
729 $master_table = "`item`";
730 $master_table_key = "`item`.`id`";
735 $joins .= sprintf("STRAIGHT_JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`
736 AND NOT `contact`.`blocked`
737 AND ((NOT `contact`.`readonly` AND NOT `contact`.`pending` AND (`contact`.`rel` IN (%s, %s)))
738 OR `contact`.`self` OR `item`.`gravity` != %d OR `contact`.`uid` = 0)
739 STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id` AND NOT `author`.`blocked`
740 STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id` AND NOT `owner`.`blocked`
741 LEFT JOIN `user-item` ON `user-item`.`iid` = $master_table_key AND `user-item`.`uid` = %d
742 LEFT JOIN `user-contact` AS `user-author` ON `user-author`.`cid` = $master_table.`author-id` AND `user-author`.`uid` = %d
743 LEFT JOIN `user-contact` AS `user-owner` ON `user-owner`.`cid` = $master_table.`owner-id` AND `user-owner`.`uid` = %d",
744 Contact::SHARING, Contact::FRIEND, GRAVITY_PARENT, intval($uid), intval($uid), intval($uid));
746 if (strpos($sql_commands, "`contact`.") !== false) {
747 $joins .= "LEFT JOIN `contact` ON `contact`.`id` = $master_table.`contact-id`";
749 if (strpos($sql_commands, "`author`.") !== false) {
750 $joins .= " LEFT JOIN `contact` AS `author` ON `author`.`id` = $master_table.`author-id`";
752 if (strpos($sql_commands, "`owner`.") !== false) {
753 $joins .= " LEFT JOIN `contact` AS `owner` ON `owner`.`id` = $master_table.`owner-id`";
757 if (strpos($sql_commands, "`group_member`.") !== false) {
758 $joins .= " STRAIGHT_JOIN `group_member` ON `group_member`.`contact-id` = $master_table.`contact-id`";
761 if (strpos($sql_commands, "`user`.") !== false) {
762 $joins .= " STRAIGHT_JOIN `user` ON `user`.`uid` = $master_table.`uid`";
765 if (strpos($sql_commands, "`event`.") !== false) {
766 $joins .= " LEFT JOIN `event` ON `event-id` = `event`.`id`";
769 if (strpos($sql_commands, "`diaspora-interaction`.") !== false) {
770 $joins .= " LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `item`.`uri-id`";
773 if (strpos($sql_commands, "`item-content`.") !== false) {
774 $joins .= " LEFT JOIN `item-content` ON `item-content`.`uri-id` = `item`.`uri-id`";
777 if (strpos($sql_commands, "`post-delivery-data`.") !== false) {
778 $joins .= " LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `item`.`uri-id` AND `item`.`origin`";
781 if (strpos($sql_commands, "`verb`.") !== false) {
782 $joins .= " LEFT JOIN `verb` ON `verb`.`id` = `item`.`vid`";
785 if (strpos($sql_commands, "`permissionset`.") !== false) {
786 $joins .= " LEFT JOIN `permissionset` ON `permissionset`.`id` = `item`.`psid`";
789 if ((strpos($sql_commands, "`parent-item`.") !== false) || (strpos($sql_commands, "`parent-author`.") !== false)) {
790 $joins .= " STRAIGHT_JOIN `item` AS `parent-item` ON `parent-item`.`id` = `item`.`parent`";
793 if (strpos($sql_commands, "`parent-item-author`.") !== false) {
794 $joins .= " STRAIGHT_JOIN `contact` AS `parent-item-author` ON `parent-item-author`.`id` = `parent-item`.`author-id`";
801 * Add the field list for the "select" functions
803 * @param array $fields The field definition array
804 * @param array $selected The array with the selected fields from the "select" functions
806 * @return string The field list
808 private static function constructSelectFields(array $fields, array $selected)
810 if (!empty($selected)) {
811 $selected = array_merge($selected, ['internal-uri-id', 'internal-uid', 'internal-psid', 'internal-network']);
814 if (in_array('verb', $selected)) {
815 $selected = array_merge($selected, ['internal-verb']);
818 if (in_array('ignored', $selected)) {
819 $selected[] = 'internal-user-ignored';
822 $legacy_fields = array_merge(Post\DeliveryData::LEGACY_FIELD_LIST, self::MIXED_CONTENT_FIELDLIST);
825 foreach ($fields as $table => $table_fields) {
826 foreach ($table_fields as $field => $select) {
827 if (empty($selected) || in_array($select, $selected)) {
828 if (self::isLegacyMode() && in_array($select, $legacy_fields)) {
829 $selection[] = "`item`.`".$select."` AS `internal-item-" . $select . "`";
831 if (is_int($field)) {
832 $selection[] = "`" . $table . "`.`" . $select . "`";
834 $selection[] = "`" . $table . "`.`" . $field . "` AS `" . $select . "`";
839 return implode(", ", $selection);
843 * add table definition to fields in an SQL query
845 * @param string $query SQL query
846 * @param array $fields The field definition array
848 * @return string the changed SQL query
850 private static function addTablesToFields($query, $fields)
852 foreach ($fields as $table => $table_fields) {
853 foreach ($table_fields as $alias => $field) {
854 if (is_int($alias)) {
855 $replace_field = $field;
857 $replace_field = $alias;
860 $search = "/([^\.])`" . $field . "`/i";
861 $replace = "$1`" . $table . "`.`" . $replace_field . "`";
862 $query = preg_replace($search, $replace, $query);
869 * Update existing item entries
871 * @param array $fields The fields that are to be changed
872 * @param array $condition The condition for finding the item entries
874 * In the future we may have to change permissions as well.
875 * Then we had to add the user id as third parameter.
877 * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
879 * @return integer|boolean number of affected rows - or "false" if there was an error
880 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
882 public static function update(array $fields, array $condition)
884 if (empty($condition) || empty($fields)) {
888 // To ensure the data integrity we do it in an transaction
891 // We cannot simply expand the condition to check for origin entries
892 // The condition needn't to be a simple array but could be a complex condition.
893 // And we have to execute this query before the update to ensure to fetch the same data.
894 $items = DBA::select('item', ['id', 'origin', 'uri', 'uri-id', 'icid', 'uid', 'file'], $condition);
896 $content_fields = [];
897 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
898 if (isset($fields[$field])) {
899 $content_fields[$field] = $fields[$field];
900 if (in_array($field, self::CONTENT_FIELDLIST) || !self::isLegacyMode()) {
901 unset($fields[$field]);
903 $fields[$field] = null;
908 $delivery_data = Post\DeliveryData::extractFields($fields);
910 $clear_fields = ['bookmark', 'type', 'author-name', 'author-avatar', 'author-link', 'owner-name', 'owner-avatar', 'owner-link', 'postopts', 'inform'];
911 foreach ($clear_fields as $field) {
912 if (array_key_exists($field, $fields)) {
913 $fields[$field] = null;
917 if (array_key_exists('file', $fields)) {
918 $files = $fields['file'];
919 $fields['file'] = null;
924 if (!empty($content_fields['verb'])) {
925 $fields['vid'] = Verb::getID($content_fields['verb']);
928 if (!empty($fields)) {
929 $success = DBA::update('item', $fields, $condition);
938 // When there is no content for the "old" item table, this will count the fetched items
939 $rows = DBA::affectedRows();
943 while ($item = DBA::fetch($items)) {
944 if (empty($content_fields['verb']) || !in_array($content_fields['verb'], self::ACTIVITIES)) {
945 self::updateContent($content_fields, ['uri-id' => $item['uri-id']]);
947 if (empty($item['icid'])) {
948 $item_content = DBA::selectFirst('item-content', [], ['uri-id' => $item['uri-id']]);
949 if (DBA::isResult($item_content)) {
950 $item_fields = ['icid' => $item_content['id']];
951 // Clear all fields in the item table that have a content in the item-content table
952 if (self::isLegacyMode()) {
953 foreach ($item_content as $field => $content) {
954 if (in_array($field, self::MIXED_CONTENT_FIELDLIST) && !empty($content)) {
955 $item_fields[$field] = null;
959 DBA::update('item', $item_fields, ['id' => $item['id']]);
964 if (!is_null($files)) {
965 Category::storeTextByURIId($item['uri-id'], $item['uid'], $files);
966 if (!empty($item['file'])) {
967 DBA::update('item', ['file' => ''], ['id' => $item['id']]);
971 Post\DeliveryData::update($item['uri-id'], $delivery_data);
973 self::updateThread($item['id']);
975 // We only need to notfiy others when it is an original entry from us.
976 // Only call the notifier when the item has some content relevant change.
977 if ($item['origin'] && in_array('edited', array_keys($fields))) {
978 $notify_items[] = $item['id'];
985 foreach ($notify_items as $notify_item) {
986 Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $notify_item);
993 * Delete an item and notify others about it - if it was ours
995 * @param array $condition The condition for finding the item entries
996 * @param integer $priority Priority for the notification
997 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
999 public static function markForDeletion($condition, $priority = PRIORITY_HIGH)
1001 $items = self::select(['id'], $condition);
1002 while ($item = self::fetch($items)) {
1003 self::markForDeletionById($item['id'], $priority);
1009 * Delete an item for an user and notify others about it - if it was ours
1011 * @param array $condition The condition for finding the item entries
1012 * @param integer $uid User who wants to delete this item
1013 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1015 public static function deleteForUser($condition, $uid)
1021 $items = self::select(['id', 'uid'], $condition);
1022 while ($item = self::fetch($items)) {
1023 // "Deleting" global items just means hiding them
1024 if ($item['uid'] == 0) {
1025 DBA::update('user-item', ['hidden' => true], ['iid' => $item['id'], 'uid' => $uid], true);
1027 // Delete notifications
1028 DBA::delete('notify', ['iid' => $item['id'], 'uid' => $uid]);
1029 } elseif ($item['uid'] == $uid) {
1030 self::markForDeletionById($item['id'], PRIORITY_HIGH);
1032 Logger::log('Wrong ownership. Not deleting item ' . $item['id']);
1039 * Mark an item for deletion, delete related data and notify others about it - if it was ours
1041 * @param integer $item_id
1042 * @param integer $priority Priority for the notification
1044 * @return boolean success
1045 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1047 public static function markForDeletionById($item_id, $priority = PRIORITY_HIGH)
1049 Logger::info('Mark item for deletion by id', ['id' => $item_id, 'callstack' => System::callstack()]);
1050 // locate item to be deleted
1051 $fields = ['id', 'uri', 'uri-id', 'uid', 'parent', 'parent-uri', 'origin',
1052 'deleted', 'file', 'resource-id', 'event-id', 'attach',
1053 'verb', 'object-type', 'object', 'target', 'contact-id',
1054 'icid', 'psid', 'gravity'];
1055 $item = self::selectFirst($fields, ['id' => $item_id]);
1056 if (!DBA::isResult($item)) {
1057 Logger::info('Item not found.', ['id' => $item_id]);
1061 if ($item['deleted']) {
1062 Logger::info('Item has already been marked for deletion.', ['id' => $item_id]);
1066 $parent = self::selectFirst(['origin'], ['id' => $item['parent']]);
1067 if (!DBA::isResult($parent)) {
1068 $parent = ['origin' => false];
1071 // clean up categories and tags so they don't end up as orphans
1074 $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
1077 foreach ($matches as $mtch) {
1078 FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],true);
1084 $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
1087 foreach ($matches as $mtch) {
1088 FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],false);
1093 * If item is a link to a photo resource, nuke all the associated photos
1094 * (visitors will not have photo resources)
1095 * This only applies to photos uploaded from the photos page. Photos inserted into a post do not
1096 * generate a resource-id and therefore aren't intimately linked to the item.
1098 /// @TODO: this should first check if photo is used elsewhere
1099 if (strlen($item['resource-id'])) {
1100 Photo::delete(['resource-id' => $item['resource-id'], 'uid' => $item['uid']]);
1103 // If item is a link to an event, delete the event.
1104 if (intval($item['event-id'])) {
1105 Event::delete($item['event-id']);
1108 // If item has attachments, drop them
1109 /// @TODO: this should first check if attachment is used elsewhere
1110 foreach (explode(",", $item['attach']) as $attach) {
1111 preg_match("|attach/(\d+)|", $attach, $matches);
1112 if (is_array($matches) && count($matches) > 1) {
1113 Attach::delete(['id' => $matches[1], 'uid' => $item['uid']]);
1117 // Delete notifications
1118 DBA::delete('notify', ['iid' => $item['id'], 'uid' => $item['uid']]);
1120 // Set the item to "deleted"
1121 $item_fields = ['deleted' => true, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
1122 DBA::update('item', $item_fields, ['id' => $item['id']]);
1124 Category::storeTextByURIId($item['uri-id'], $item['uid'], '');
1125 self::deleteThread($item['id'], $item['parent-uri']);
1127 if (!self::exists(["`uri` = ? AND `uid` != 0 AND NOT `deleted`", $item['uri']])) {
1128 self::markForDeletion(['uri' => $item['uri'], 'uid' => 0, 'deleted' => false], $priority);
1131 Post\DeliveryData::delete($item['uri-id']);
1133 if (!empty($item['icid']) && !self::exists(['icid' => $item['icid'], 'deleted' => false])) {
1134 DBA::delete('item-content', ['id' => $item['icid']], ['cascade' => false]);
1136 // When the permission set will be used in photo and events as well,
1137 // this query here needs to be extended.
1138 // @todo Currently deactivated. We need the permission set in the deletion process.
1139 // This is a reminder to add the removal somewhere else.
1140 //if (!empty($item['psid']) && !self::exists(['psid' => $item['psid'], 'deleted' => false])) {
1141 // DBA::delete('permissionset', ['id' => $item['psid']], ['cascade' => false]);
1144 // If it's the parent of a comment thread, kill all the kids
1145 if ($item['gravity'] == GRAVITY_PARENT) {
1146 self::markForDeletion(['parent' => $item['parent'], 'deleted' => false], $priority);
1149 // Is it our comment and/or our thread?
1150 if ($item['origin'] || $parent['origin']) {
1151 // When we delete the original post we will delete all existing copies on the server as well
1152 self::markForDeletion(['uri' => $item['uri'], 'deleted' => false], $priority);
1154 // send the notification upstream/downstream
1155 Worker::add(['priority' => $priority, 'dont_fork' => true], "Notifier", Delivery::DELETION, intval($item['id']));
1156 } elseif ($item['uid'] != 0) {
1158 // When we delete just our local user copy of an item, we have to set a marker to hide it
1159 $global_item = self::selectFirst(['id'], ['uri' => $item['uri'], 'uid' => 0, 'deleted' => false]);
1160 if (DBA::isResult($global_item)) {
1161 DBA::update('user-item', ['hidden' => true], ['iid' => $global_item['id'], 'uid' => $item['uid']], true);
1165 Logger::info('Item has been marked for deletion.', ['id' => $item_id]);
1171 private static function guid($item, $notify)
1173 if (!empty($item['guid'])) {
1174 return Strings::escapeTags(trim($item['guid']));
1178 // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
1179 // We add the hash of our own host because our host is the original creator of the post.
1180 $prefix_host = DI::baseUrl()->getHostname();
1184 // We are only storing the post so we create a GUID from the original hostname.
1185 if (!empty($item['author-link'])) {
1186 $parsed = parse_url($item['author-link']);
1187 if (!empty($parsed['host'])) {
1188 $prefix_host = $parsed['host'];
1192 if (empty($prefix_host) && !empty($item['plink'])) {
1193 $parsed = parse_url($item['plink']);
1194 if (!empty($parsed['host'])) {
1195 $prefix_host = $parsed['host'];
1199 if (empty($prefix_host) && !empty($item['uri'])) {
1200 $parsed = parse_url($item['uri']);
1201 if (!empty($parsed['host'])) {
1202 $prefix_host = $parsed['host'];
1206 // Is it in the format data@host.tld? - Used for mail contacts
1207 if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
1208 $mailparts = explode('@', $item['author-link']);
1209 $prefix_host = array_pop($mailparts);
1213 if (!empty($item['plink'])) {
1214 $guid = self::guidFromUri($item['plink'], $prefix_host);
1215 } elseif (!empty($item['uri'])) {
1216 $guid = self::guidFromUri($item['uri'], $prefix_host);
1218 $guid = System::createUUID(hash('crc32', $prefix_host));
1224 private static function contactId($item)
1226 if (!empty($item['contact-id']) && DBA::exists('contact', ['self' => true, 'id' => $item['contact-id']])) {
1227 return $item['contact-id'];
1228 } elseif (($item['gravity'] == GRAVITY_PARENT) && !empty($item['uid']) && !empty($item['contact-id']) && Contact::isSharing($item['contact-id'], $item['uid'])) {
1229 return $item['contact-id'];
1230 } elseif (!empty($item['uid']) && !Contact::isSharing($item['author-id'], $item['uid'])) {
1231 return $item['author-id'];
1232 } elseif (!empty($item['contact-id'])) {
1233 return $item['contact-id'];
1235 $contact_id = Contact::getIdForURL($item['author-link'], $item['uid']);
1236 if (!empty($contact_id)) {
1240 return $item['author-id'];
1243 // This function will finally cover most of the preparation functionality in mod/item.php
1244 public static function prepare(&$item)
1247 * @TODO: Unused code triggering inspection errors
1249 $data = BBCode::getAttachmentData($item['body']);
1250 if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $item['body'], $match, PREG_SET_ORDER) || isset($data["type"]))
1251 && ($posttype != Item::PT_PERSONAL_NOTE)) {
1252 $posttype = Item::PT_PAGE;
1253 $objecttype = ACTIVITY_OBJ_BOOKMARK;
1259 * Write an item array into a spool file to be inserted later.
1260 * This command is called whenever there are issues storing an item.
1262 * @param array $item The item fields that are to be inserted
1263 * @throws \Exception
1265 private static function spool($orig_item)
1267 // Now we store the data in the spool directory
1268 // We use "microtime" to keep the arrival order and "mt_rand" to avoid duplicates
1269 $file = 'item-' . round(microtime(true) * 10000) . '-' . mt_rand() . '.msg';
1271 $spoolpath = get_spoolpath();
1272 if ($spoolpath != "") {
1273 $spool = $spoolpath . '/' . $file;
1275 file_put_contents($spool, json_encode($orig_item));
1276 Logger::warning("Item wasn't stored - Item was spooled into file", ['file' => $file]);
1281 * Check if the item array is a duplicate
1283 * @param array $item
1284 * @return boolean is it a duplicate?
1286 private static function isDuplicate(array $item)
1288 // Checking if there is already an item with the same guid
1289 $condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
1290 if (self::exists($condition)) {
1291 Logger::notice('Found already existing item', [
1292 'guid' => $item['guid'],
1293 'uid' => $item['uid'],
1294 'network' => $item['network']
1299 $condition = ["`uri` = ? AND `network` IN (?, ?) AND `uid` = ?",
1300 $item['uri'], $item['network'], Protocol::DFRN, $item['uid']];
1301 if (self::exists($condition)) {
1302 Logger::notice('duplicated item with the same uri found.', $item);
1306 // On Friendica and Diaspora the GUID is unique
1307 if (in_array($item['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
1308 $condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
1309 if (self::exists($condition)) {
1310 Logger::notice('duplicated item with the same guid found.', $item);
1313 } elseif ($item['network'] == Protocol::OSTATUS) {
1314 // Check for an existing post with the same content. There seems to be a problem with OStatus.
1315 $condition = ["`body` = ? AND `network` = ? AND `created` = ? AND `contact-id` = ? AND `uid` = ?",
1316 $item['body'], $item['network'], $item['created'], $item['contact-id'], $item['uid']];
1317 if (self::exists($condition)) {
1318 Logger::notice('duplicated item with the same body found.', $item);
1324 * Check for already added items.
1325 * There is a timing issue here that sometimes creates double postings.
1326 * An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
1328 if (($item['uid'] == 0) && self::exists(['uri' => trim($item['uri']), 'uid' => 0])) {
1329 Logger::notice('Global item already stored.', ['uri' => $item['uri'], 'network' => $item['network']]);
1337 * Check if the item array is valid
1339 * @param array $item
1340 * @return boolean item is valid
1342 private static function isValid(array $item)
1344 // When there is no content then we don't post it
1345 if ($item['body'].$item['title'] == '') {
1346 Logger::notice('No body, no title.');
1350 // check for create date and expire time
1351 $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0);
1353 $user = DBA::selectFirst('user', ['expire'], ['uid' => $item['uid']]);
1354 if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) {
1355 $expire_interval = $user['expire'];
1358 if (($expire_interval > 0) && !empty($item['created'])) {
1359 $expire_date = time() - ($expire_interval * 86400);
1360 $created_date = strtotime($item['created']);
1361 if ($created_date < $expire_date) {
1362 Logger::notice('Item created before expiration interval.', [
1363 'created' => date('c', $created_date),
1364 'expired' => date('c', $expire_date),
1371 if (Contact::isBlocked($item['author-id'])) {
1372 Logger::notice('Author is blocked node-wide', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
1376 if (!empty($item['author-link']) && Network::isUrlBlocked($item['author-link'])) {
1377 Logger::notice('Author server is blocked', ['author-link' => $item['author-link'], 'item-uri' => $item['uri']]);
1381 if (!empty($item['uid']) && Contact::isBlockedByUser($item['author-id'], $item['uid'])) {
1382 Logger::notice('Author is blocked by user', ['author-link' => $item['author-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1386 if (Contact::isBlocked($item['owner-id'])) {
1387 Logger::notice('Owner is blocked node-wide', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
1391 if (!empty($item['owner-link']) && Network::isUrlBlocked($item['owner-link'])) {
1392 Logger::notice('Owner server is blocked', ['owner-link' => $item['owner-link'], 'item-uri' => $item['uri']]);
1396 if (!empty($item['uid']) && Contact::isBlockedByUser($item['owner-id'], $item['uid'])) {
1397 Logger::notice('Owner is blocked by user', ['owner-link' => $item['owner-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1401 // The causer is set during a thread completion, for example because of a reshare. It countains the responsible actor.
1402 if (!empty($item['uid']) && !empty($item['causer-id']) && Contact::isBlockedByUser($item['causer-id'], $item['uid'])) {
1403 Logger::notice('Causer is blocked by user', ['causer-link' => $item['causer-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1407 if (!empty($item['uid']) && !empty($item['causer-id']) && ($item['parent-uri'] == $item['uri']) && Contact::isIgnoredByUser($item['causer-id'], $item['uid'])) {
1408 Logger::notice('Causer is ignored by user', ['causer-link' => $item['causer-link'], 'uid' => $item['uid'], 'item-uri' => $item['uri']]);
1412 if ($item['verb'] == Activity::FOLLOW) {
1413 if (!$item['origin'] && ($item['author-id'] == Contact::getPublicIdByUserId($item['uid']))) {
1414 // Our own follow request can be relayed to us. We don't store it to avoid notification chaos.
1415 Logger::info("Follow: Don't store not origin follow request", ['parent-uri' => $item['parent-uri']]);
1419 $condition = ['verb' => Activity::FOLLOW, 'uid' => $item['uid'],
1420 'parent-uri' => $item['parent-uri'], 'author-id' => $item['author-id']];
1421 if (self::exists($condition)) {
1422 // It happens that we receive multiple follow requests by the same author - we only store one.
1423 Logger::info('Follow: Found existing follow request from author', ['author-id' => $item['author-id'], 'parent-uri' => $item['parent-uri']]);
1432 * Return the id of the given item array if it has been stored before
1434 * @param array $item
1435 * @return integer item id
1437 private static function getDuplicateID(array $item)
1439 if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
1440 $condition = ["`uri` = ? AND `uid` = ? AND `network` IN (?, ?, ?, ?)",
1441 trim($item['uri']), $item['uid'],
1442 Protocol::ACTIVITYPUB, Protocol::DIASPORA, Protocol::DFRN, Protocol::OSTATUS];
1443 $existing = self::selectFirst(['id', 'network'], $condition);
1444 if (DBA::isResult($existing)) {
1445 // We only log the entries with a different user id than 0. Otherwise we would have too many false positives
1446 if ($item['uid'] != 0) {
1447 Logger::notice('Item already existed for user', [
1448 'uri' => $item['uri'],
1449 'uid' => $item['uid'],
1450 'network' => $item['network'],
1451 'existing_id' => $existing["id"],
1452 'existing_network' => $existing["network"]
1456 return $existing["id"];
1463 * Fetch parent data for the given item array
1465 * @param array $item
1466 * @return array item array with parent data
1468 private static function getParentData(array $item)
1470 // find the parent and snarf the item id and ACLs
1471 // and anything else we need to inherit
1473 $fields = ['uri', 'parent-uri', 'id', 'deleted',
1474 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
1475 'wall', 'private', 'forum_mode', 'origin', 'author-id'];
1476 $condition = ['uri' => $item['parent-uri'], 'uid' => $item['uid']];
1477 $params = ['order' => ['id' => false]];
1478 $parent = self::selectFirst($fields, $condition, $params);
1480 if (!DBA::isResult($parent)) {
1481 Logger::info('item parent was not found - ignoring item', ['parent-uri' => $item['parent-uri'], 'uid' => $item['uid']]);
1484 // is the new message multi-level threaded?
1485 // even though we don't support it now, preserve the info
1486 // and re-attach to the conversation parent.
1487 if ($parent['uri'] != $parent['parent-uri']) {
1488 $item['parent-uri'] = $parent['parent-uri'];
1490 $condition = ['uri' => $item['parent-uri'],
1491 'parent-uri' => $item['parent-uri'],
1492 'uid' => $item['uid']];
1493 $params = ['order' => ['id' => false]];
1494 $toplevel_parent = self::selectFirst($fields, $condition, $params);
1496 if (DBA::isResult($toplevel_parent)) {
1497 $parent = $toplevel_parent;
1501 $item['parent'] = $parent['id'];
1502 $item["deleted"] = $parent['deleted'];
1503 $item["allow_cid"] = $parent['allow_cid'];
1504 $item['allow_gid'] = $parent['allow_gid'];
1505 $item['deny_cid'] = $parent['deny_cid'];
1506 $item['deny_gid'] = $parent['deny_gid'];
1507 $item['parent_origin'] = $parent['origin'];
1509 // Don't federate received participation messages
1510 if ($item['verb'] != Activity::FOLLOW) {
1511 $item['wall'] = $parent['wall'];
1513 $item['wall'] = false;
1517 * If the parent is private, force privacy for the entire conversation
1518 * This differs from the above settings as it subtly allows comments from
1519 * email correspondents to be private even if the overall thread is not.
1521 if ($parent['private']) {
1522 $item['private'] = $parent['private'];
1526 * Edge case. We host a public forum that was originally posted to privately.
1527 * The original author commented, but as this is a comment, the permissions
1528 * weren't fixed up so it will still show the comment as private unless we fix it here.
1530 if ((intval($parent['forum_mode']) == 1) && ($parent['private'] != self::PUBLIC)) {
1531 $item['private'] = self::PUBLIC;
1534 // If its a post that originated here then tag the thread as "mention"
1535 if ($item['origin'] && $item['uid']) {
1536 DBA::update('thread', ['mention' => true], ['iid' => $item['parent']]);
1537 Logger::info('tagged thread as mention', ['parent' => $item['parent'], 'uid' => $item['uid']]);
1540 // Update the contact relations
1541 if ($item['author-id'] != $parent['author-id']) {
1542 DBA::update('contact-relation', ['last-interaction' => $item['created']], ['cid' => $parent['author-id'], 'relation-cid' => $item['author-id']], true);
1550 * Get the gravity for the given item array
1552 * @param array $item
1553 * @return integer gravity
1555 private static function getGravity(array $item)
1557 $activity = DI::activity();
1559 if (isset($item['gravity'])) {
1560 return intval($item['gravity']);
1561 } elseif ($item['parent-uri'] === $item['uri']) {
1562 return GRAVITY_PARENT;
1563 } elseif ($activity->match($item['verb'], Activity::POST)) {
1564 return GRAVITY_COMMENT;
1565 } elseif ($activity->match($item['verb'], Activity::FOLLOW)) {
1566 return GRAVITY_ACTIVITY;
1568 Logger::info('Unknown gravity for verb', ['verb' => $item['verb']]);
1569 return GRAVITY_UNKNOWN; // Should not happen
1572 public static function insert($item, $notify = false, $dontcache = false)
1576 $priority = PRIORITY_HIGH;
1578 // If it is a posting where users should get notifications, then define it as wall posting
1581 $item['origin'] = 1;
1582 $item['network'] = Protocol::DFRN;
1583 $item['protocol'] = Conversation::PARCEL_DFRN;
1585 if (is_int($notify)) {
1586 $priority = $notify;
1589 $item['network'] = trim(($item['network'] ?? '') ?: Protocol::PHANTOM);
1592 $uid = intval($item['uid']);
1594 $item['guid'] = self::guid($item, $notify);
1595 $item['uri'] = substr(Strings::escapeTags(trim(($item['uri'] ?? '') ?: self::newURI($item['uid'], $item['guid']))), 0, 255);
1598 $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
1600 // Store conversation data
1601 $item = Conversation::insert($item);
1603 if (!empty($item['thr-parent'])) {
1604 $item['parent-uri'] = $item['thr-parent'];
1608 * Do we already have this item?
1609 * We have to check several networks since Friendica posts could be repeated
1610 * via OStatus (maybe Diasporsa as well)
1612 $duplicate = self::getDuplicateID($item);
1617 // Additional duplicate checks
1618 /// @todo Check why the first duplication check returns the item number and the second a 0
1619 if (self::isDuplicate($item)) {
1623 $item['wall'] = intval($item['wall'] ?? 0);
1624 $item['extid'] = trim($item['extid'] ?? '');
1625 $item['author-name'] = trim($item['author-name'] ?? '');
1626 $item['author-link'] = trim($item['author-link'] ?? '');
1627 $item['author-avatar'] = trim($item['author-avatar'] ?? '');
1628 $item['owner-name'] = trim($item['owner-name'] ?? '');
1629 $item['owner-link'] = trim($item['owner-link'] ?? '');
1630 $item['owner-avatar'] = trim($item['owner-avatar'] ?? '');
1631 $item['received'] = (isset($item['received']) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
1632 $item['created'] = (isset($item['created']) ? DateTimeFormat::utc($item['created']) : $item['received']);
1633 $item['edited'] = (isset($item['edited']) ? DateTimeFormat::utc($item['edited']) : $item['created']);
1634 $item['changed'] = (isset($item['changed']) ? DateTimeFormat::utc($item['changed']) : $item['created']);
1635 $item['commented'] = (isset($item['commented']) ? DateTimeFormat::utc($item['commented']) : $item['created']);
1636 $item['title'] = substr(trim($item['title'] ?? ''), 0, 255);
1637 $item['location'] = trim($item['location'] ?? '');
1638 $item['coord'] = trim($item['coord'] ?? '');
1639 $item['visible'] = (isset($item['visible']) ? intval($item['visible']) : 1);
1640 $item['deleted'] = 0;
1641 $item['parent-uri'] = trim(($item['parent-uri'] ?? '') ?: $item['uri']);
1642 $item['post-type'] = ($item['post-type'] ?? '') ?: self::PT_ARTICLE;
1643 $item['verb'] = trim($item['verb'] ?? '');
1644 $item['object-type'] = trim($item['object-type'] ?? '');
1645 $item['object'] = trim($item['object'] ?? '');
1646 $item['target-type'] = trim($item['target-type'] ?? '');
1647 $item['target'] = trim($item['target'] ?? '');
1648 $item['plink'] = substr(trim($item['plink'] ?? ''), 0, 255);
1649 $item['allow_cid'] = trim($item['allow_cid'] ?? '');
1650 $item['allow_gid'] = trim($item['allow_gid'] ?? '');
1651 $item['deny_cid'] = trim($item['deny_cid'] ?? '');
1652 $item['deny_gid'] = trim($item['deny_gid'] ?? '');
1653 $item['private'] = intval($item['private'] ?? self::PUBLIC);
1654 $item['body'] = trim($item['body'] ?? '');
1655 $item['attach'] = trim($item['attach'] ?? '');
1656 $item['app'] = trim($item['app'] ?? '');
1657 $item['origin'] = intval($item['origin'] ?? 0);
1658 $item['postopts'] = trim($item['postopts'] ?? '');
1659 $item['resource-id'] = trim($item['resource-id'] ?? '');
1660 $item['event-id'] = intval($item['event-id'] ?? 0);
1661 $item['inform'] = trim($item['inform'] ?? '');
1662 $item['file'] = trim($item['file'] ?? '');
1664 // Items cannot be stored before they happen ...
1665 if ($item['created'] > DateTimeFormat::utcNow()) {
1666 $item['created'] = DateTimeFormat::utcNow();
1669 // We haven't invented time travel by now.
1670 if ($item['edited'] > DateTimeFormat::utcNow()) {
1671 $item['edited'] = DateTimeFormat::utcNow();
1674 $item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
1676 $item['language'] = self::getLanguage($item);
1678 $item['gravity'] = self::getGravity($item);
1680 $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
1681 'photo' => $item['author-avatar'], 'network' => $item['network']];
1682 $item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, false, $default);
1684 $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'],
1685 'photo' => $item['owner-avatar'], 'network' => $item['network']];
1686 $item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, false, $default);
1688 // The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
1689 $item["contact-id"] = self::contactId($item);
1691 if (!self::isValid($item)) {
1695 // We don't store the causer, we only have it here for the checks in the function above
1696 unset($item['causer-id']);
1697 unset($item['causer-link']);
1699 // We don't store these fields anymore in the item table
1700 unset($item['author-link']);
1701 unset($item['author-name']);
1702 unset($item['author-avatar']);
1703 unset($item['author-network']);
1705 unset($item['owner-link']);
1706 unset($item['owner-name']);
1707 unset($item['owner-avatar']);
1709 $item['thr-parent'] = $item['parent-uri'];
1711 if ($item['parent-uri'] != $item['uri']) {
1712 $item = self::getParentData($item);
1717 $parent_id = $item['parent'];
1718 unset($item['parent']);
1719 $parent_origin = $item['parent_origin'];
1720 unset($item['parent_origin']);
1723 $parent_origin = $item['origin'];
1726 $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
1727 $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
1729 // Is this item available in the global items (with uid=0)?
1730 if ($item["uid"] == 0) {
1731 $item["global"] = true;
1733 // Set the global flag on all items if this was a global item entry
1734 DBA::update('item', ['global' => true], ['uri' => $item["uri"]]);
1736 $item["global"] = self::exists(['uid' => 0, 'uri' => $item["uri"]]);
1740 if (!empty($item["allow_cid"] . $item["allow_gid"] . $item["deny_cid"] . $item["deny_gid"])) {
1741 $item["private"] = self::PRIVATE;
1745 $item['edit'] = false;
1746 $item['parent'] = $parent_id;
1747 Hook::callAll('post_local', $item);
1748 unset($item['edit']);
1749 unset($item['parent']);
1751 Hook::callAll('post_remote', $item);
1754 if (!empty($item['cancel'])) {
1755 Logger::log('post cancelled by addon.');
1759 if (empty($item['vid']) && !empty($item['verb'])) {
1760 $item['vid'] = Verb::getID($item['verb']);
1763 // Creates or assigns the permission set
1764 $item['psid'] = PermissionSet::getIdFromACL(
1772 unset($item['allow_cid']);
1773 unset($item['allow_gid']);
1774 unset($item['deny_cid']);
1775 unset($item['deny_gid']);
1777 // This array field is used to trigger some automatic reactions
1778 // It is mainly used in the "post_local" hook.
1779 unset($item['api_source']);
1782 // Check for hashtags in the body and repair or add hashtag links
1783 $item['body'] = self::setHashtags($item['body']);
1785 // Fill the cache field
1786 self::putInCache($item);
1788 if (stristr($item['verb'], Activity::POKE)) {
1789 $notify_type = Delivery::POKE;
1791 $notify_type = Delivery::POST;
1794 $like_no_comment = DI::config()->get('system', 'like_no_comment');
1798 if (!in_array($item['verb'], self::ACTIVITIES)) {
1799 $item['icid'] = self::insertContent($item);
1802 $body = $item['body'];
1804 // We just remove everything that is content
1805 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1806 unset($item[$field]);
1809 unset($item['activity']);
1811 // Filling item related side tables
1813 // Diaspora signature
1814 if (!empty($item['diaspora_signed_text'])) {
1815 DBA::insert('diaspora-interaction', ['uri-id' => $item['uri-id'], 'interaction' => $item['diaspora_signed_text']], true);
1818 unset($item['diaspora_signed_text']);
1820 // Attached file links
1821 if (!empty($item['file'])) {
1822 Category::storeTextByURIId($item['uri-id'], $item['uid'], $item['file']);
1825 unset($item['file']);
1827 // Delivery relevant data
1828 $delivery_data = Post\DeliveryData::extractFields($item);
1829 unset($item['postopts']);
1830 unset($item['inform']);
1832 if (!empty($item['origin']) || !empty($item['wall']) || !empty($delivery_data['postopts']) || !empty($delivery_data['inform'])) {
1833 Post\DeliveryData::insert($item['uri-id'], $delivery_data);
1836 // Store tags from the body if this hadn't been handled previously in the protocol classes
1837 if (!Tag::existsForPost($item['uri-id'])) {
1838 Tag::storeFromBody($item['uri-id'], $body);
1841 $ret = DBA::insert('item', $item);
1843 // When the item was successfully stored we fetch the ID of the item.
1844 if (DBA::isResult($ret)) {
1845 $current_post = DBA::lastInsertId();
1847 // This can happen - for example - if there are locking timeouts.
1850 // Store the data into a spool file so that we can try again later.
1851 self::spool($orig_item);
1855 if ($current_post == 0) {
1856 // This is one of these error messages that never should occur.
1857 Logger::log("couldn't find created item - we better quit now.");
1862 // How much entries have we created?
1863 // We wouldn't need this query when we could use an unique index - but MySQL has length problems with them.
1864 $entries = DBA::count('item', ['uri' => $item['uri'], 'uid' => $item['uid'], 'network' => $item['network']]);
1867 // There are duplicates. We delete our just created entry.
1868 Logger::info('Delete duplicated item', ['id' => $current_post, 'uri' => $item['uri'], 'uid' => $item['uid'], 'guid' => $item['guid']]);
1870 // Yes, we could do a rollback here - but we possibly are still having users with MyISAM.
1871 DBA::delete('item', ['id' => $current_post]);
1874 } elseif ($entries == 0) {
1875 // This really should never happen since we quit earlier if there were problems.
1876 Logger::log("Something is terribly wrong. We haven't found our created entry.");
1881 Logger::log('created item '.$current_post);
1883 if (!$parent_id || ($item['parent-uri'] === $item['uri'])) {
1884 $parent_id = $current_post;
1888 DBA::update('item', ['parent' => $parent_id], ['id' => $current_post]);
1890 $item['id'] = $current_post;
1891 $item['parent'] = $parent_id;
1893 // update the commented timestamp on the parent
1894 // Only update "commented" if it is really a comment
1895 if (($item['gravity'] != GRAVITY_ACTIVITY) || !$like_no_comment) {
1896 DBA::update('item', ['commented' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1898 DBA::update('item', ['changed' => DateTimeFormat::utcNow()], ['id' => $parent_id]);
1901 if ($item['parent-uri'] === $item['uri']) {
1902 self::addThread($current_post);
1904 self::updateThread($parent_id);
1908 // In that function we check if this is a forum post. Additionally we delete the item under certain circumstances
1909 if (self::tagDeliver($item['uid'], $current_post)) {
1910 // Get the user information for the logging
1911 $user = User::getById($uid);
1913 Logger::notice('Item had been deleted', ['id' => $current_post, 'user' => $uid, 'account-type' => $user['account-type']]);
1918 $posted_item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $current_post]);
1919 if (DBA::isResult($posted_item)) {
1921 Hook::callAll('post_local_end', $posted_item);
1923 Hook::callAll('post_remote_end', $posted_item);
1926 Logger::log('new item not found in DB, id ' . $current_post);
1930 if ($item['parent-uri'] === $item['uri']) {
1931 self::addShadow($current_post);
1933 self::addShadowPost($current_post);
1936 self::updateContact($item);
1938 UserItem::setNotification($current_post);
1940 check_user_notification($current_post);
1942 $transmit = $notify || ($item['visible'] && ($parent_origin || $item['origin']));
1945 $transmit_item = Item::selectFirst(['verb', 'origin'], ['id' => $item['id']]);
1946 // Don't relay participation messages
1947 if (($transmit_item['verb'] == Activity::FOLLOW) &&
1948 (!$transmit_item['origin'] || ($item['author-id'] != Contact::getPublicIdByUserId($uid)))) {
1949 Logger::info('Participation messages will not be relayed', ['item' => $item['id'], 'uri' => $item['uri'], 'verb' => $transmit_item['verb']]);
1955 Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, $current_post);
1958 return $current_post;
1962 * Insert a new item content entry
1964 * @param array $item The item fields that are to be inserted
1965 * @throws \Exception
1967 private static function insertContent(array $item)
1969 $fields = ['uri-plink-hash' => (string)$item['uri-id'], 'uri-id' => $item['uri-id']];
1971 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
1972 if (isset($item[$field])) {
1973 $fields[$field] = $item[$field];
1977 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
1978 if (DBA::isResult($item_content)) {
1979 $icid = $item_content['id'];
1980 Logger::info('Content found', ['icid' => $icid, 'uri' => $item['uri']]);
1984 DBA::insert('item-content', $fields, true);
1985 $icid = DBA::lastInsertId();
1987 Logger::info('Content inserted', ['icid' => $icid, 'uri' => $item['uri']]);
1991 // Possibly there can be timing issues. Then the same content could be inserted multiple times.
1992 // Due to the indexes this doesn't happen, but "lastInsertId" will be empty in these situations.
1993 // So we have to fetch the id manually. This is no bug and there is no data loss.
1994 $item_content = DBA::selectFirst('item-content', ['id'], ['uri-id' => $item['uri-id']]);
1995 if (DBA::isResult($item_content)) {
1996 $icid = $item_content['id'];
1997 Logger::notice('Content inserted with empty lastInsertId', ['icid' => $icid, 'uri' => $item['uri']]);
2001 // This shouldn't happen.
2002 Logger::error("Content wasn't inserted", $item);
2007 * Update existing item content entries
2009 * @param array $item The item fields that are to be changed
2010 * @param array $condition The condition for finding the item content entries
2011 * @throws \Exception
2013 private static function updateContent($item, $condition)
2015 // We have to select only the fields from the "item-content" table
2017 foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
2018 if (isset($item[$field])) {
2019 $fields[$field] = $item[$field];
2023 if (empty($fields)) {
2024 // when there are no fields at all, just use the condition
2025 // This is to ensure that we always store content.
2026 $fields = $condition;
2029 DBA::update('item-content', $fields, $condition, true);
2030 Logger::info('Updated content', ['condition' => $condition]);
2034 * Distributes public items to the receivers
2036 * @param integer $itemid Item ID that should be added
2037 * @param string $signed_text Original text (for Diaspora signatures), JSON encoded.
2038 * @throws \Exception
2040 public static function distribute($itemid, $signed_text = '')
2042 $condition = ["`id` IN (SELECT `parent` FROM `item` WHERE `id` = ?)", $itemid];
2043 $parent = self::selectFirst(['owner-id'], $condition);
2044 if (!DBA::isResult($parent)) {
2048 // Only distribute public items from native networks
2049 $condition = ['id' => $itemid, 'uid' => 0,
2050 'network' => array_merge(Protocol::FEDERATED ,['']),
2051 'visible' => true, 'deleted' => false, 'moderated' => false, 'private' => [self::PUBLIC, self::UNLISTED]];
2052 $item = self::selectFirst(self::ITEM_FIELDLIST, $condition);
2053 if (!DBA::isResult($item)) {
2057 $origin = $item['origin'];
2060 unset($item['parent']);
2061 unset($item['mention']);
2062 unset($item['wall']);
2063 unset($item['origin']);
2064 unset($item['starred']);
2068 /// @todo add a field "pcid" in the contact table that referrs to the public contact id.
2069 $owner = DBA::selectFirst('contact', ['url', 'nurl', 'alias'], ['id' => $parent['owner-id']]);
2070 if (!DBA::isResult($owner)) {
2074 $condition = ['nurl' => $owner['nurl'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2075 $contacts = DBA::select('contact', ['uid'], $condition);
2076 while ($contact = DBA::fetch($contacts)) {
2077 if ($contact['uid'] == 0) {
2081 $users[$contact['uid']] = $contact['uid'];
2083 DBA::close($contacts);
2085 $condition = ['alias' => $owner['url'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2086 $contacts = DBA::select('contact', ['uid'], $condition);
2087 while ($contact = DBA::fetch($contacts)) {
2088 if ($contact['uid'] == 0) {
2092 $users[$contact['uid']] = $contact['uid'];
2094 DBA::close($contacts);
2096 if (!empty($owner['alias'])) {
2097 $condition = ['url' => $owner['alias'], 'rel' => [Contact::SHARING, Contact::FRIEND]];
2098 $contacts = DBA::select('contact', ['uid'], $condition);
2099 while ($contact = DBA::fetch($contacts)) {
2100 if ($contact['uid'] == 0) {
2104 $users[$contact['uid']] = $contact['uid'];
2106 DBA::close($contacts);
2111 if ($item['uri'] != $item['parent-uri']) {
2112 $parents = self::select(['uid', 'origin'], ["`uri` = ? AND `uid` != 0", $item['parent-uri']]);
2113 while ($parent = self::fetch($parents)) {
2114 $users[$parent['uid']] = $parent['uid'];
2115 if ($parent['origin'] && !$origin) {
2116 $origin_uid = $parent['uid'];
2121 foreach ($users as $uid) {
2122 if ($origin_uid == $uid) {
2123 $item['diaspora_signed_text'] = $signed_text;
2125 self::storeForUser($itemid, $item, $uid);
2130 * Store public items for the receivers
2132 * @param integer $itemid Item ID that should be added
2133 * @param array $item The item entry that will be stored
2134 * @param integer $uid The user that will receive the item entry
2135 * @throws \Exception
2137 private static function storeForUser($itemid, $item, $uid)
2139 $item['uid'] = $uid;
2140 $item['origin'] = 0;
2142 if ($item['uri'] == $item['parent-uri']) {
2143 $item['contact-id'] = Contact::getIdForURL($item['owner-link'], $uid);
2145 $item['contact-id'] = Contact::getIdForURL($item['author-link'], $uid);
2148 if (empty($item['contact-id'])) {
2149 $self = DBA::selectFirst('contact', ['id'], ['self' => true, 'uid' => $uid]);
2150 if (!DBA::isResult($self)) {
2153 $item['contact-id'] = $self['id'];
2156 /// @todo Handling of "event-id"
2159 if ($item['uri'] == $item['parent-uri']) {
2160 $contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
2161 if (DBA::isResult($contact)) {
2162 $notify = self::isRemoteSelf($contact, $item);
2166 $distributed = self::insert($item, $notify, true);
2168 if (!$distributed) {
2169 Logger::log("Distributed public item " . $itemid . " for user " . $uid . " wasn't stored", Logger::DEBUG);
2171 Logger::log("Distributed public item " . $itemid . " for user " . $uid . " with id " . $distributed, Logger::DEBUG);
2176 * Add a shadow entry for a given item id that is a thread starter
2178 * We store every public item entry additionally with the user id "0".
2179 * This is used for the community page and for the search.
2180 * It is planned that in the future we will store public item entries only once.
2182 * @param integer $itemid Item ID that should be added
2183 * @throws \Exception
2185 public static function addShadow($itemid)
2187 $fields = ['uid', 'private', 'moderated', 'visible', 'deleted', 'network', 'uri'];
2188 $condition = ['id' => $itemid, 'parent' => [0, $itemid]];
2189 $item = self::selectFirst($fields, $condition);
2191 if (!DBA::isResult($item)) {
2195 // is it already a copy?
2196 if (($itemid == 0) || ($item['uid'] == 0)) {
2200 // Is it a visible public post?
2201 if (!$item["visible"] || $item["deleted"] || $item["moderated"] || ($item["private"] == Item::PRIVATE)) {
2205 // is it an entry from a connector? Only add an entry for natively connected networks
2206 if (!in_array($item["network"], array_merge(Protocol::FEDERATED ,['']))) {
2210 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2214 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2216 if (DBA::isResult($item)) {
2217 // Preparing public shadow (removing user specific data)
2220 unset($item['parent']);
2221 unset($item['wall']);
2222 unset($item['mention']);
2223 unset($item['origin']);
2224 unset($item['starred']);
2225 unset($item['postopts']);
2226 unset($item['inform']);
2227 if ($item['uri'] == $item['parent-uri']) {
2228 $item['contact-id'] = $item['owner-id'];
2230 $item['contact-id'] = $item['author-id'];
2233 $public_shadow = self::insert($item, false, true);
2235 Logger::log("Stored public shadow for thread ".$itemid." under id ".$public_shadow, Logger::DEBUG);
2240 * Add a shadow entry for a given item id that is a comment
2242 * This function does the same like the function above - but for comments
2244 * @param integer $itemid Item ID that should be added
2245 * @throws \Exception
2247 public static function addShadowPost($itemid)
2249 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $itemid]);
2250 if (!DBA::isResult($item)) {
2254 // Is it a toplevel post?
2255 if ($item['gravity'] == GRAVITY_PARENT) {
2256 self::addShadow($itemid);
2260 // Is this a shadow entry?
2261 if ($item['uid'] == 0) {
2265 // Is there a shadow parent?
2266 if (!self::exists(['uri' => $item['parent-uri'], 'uid' => 0])) {
2270 // Is there already a shadow entry?
2271 if (self::exists(['uri' => $item['uri'], 'uid' => 0])) {
2275 // Save "origin" and "parent" state
2276 $origin = $item['origin'];
2277 $parent = $item['parent'];
2279 // Preparing public shadow (removing user specific data)
2282 unset($item['parent']);
2283 unset($item['wall']);
2284 unset($item['mention']);
2285 unset($item['origin']);
2286 unset($item['starred']);
2287 unset($item['postopts']);
2288 unset($item['inform']);
2289 $item['contact-id'] = Contact::getIdForURL($item['author-link']);
2291 $public_shadow = self::insert($item, false, true);
2293 Logger::log("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, Logger::DEBUG);
2295 // If this was a comment to a Diaspora post we don't get our comment back.
2296 // This means that we have to distribute the comment by ourselves.
2297 if ($origin && self::exists(['id' => $parent, 'network' => Protocol::DIASPORA])) {
2298 self::distribute($public_shadow);
2303 * Adds a language specification in a "language" element of given $arr.
2304 * Expects "body" element to exist in $arr.
2306 * @param array $item
2307 * @return string detected language
2308 * @throws \Text_LanguageDetect_Exception
2310 private static function getLanguage(array $item)
2312 $naked_body = BBCode::toPlaintext($item['body'], false);
2314 $ld = new Text_LanguageDetect();
2315 $ld->setNameMode(2);
2316 $languages = $ld->detect($naked_body, 3);
2317 if (is_array($languages)) {
2318 return json_encode($languages);
2325 * Creates an unique guid out of a given uri
2327 * @param string $uri uri of an item entry
2328 * @param string $host hostname for the GUID prefix
2329 * @return string unique guid
2331 public static function guidFromUri($uri, $host)
2333 // Our regular guid routine is using this kind of prefix as well
2334 // We have to avoid that different routines could accidentally create the same value
2335 $parsed = parse_url($uri);
2337 // We use a hash of the hostname as prefix for the guid
2338 $guid_prefix = hash("crc32", $host);
2340 // Remove the scheme to make sure that "https" and "http" doesn't make a difference
2341 unset($parsed["scheme"]);
2343 // Glue it together to be able to make a hash from it
2344 $host_id = implode("/", $parsed);
2346 // We could use any hash algorithm since it isn't a security issue
2347 $host_hash = hash("ripemd128", $host_id);
2349 return $guid_prefix.$host_hash;
2353 * generate an unique URI
2355 * @param integer $uid User id
2356 * @param string $guid An existing GUID (Otherwise it will be generated)
2359 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2361 public static function newURI($uid, $guid = "")
2364 $guid = System::createUUID();
2367 return DI::baseUrl()->get() . '/objects/' . $guid;
2371 * Set "success_update" and "last-item" to the date of the last time we heard from this contact
2373 * This can be used to filter for inactive contacts.
2374 * Only do this for public postings to avoid privacy problems, since poco data is public.
2375 * Don't set this value if it isn't from the owner (could be an author that we don't know)
2377 * @param array $arr Contains the just posted item record
2378 * @throws \Exception
2380 private static function updateContact($arr)
2382 // Unarchive the author
2383 $contact = DBA::selectFirst('contact', [], ['id' => $arr["author-id"]]);
2384 if (DBA::isResult($contact)) {
2385 Contact::unmarkForArchival($contact);
2388 // Unarchive the contact if it's not our own contact
2389 $contact = DBA::selectFirst('contact', [], ['id' => $arr["contact-id"], 'self' => false]);
2390 if (DBA::isResult($contact)) {
2391 Contact::unmarkForArchival($contact);
2394 /// @todo On private posts we could obfuscate the date
2395 $update = ($arr['private'] != self::PRIVATE);
2397 // Is it a forum? Then we don't care about the rules from above
2398 if (!$update && in_array($arr["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN]) && ($arr["parent-uri"] === $arr["uri"])) {
2399 if (DBA::exists('contact', ['id' => $arr['contact-id'], 'forum' => true])) {
2405 // The "self" contact id is used (for example in the connectors) when the contact is unknown
2406 // So we have to ensure to only update the last item when it had been our own post,
2407 // or it had been done by a "regular" contact.
2408 if (!empty($arr['wall'])) {
2409 $condition = ['id' => $arr['contact-id']];
2411 $condition = ['id' => $arr['contact-id'], 'self' => false];
2413 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']], $condition);
2415 // Now do the same for the system wide contacts with uid=0
2416 if ($arr['private'] != self::PRIVATE) {
2417 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2418 ['id' => $arr['owner-id']]);
2420 if ($arr['owner-id'] != $arr['author-id']) {
2421 DBA::update('contact', ['success_update' => $arr['received'], 'last-item' => $arr['received']],
2422 ['id' => $arr['author-id']]);
2427 public static function setHashtags($body)
2429 $body = BBCode::performWithEscapedTags($body, ['noparse', 'pre', 'code'], function ($body) {
2430 $tags = BBCode::getTags($body);
2433 if (!count($tags)) {
2437 // This sorting is important when there are hashtags that are part of other hashtags
2438 // Otherwise there could be problems with hashtags like #test and #test2
2439 // Because of this we are sorting from the longest to the shortest tag.
2440 usort($tags, function ($a, $b) {
2441 return strlen($b) <=> strlen($a);
2444 $URLSearchString = "^\[\]";
2446 // All hashtags should point to the home server if "local_tags" is activated
2447 if (DI::config()->get('system', 'local_tags')) {
2448 $body = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2449 "#[url=" . DI::baseUrl() . "/search?tag=$2]$2[/url]", $body);
2452 // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
2453 $body = preg_replace_callback("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2455 return ("[url=" . str_replace("#", "#", $match[1]) . "]" . str_replace("#", "#", $match[2]) . "[/url]");
2458 $body = preg_replace_callback("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",
2460 return ("[bookmark=" . str_replace("#", "#", $match[1]) . "]" . str_replace("#", "#", $match[2]) . "[/bookmark]");
2463 $body = preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
2465 return ("[attachment " . str_replace("#", "#", $match[1]) . "]" . $match[2] . "[/attachment]");
2468 // Repair recursive urls
2469 $body = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
2472 foreach ($tags as $tag) {
2473 if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || strlen($tag) < 2 || $tag[1] == '#') {
2477 $basetag = str_replace('_', ' ', substr($tag, 1));
2478 $newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
2480 $body = str_replace($tag, $newtag, $body);
2483 // Convert back the masked hashtags
2484 $body = str_replace("#", "#", $body);
2493 * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
2496 * @param int $item_id
2497 * @return boolean true if item was deleted, else false
2498 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2499 * @throws \ImagickException
2501 private static function tagDeliver($uid, $item_id)
2505 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
2506 if (!DBA::isResult($user)) {
2510 $community_page = (($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
2511 $prvgroup = (($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP) ? true : false);
2513 $item = self::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
2514 if (!DBA::isResult($item)) {
2518 $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
2521 * Diaspora uses their own hardwired link URL in @-tags
2522 * instead of the one we supply with webfinger
2524 $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
2526 $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
2528 foreach ($matches as $mtch) {
2529 if (Strings::compareLink($link, $mtch[1]) || Strings::compareLink($dlink, $mtch[1])) {
2531 Logger::log('mention found: ' . $mtch[2]);
2537 if (($community_page || $prvgroup) &&
2538 !$item['wall'] && !$item['origin'] && ($item['gravity'] == GRAVITY_PARENT)) {
2539 Logger::info('Delete private group/communiy top-level item without mention', ['id' => $item_id, 'guid'=> $item['guid']]);
2540 DBA::delete('item', ['id' => $item_id]);
2546 $arr = ['item' => $item, 'user' => $user];
2548 Hook::callAll('tagged', $arr);
2550 if (!$community_page && !$prvgroup) {
2555 * tgroup delivery - setup a second delivery chain
2556 * prevent delivery looping - only proceed
2557 * if the message originated elsewhere and is a top-level post
2559 if ($item['wall'] || $item['origin'] || ($item['id'] != $item['parent'])) {
2563 // now change this copy of the post to a forum head message and deliver to all the tgroup members
2564 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'], ['uid' => $uid, 'self' => true]);
2565 if (!DBA::isResult($self)) {
2569 $owner_id = Contact::getIdForURL($self['url']);
2571 // also reset all the privacy bits to the forum default permissions
2573 $private = ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) ? self::PRIVATE : self::PUBLIC;
2575 $psid = PermissionSet::getIdFromACL(
2583 $forum_mode = ($prvgroup ? 2 : 1);
2585 $fields = ['wall' => true, 'origin' => true, 'forum_mode' => $forum_mode, 'contact-id' => $self['id'],
2586 'owner-id' => $owner_id, 'private' => $private, 'psid' => $psid];
2587 self::update($fields, ['id' => $item_id]);
2589 self::updateThread($item_id);
2591 Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'Notifier', Delivery::POST, $item_id);
2596 public static function isRemoteSelf($contact, &$datarray)
2598 if (!$contact['remote_self']) {
2602 // Prevent the forwarding of posts that are forwarded
2603 if (!empty($datarray["extid"]) && ($datarray["extid"] == Protocol::DFRN)) {
2604 Logger::log('Already forwarded', Logger::DEBUG);
2608 // Prevent to forward already forwarded posts
2609 if ($datarray["app"] == DI::baseUrl()->getHostname()) {
2610 Logger::log('Already forwarded (second test)', Logger::DEBUG);
2614 // Only forward posts
2615 if ($datarray["verb"] != Activity::POST) {
2616 Logger::log('No post', Logger::DEBUG);
2620 if (($contact['network'] != Protocol::FEED) && ($datarray['private'] == self::PRIVATE)) {
2621 Logger::log('Not public', Logger::DEBUG);
2625 $datarray2 = $datarray;
2626 Logger::log('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), Logger::DEBUG);
2627 if ($contact['remote_self'] == 2) {
2628 $self = DBA::selectFirst('contact', ['id', 'name', 'url', 'thumb'],
2629 ['uid' => $contact['uid'], 'self' => true]);
2630 if (DBA::isResult($self)) {
2631 $datarray['contact-id'] = $self["id"];
2633 $datarray['owner-name'] = $self["name"];
2634 $datarray['owner-link'] = $self["url"];
2635 $datarray['owner-avatar'] = $self["thumb"];
2637 $datarray['author-name'] = $datarray['owner-name'];
2638 $datarray['author-link'] = $datarray['owner-link'];
2639 $datarray['author-avatar'] = $datarray['owner-avatar'];
2641 unset($datarray['edited']);
2643 unset($datarray['network']);
2644 unset($datarray['owner-id']);
2645 unset($datarray['author-id']);
2648 if ($contact['network'] != Protocol::FEED) {
2649 $datarray["guid"] = System::createUUID();
2650 unset($datarray["plink"]);
2651 $datarray["uri"] = self::newURI($contact['uid'], $datarray["guid"]);
2652 $datarray["parent-uri"] = $datarray["uri"];
2653 $datarray["thr-parent"] = $datarray["uri"];
2654 $datarray["extid"] = Protocol::DFRN;
2655 $urlpart = parse_url($datarray2['author-link']);
2656 $datarray["app"] = $urlpart["host"];
2658 $datarray['private'] = self::PUBLIC;
2662 if ($contact['network'] != Protocol::FEED) {
2663 // Store the original post
2664 $result = self::insert($datarray2);
2665 Logger::log('remote-self post original item - Contact '.$contact['url'].' return '.$result.' Item '.print_r($datarray2, true), Logger::DEBUG);
2667 $datarray["app"] = "Feed";
2671 // Trigger automatic reactions for addons
2672 $datarray['api_source'] = true;
2674 // We have to tell the hooks who we are - this really should be improved
2675 $_SESSION["authenticated"] = true;
2676 $_SESSION["uid"] = $contact['uid'];
2685 * @param array $item
2688 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2689 * @throws \ImagickException
2691 public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
2693 if (DI::config()->get('system', 'disable_embedded')) {
2697 Logger::log('check for photos', Logger::DEBUG);
2698 $site = substr(DI::baseUrl(), strpos(DI::baseUrl(), '://'));
2703 $img_start = strpos($orig_body, '[img');
2704 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2705 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2707 while (($img_st_close !== false) && ($img_len !== false)) {
2708 $img_st_close++; // make it point to AFTER the closing bracket
2709 $image = substr($orig_body, $img_start + $img_st_close, $img_len);
2711 Logger::log('found photo ' . $image, Logger::DEBUG);
2713 if (stristr($image, $site . '/photo/')) {
2714 // Only embed locally hosted photos
2716 $i = basename($image);
2717 $i = str_replace(['.jpg', '.png', '.gif'], ['', '', ''], $i);
2718 $x = strpos($i, '-');
2721 $res = substr($i, $x + 1);
2722 $i = substr($i, 0, $x);
2723 $photo = Photo::getPhotoForUser($uid, $i, $res);
2724 if (DBA::isResult($photo)) {
2726 * Check to see if we should replace this photo link with an embedded image
2727 * 1. No need to do so if the photo is public
2728 * 2. If there's a contact-id provided, see if they're in the access list
2729 * for the photo. If so, embed it.
2730 * 3. Otherwise, if we have an item, see if the item permissions match the photo
2731 * permissions, regardless of order but first check to see if they're an exact
2732 * match to save some processing overhead.
2734 if (self::hasPermissions($photo)) {
2736 $recips = self::enumeratePermissions($photo);
2737 if (in_array($cid, $recips)) {
2741 if (self::samePermissions($uid, $item, $photo)) {
2747 $photo_img = Photo::getImageForPhoto($photo);
2748 // If a custom width and height were specified, apply before embedding
2749 if (preg_match("/\[img\=([0-9]*)x([0-9]*)\]/is", substr($orig_body, $img_start, $img_st_close), $match)) {
2750 Logger::log('scaling photo', Logger::DEBUG);
2752 $width = intval($match[1]);
2753 $height = intval($match[2]);
2755 $photo_img->scaleDown(max($width, $height));
2758 $data = $photo_img->asString();
2759 $type = $photo_img->getType();
2761 Logger::log('replacing photo', Logger::DEBUG);
2762 $image = 'data:' . $type . ';base64,' . base64_encode($data);
2763 Logger::log('replaced: ' . $image, Logger::DATA);
2769 $new_body = $new_body . substr($orig_body, 0, $img_start + $img_st_close) . $image . '[/img]';
2770 $orig_body = substr($orig_body, $img_start + $img_st_close + $img_len + strlen('[/img]'));
2771 if ($orig_body === false) {
2775 $img_start = strpos($orig_body, '[img');
2776 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
2777 $img_len = ($img_start !== false ? strpos(substr($orig_body, $img_start + $img_st_close + 1), '[/img]') : false);
2780 $new_body = $new_body . $orig_body;
2785 private static function hasPermissions($obj)
2787 return !empty($obj['allow_cid']) || !empty($obj['allow_gid']) ||
2788 !empty($obj['deny_cid']) || !empty($obj['deny_gid']);
2791 private static function samePermissions($uid, $obj1, $obj2)
2793 // first part is easy. Check that these are exactly the same.
2794 if (($obj1['allow_cid'] == $obj2['allow_cid'])
2795 && ($obj1['allow_gid'] == $obj2['allow_gid'])
2796 && ($obj1['deny_cid'] == $obj2['deny_cid'])
2797 && ($obj1['deny_gid'] == $obj2['deny_gid'])) {
2801 // This is harder. Parse all the permissions and compare the resulting set.
2802 $recipients1 = self::enumeratePermissions($obj1);
2803 $recipients2 = self::enumeratePermissions($obj2);
2807 /// @TODO Comparison of arrays, maybe use array_diff_assoc() here?
2808 return ($recipients1 == $recipients2);
2812 * Returns an array of contact-ids that are allowed to see this object
2814 * @param array $obj Item array with at least uid, allow_cid, allow_gid, deny_cid and deny_gid
2815 * @param bool $check_dead Prunes unavailable contacts from the result
2817 * @throws \Exception
2819 public static function enumeratePermissions(array $obj, bool $check_dead = false)
2821 $aclFormater = DI::aclFormatter();
2823 $allow_people = $aclFormater->expand($obj['allow_cid']);
2824 $allow_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['allow_gid']), $check_dead);
2825 $deny_people = $aclFormater->expand($obj['deny_cid']);
2826 $deny_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['deny_gid']), $check_dead);
2827 $recipients = array_unique(array_merge($allow_people, $allow_groups));
2828 $deny = array_unique(array_merge($deny_people, $deny_groups));
2829 $recipients = array_diff($recipients, $deny);
2833 public static function expire($uid, $days, $network = "", $force = false)
2835 if (!$uid || ($days < 1)) {
2839 $condition = ["`uid` = ? AND NOT `deleted` AND `gravity` = ?",
2840 $uid, GRAVITY_PARENT];
2843 * $expire_network_only = save your own wall posts
2844 * and just expire conversations started by others
2846 $expire_network_only = DI::pConfig()->get($uid, 'expire', 'network_only', false);
2848 if ($expire_network_only) {
2849 $condition[0] .= " AND NOT `wall`";
2852 if ($network != "") {
2853 $condition[0] .= " AND `network` = ?";
2854 $condition[] = $network;
2857 $condition[0] .= " AND `received` < UTC_TIMESTAMP() - INTERVAL ? DAY";
2858 $condition[] = $days;
2860 $items = self::select(['file', 'resource-id', 'starred', 'type', 'id', 'post-type'], $condition);
2862 if (!DBA::isResult($items)) {
2866 $expire_items = DI::pConfig()->get($uid, 'expire', 'items', true);
2868 // Forcing expiring of items - but not notes and marked items
2870 $expire_items = true;
2873 $expire_notes = DI::pConfig()->get($uid, 'expire', 'notes', true);
2874 $expire_starred = DI::pConfig()->get($uid, 'expire', 'starred', true);
2875 $expire_photos = DI::pConfig()->get($uid, 'expire', 'photos', false);
2879 while ($item = Item::fetch($items)) {
2880 // don't expire filed items
2882 if (strpos($item['file'], '[') !== false) {
2886 // Only expire posts, not photos and photo comments
2888 if (!$expire_photos && strlen($item['resource-id'])) {
2890 } elseif (!$expire_starred && intval($item['starred'])) {
2892 } elseif (!$expire_notes && (($item['type'] == 'note') || ($item['post-type'] == Item::PT_PERSONAL_NOTE))) {
2894 } elseif (!$expire_items && ($item['type'] != 'note') && ($item['post-type'] != Item::PT_PERSONAL_NOTE)) {
2898 self::markForDeletionById($item['id'], PRIORITY_LOW);
2903 Logger::log('User ' . $uid . ": expired $expired items; expire items: $expire_items, expire notes: $expire_notes, expire starred: $expire_starred, expire photos: $expire_photos");
2906 public static function firstPostDate($uid, $wall = false)
2908 $condition = ['uid' => $uid, 'wall' => $wall, 'deleted' => false, 'visible' => true, 'moderated' => false];
2909 $params = ['order' => ['received' => false]];
2910 $thread = DBA::selectFirst('thread', ['received'], $condition, $params);
2911 if (DBA::isResult($thread)) {
2912 return substr(DateTimeFormat::local($thread['received']), 0, 10);
2918 * add/remove activity to an item
2920 * Toggle activities as like,dislike,attend of an item
2922 * @param string $item_id
2923 * @param string $verb
2924 * Activity verb. One of
2925 * like, unlike, dislike, undislike, attendyes, unattendyes,
2926 * attendno, unattendno, attendmaybe, unattendmaybe
2928 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2929 * @throws \ImagickException
2930 * @hook 'post_local_end'
2932 * 'post_id' => ID of posted item
2934 public static function performActivity($item_id, $verb)
2936 if (!Session::isAuthenticated()) {
2940 Logger::log('like: verb ' . $verb . ' item ' . $item_id);
2942 $item = self::selectFirst(self::ITEM_FIELDLIST, ['`id` = ? OR `uri` = ?', $item_id, $item_id]);
2943 if (!DBA::isResult($item)) {
2944 Logger::log('like: unknown item ' . $item_id);
2948 $item_uri = $item['uri'];
2950 $uid = $item['uid'];
2951 if (($uid == 0) && local_user()) {
2952 $uid = local_user();
2955 if (!Security::canWriteToUserWall($uid)) {
2956 Logger::log('like: unable to write on wall ' . $uid);
2960 // Retrieves the local post owner
2961 $owner_self_contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'self' => true]);
2962 if (!DBA::isResult($owner_self_contact)) {
2963 Logger::log('like: unknown owner ' . $uid);
2967 // Retrieve the current logged in user's public contact
2968 $author_id = public_contact();
2970 $author_contact = DBA::selectFirst('contact', ['url'], ['id' => $author_id]);
2971 if (!DBA::isResult($author_contact)) {
2972 Logger::log('like: unknown author ' . $author_id);
2976 // Contact-id is the uid-dependant author contact
2977 if (local_user() == $uid) {
2978 $item_contact_id = $owner_self_contact['id'];
2980 $item_contact_id = Contact::getIdForURL($author_contact['url'], $uid, true);
2981 $item_contact = DBA::selectFirst('contact', [], ['id' => $item_contact_id]);
2982 if (!DBA::isResult($item_contact)) {
2983 Logger::log('like: unknown item contact ' . $item_contact_id);
2992 $activity = Activity::LIKE;
2996 $activity = Activity::DISLIKE;
3000 $activity = Activity::ATTEND;
3004 $activity = Activity::ATTENDNO;
3007 case 'unattendmaybe':
3008 $activity = Activity::ATTENDMAYBE;
3012 $activity = Activity::FOLLOW;
3015 Logger::log('like: unknown verb ' . $verb . ' for item ' . $item_id);
3019 $mode = Strings::startsWith($verb, 'un') ? 'delete' : 'create';
3021 // Enable activity toggling instead of on/off
3022 $event_verb_flag = $activity === Activity::ATTEND || $activity === Activity::ATTENDNO || $activity === Activity::ATTENDMAYBE;
3024 // Look for an existing verb row
3025 // Event participation activities are mutually exclusive, only one of them can exist at all times.
3026 if ($event_verb_flag) {
3027 $verbs = [Activity::ATTEND, Activity::ATTENDNO, Activity::ATTENDMAYBE];
3029 // Translate to the index based activity index
3031 foreach ($verbs as $verb) {
3032 $vids[] = Verb::getID($verb);
3035 $vids = Verb::getID($activity);
3038 $condition = ['vid' => $vids, 'deleted' => false, 'gravity' => GRAVITY_ACTIVITY,
3039 'author-id' => $author_id, 'uid' => $item['uid'], 'thr-parent' => $item_uri];
3040 $like_item = self::selectFirst(['id', 'guid', 'verb'], $condition);
3042 if (DBA::isResult($like_item)) {
3044 * Truth table for existing activities
3046 * | Inputs || Outputs |
3047 * |----------------------------||-------------------|
3048 * | Mode | Event | Same verb || Delete? | Return? |
3049 * |--------|-------|-----------||---------|---------|
3050 * | create | Yes | Yes || No | Yes |
3051 * | create | Yes | No || Yes | No |
3052 * | create | No | Yes || No | Yes |
3053 * | create | No | No || N/A†|
3054 * | delete | Yes | Yes || Yes | N/A‡ |
3055 * | delete | Yes | No || No | N/A‡ |
3056 * | delete | No | Yes || Yes | N/A‡ |
3057 * | delete | No | No || N/A†|
3058 * |--------|-------|-----------||---------|---------|
3059 * | A | B | C || A xor C | !B or C |
3061 * †Can't happen: It's impossible to find an existing non-event activity without
3062 * the same verb because we are only looking for this single verb.
3064 * ‡ The "mode = delete" is returning early whether an existing activity was found or not.
3066 if ($mode == 'create' xor $like_item['verb'] == $activity) {
3067 self::markForDeletionById($like_item['id']);
3070 if (!$event_verb_flag || $like_item['verb'] == $activity) {
3075 // No need to go further if we aren't creating anything
3076 if ($mode == 'delete') {
3080 $objtype = $item['resource-id'] ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE;
3083 'guid' => System::createUUID(),
3084 'uri' => self::newURI($item['uid']),
3085 'uid' => $item['uid'],
3086 'contact-id' => $item_contact_id,
3087 'wall' => $item['wall'],
3089 'network' => Protocol::DFRN,
3090 'gravity' => GRAVITY_ACTIVITY,
3091 'parent' => $item['id'],
3092 'parent-uri' => $item['uri'],
3093 'thr-parent' => $item['uri'],
3094 'owner-id' => $author_id,
3095 'author-id' => $author_id,
3096 'body' => $activity,
3097 'verb' => $activity,
3098 'object-type' => $objtype,
3099 'allow_cid' => $item['allow_cid'],
3100 'allow_gid' => $item['allow_gid'],
3101 'deny_cid' => $item['deny_cid'],
3102 'deny_gid' => $item['deny_gid'],
3107 $signed = Diaspora::createLikeSignature($uid, $new_item);
3108 if (!empty($signed)) {
3109 $new_item['diaspora_signed_text'] = json_encode($signed);
3112 $new_item_id = self::insert($new_item);
3114 // If the parent item isn't visible then set it to visible
3115 if (!$item['visible']) {
3116 self::update(['visible' => true], ['id' => $item['id']]);
3119 $new_item['id'] = $new_item_id;
3121 Hook::callAll('post_local_end', $new_item);
3126 private static function addThread($itemid, $onlyshadow = false)
3128 $fields = ['uid', 'created', 'edited', 'commented', 'received', 'changed', 'wall', 'private', 'pubmail',
3129 'moderated', 'visible', 'starred', 'contact-id', 'post-type', 'uri-id',
3130 'deleted', 'origin', 'forum_mode', 'mention', 'network', 'author-id', 'owner-id'];
3131 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3132 $item = self::selectFirst($fields, $condition);
3134 if (!DBA::isResult($item)) {
3138 $item['iid'] = $itemid;
3141 $result = DBA::insert('thread', $item);
3143 Logger::log("Add thread for item ".$itemid." - ".print_r($result, true), Logger::DEBUG);
3147 private static function updateThread($itemid, $setmention = false)
3149 $fields = ['uid', 'guid', 'created', 'edited', 'commented', 'received', 'changed', 'post-type',
3150 'wall', 'private', 'pubmail', 'moderated', 'visible', 'starred', 'contact-id', 'uri-id',
3151 'deleted', 'origin', 'forum_mode', 'network', 'author-id', 'owner-id'];
3152 $condition = ["`id` = ? AND (`parent` = ? OR `parent` = 0)", $itemid, $itemid];
3154 $item = self::selectFirst($fields, $condition);
3155 if (!DBA::isResult($item)) {
3160 $item["mention"] = 1;
3165 foreach ($item as $field => $data) {
3166 if (!in_array($field, ["guid"])) {
3167 $fields[$field] = $data;
3171 $result = DBA::update('thread', $fields, ['iid' => $itemid]);
3173 Logger::log("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".(int)$result, Logger::DEBUG);
3176 private static function deleteThread($itemid, $itemuri = "")
3178 $item = DBA::selectFirst('thread', ['uid'], ['iid' => $itemid]);
3179 if (!DBA::isResult($item)) {
3180 Logger::log('No thread found for id '.$itemid, Logger::DEBUG);
3184 $result = DBA::delete('thread', ['iid' => $itemid], ['cascade' => false]);
3186 Logger::log("deleteThread: Deleted thread for item ".$itemid." - ".print_r($result, true), Logger::DEBUG);
3188 if ($itemuri != "") {
3189 $condition = ["`uri` = ? AND NOT `deleted` AND NOT (`uid` IN (?, 0))", $itemuri, $item["uid"]];
3190 if (!self::exists($condition)) {
3191 DBA::delete('item', ['uri' => $itemuri, 'uid' => 0]);
3192 Logger::debug('Deleted shadow item', ['id' => $itemid, 'uri' => $itemuri]);
3197 public static function getPermissionsSQLByUserId($owner_id)
3199 $local_user = local_user();
3200 $remote_user = Session::getRemoteContactID($owner_id);
3203 * Construct permissions
3205 * default permissions - anonymous user
3207 $sql = sprintf(" AND `item`.`private` != %d", self::PRIVATE);
3209 // Profile owner - everything is visible
3210 if ($local_user && ($local_user == $owner_id)) {
3212 } elseif ($remote_user) {
3214 * Authenticated visitor. Unless pre-verified,
3215 * check that the contact belongs to this $owner_id
3216 * and load the groups the visitor belongs to.
3217 * If pre-verified, the caller is expected to have already
3218 * done this and passed the groups into this function.
3220 $set = PermissionSet::get($owner_id, $remote_user);
3223 $sql_set = sprintf(" OR (`item`.`private` = %d AND `item`.`wall` AND `item`.`psid` IN (", self::PRIVATE) . implode(',', $set) . "))";
3228 $sql = sprintf(" AND (`item`.`private` != %d", self::PRIVATE) . $sql_set . ")";
3235 * get translated item type
3240 public static function postType($item)
3242 if (!empty($item['event-id'])) {
3243 return DI::l10n()->t('event');
3244 } elseif (!empty($item['resource-id'])) {
3245 return DI::l10n()->t('photo');
3246 } elseif ($item['gravity'] == GRAVITY_ACTIVITY) {
3247 return DI::l10n()->t('activity');
3248 } elseif ($item['gravity'] == GRAVITY_COMMENT) {
3249 return DI::l10n()->t('comment');
3252 return DI::l10n()->t('post');
3256 * Sets the "rendered-html" field of the provided item
3258 * Body is preserved to avoid side-effects as we modify it just-in-time for spoilers and private image links
3260 * @param array $item
3261 * @param bool $update
3263 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3264 * @todo Remove reference, simply return "rendered-html" and "rendered-hash"
3266 public static function putInCache(&$item, $update = false)
3268 $body = $item["body"];
3270 $rendered_hash = $item['rendered-hash'] ?? '';
3271 $rendered_html = $item['rendered-html'] ?? '';
3273 if ($rendered_hash == ''
3274 || $rendered_html == ""
3275 || $rendered_hash != hash("md5", $item["body"])
3276 || DI::config()->get("system", "ignore_cache")
3278 self::addRedirToImageTags($item);
3280 $item["rendered-html"] = BBCode::convert($item["body"]);
3281 $item["rendered-hash"] = hash("md5", $item["body"]);
3283 $hook_data = ['item' => $item, 'rendered-html' => $item['rendered-html'], 'rendered-hash' => $item['rendered-hash']];
3284 Hook::callAll('put_item_in_cache', $hook_data);
3285 $item['rendered-html'] = $hook_data['rendered-html'];
3286 $item['rendered-hash'] = $hook_data['rendered-hash'];
3289 // Force an update if the generated values differ from the existing ones
3290 if ($rendered_hash != $item["rendered-hash"]) {
3294 // Only compare the HTML when we forcefully ignore the cache
3295 if (DI::config()->get("system", "ignore_cache") && ($rendered_html != $item["rendered-html"])) {
3299 if ($update && !empty($item["id"])) {
3302 'rendered-html' => $item["rendered-html"],
3303 'rendered-hash' => $item["rendered-hash"]
3305 ['id' => $item["id"]]
3310 $item["body"] = $body;
3314 * Find any non-embedded images in private items and add redir links to them
3316 * @param array &$item The field array of an item row
3318 private static function addRedirToImageTags(array &$item)
3323 $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
3325 foreach ($matches as $mtch) {
3326 if (strpos($mtch[1], '/redir') !== false) {
3330 if ((local_user() == $item['uid']) && ($item['private'] == self::PRIVATE) && ($item['contact-id'] != $app->contact['id']) && ($item['network'] == Protocol::DFRN)) {
3331 $img_url = 'redir/' . $item['contact-id'] . '?url=' . urlencode($mtch[1]);
3332 $item['body'] = str_replace($mtch[0], '[img]' . $img_url . '[/img]', $item['body']);
3339 * Given an item array, convert the body element from bbcode to html and add smilie icons.
3340 * If attach is true, also add icons for item attachments.
3342 * @param array $item
3343 * @param boolean $attach
3344 * @param boolean $is_preview
3345 * @return string item body html
3346 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
3347 * @throws \ImagickException
3348 * @hook prepare_body_init item array before any work
3349 * @hook prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
3350 * @hook prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
3351 * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
3353 public static function prepareBody(array &$item, $attach = false, $is_preview = false)
3356 Hook::callAll('prepare_body_init', $item);
3358 // In order to provide theme developers more possibilities, event items
3359 // are treated differently.
3360 if ($item['object-type'] === Activity\ObjectType::EVENT && isset($item['event-id'])) {
3361 $ev = Event::getItemHTML($item);
3365 $tags = Tag::populateFromItem($item);
3367 $item['tags'] = $tags['tags'];
3368 $item['hashtags'] = $tags['hashtags'];
3369 $item['mentions'] = $tags['mentions'];
3371 // Compile eventual content filter reasons
3372 $filter_reasons = [];
3373 if (!$is_preview && public_contact() != $item['author-id']) {
3374 if (!empty($item['content-warning']) && (!local_user() || !DI::pConfig()->get(local_user(), 'system', 'disable_cw', false))) {
3375 $filter_reasons[] = DI::l10n()->t('Content warning: %s', $item['content-warning']);
3380 'filter_reasons' => $filter_reasons
3382 Hook::callAll('prepare_body_content_filter', $hook_data);
3383 $filter_reasons = $hook_data['filter_reasons'];
3387 // Update the cached values if there is no "zrl=..." on the links.
3388 $update = (!Session::isAuthenticated() && ($item["uid"] == 0));
3390 // Or update it if the current viewer is the intented viewer.
3391 if (($item["uid"] == local_user()) && ($item["uid"] != 0)) {
3395 self::putInCache($item, $update);
3396 $s = $item["rendered-html"];
3401 'preview' => $is_preview,
3402 'filter_reasons' => $filter_reasons
3404 Hook::callAll('prepare_body', $hook_data);
3405 $s = $hook_data['html'];
3409 // Replace the blockquotes with quotes that are used in mails.
3410 $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
3411 $s = str_replace(['<blockquote>', '<blockquote class="spoiler">', '<blockquote class="author">'], [$mailquote, $mailquote, $mailquote], $s);
3418 preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\"(?: title=\"(.*?)\")?|', $item['attach'], $matches, PREG_SET_ORDER);
3419 foreach ($matches as $mtch) {
3422 $the_url = Contact::magicLinkById($item['author-id'], $mtch[1]);
3424 if (strpos($mime, 'video') !== false) {
3427 DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('videos_head.tpl'));
3430 $url_parts = explode('/', $the_url);
3431 $id = end($url_parts);
3432 $as .= Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [
3435 'title' => DI::l10n()->t('View Video'),
3442 $filetype = strtolower(substr($mime, 0, strpos($mime, '/')));
3444 $filesubtype = strtolower(substr($mime, strpos($mime, '/') + 1));
3445 $filesubtype = str_replace('.', '-', $filesubtype);
3448 $filesubtype = 'unkn';
3451 $title = Strings::escapeHtml(trim(($mtch[4] ?? '') ?: $mtch[1]));
3452 $title .= ' ' . $mtch[2] . ' ' . DI::l10n()->t('bytes');
3454 $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
3455 $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" rel="noopener noreferrer" >' . $icon . '</a>';
3459 $s .= '<div class="body-attach">'.$as.'<div class="clear"></div></div>';
3463 if (strpos($s, '<div class="map">') !== false && !empty($item['coord'])) {
3464 $x = Map::byCoordinates(trim($item['coord']));
3466 $s = preg_replace('/\<div class\=\"map\"\>/', '$0' . $x, $s);
3470 // Replace friendica image url size with theme preference.
3471 if (!empty($a->theme_info['item_image_size'])) {
3472 $ps = $a->theme_info['item_image_size'];
3473 $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
3476 $s = HTML::applyContentFilter($s, $filter_reasons);
3478 $hook_data = ['item' => $item, 'html' => $s];
3479 Hook::callAll('prepare_body_final', $hook_data);
3481 return $hook_data['html'];
3485 * get private link for item
3487 * @param array $item
3488 * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
3489 * @throws \Exception
3491 public static function getPlink($item)
3495 'href' => "display/" . $item['guid'],
3496 'orig' => "display/" . $item['guid'],
3497 'title' => DI::l10n()->t('View on separate page'),
3498 'orig_title' => DI::l10n()->t('view on separate page'),
3501 if (!empty($item['plink'])) {
3502 $ret["href"] = DI::baseUrl()->remove($item['plink']);
3503 $ret["title"] = DI::l10n()->t('link to source');
3505 } elseif (!empty($item['plink']) && ($item['private'] != self::PRIVATE)) {
3507 'href' => $item['plink'],
3508 'orig' => $item['plink'],
3509 'title' => DI::l10n()->t('link to source'),
3519 * Is the given item array a post that is sent as starting post to a forum?
3521 * @param array $item
3522 * @param array $owner
3524 * @return boolean "true" when it is a forum post
3526 public static function isForumPost(array $item, array $owner = [])
3528 if (empty($owner)) {
3529 $owner = User::getOwnerDataById($item['uid']);
3530 if (empty($owner)) {
3535 if (($item['author-id'] == $item['owner-id']) ||
3536 ($owner['id'] == $item['contact-id']) ||
3537 ($item['uri'] != $item['parent-uri']) ||
3542 return Contact::isForum($item['contact-id']);
3546 * Search item id for given URI or plink
3548 * @param string $uri
3549 * @param integer $uid
3551 * @return integer item id
3553 public static function searchByLink($uri, $uid = 0)
3555 $ssl_uri = str_replace('http://', 'https://', $uri);
3556 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3558 $item = DBA::selectFirst('item', ['id'], ['uri' => $uris, 'uid' => $uid]);
3559 if (DBA::isResult($item)) {
3563 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3564 if (!DBA::isResult($itemcontent)) {
3568 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3569 if (!DBA::isResult($itemuri)) {
3573 $item = DBA::selectFirst('item', ['id'], ['uri' => $itemuri['uri'], 'uid' => $uid]);
3574 if (DBA::isResult($item)) {
3582 * Return the URI for a link to the post
3584 * @param string $uri URI or link to post
3586 * @return string URI
3588 public static function getURIByLink(string $uri)
3590 $ssl_uri = str_replace('http://', 'https://', $uri);
3591 $uris = [$uri, $ssl_uri, Strings::normaliseLink($uri)];
3593 $item = DBA::selectFirst('item', ['uri'], ['uri' => $uris]);
3594 if (DBA::isResult($item)) {
3595 return $item['uri'];
3598 $itemcontent = DBA::selectFirst('item-content', ['uri-id'], ['plink' => $uris]);
3599 if (!DBA::isResult($itemcontent)) {
3603 $itemuri = DBA::selectFirst('item-uri', ['uri'], ['id' => $itemcontent['uri-id']]);
3604 if (DBA::isResult($itemuri)) {
3605 return $itemuri['uri'];
3612 * Fetches item for given URI or plink
3614 * @param string $uri
3615 * @param integer $uid
3617 * @return integer item id
3619 public static function fetchByLink($uri, $uid = 0)
3621 $item_id = self::searchByLink($uri, $uid);
3622 if (!empty($item_id)) {
3626 if ($fetched_uri = ActivityPub\Processor::fetchMissingActivity($uri)) {
3627 $item_id = self::searchByLink($fetched_uri, $uid);
3629 $item_id = Diaspora::fetchByURL($uri);
3632 if (!empty($item_id)) {
3640 * Return share data from an item array (if the item is shared item)
3641 * We are providing the complete Item array, because at some time in the future
3642 * we hopefully will define these values not in the body anymore but in some item fields.
3643 * This function is meant to replace all similar functions in the system.
3645 * @param array $item
3647 * @return array with share information
3649 public static function getShareArray($item)
3651 if (!preg_match("/(.*?)\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", $item['body'], $matches)) {
3655 $attribute_string = $matches[2];
3656 $attributes = ['comment' => trim($matches[1]), 'shared' => trim($matches[3])];
3657 foreach (['author', 'profile', 'avatar', 'guid', 'posted', 'link'] as $field) {
3658 if (preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches)) {
3659 $attributes[$field] = trim(html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8'));
3666 * Fetch item information for shared items from the original items and adds it.
3668 * @param array $item
3670 * @return array item array with data from the original item
3672 public static function addShareDataFromOriginal($item)
3674 $shared = self::getShareArray($item);
3675 if (empty($shared)) {
3679 // Real reshares always have got a GUID.
3680 if (empty($shared['guid'])) {
3684 $uid = $item['uid'] ?? 0;
3686 // first try to fetch the item via the GUID. This will work for all reshares that had been created on this system
3687 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['guid' => $shared['guid'], 'uid' => [0, $uid]]);
3688 if (!DBA::isResult($shared_item)) {
3689 if (empty($shared['link'])) {
3693 // Otherwhise try to find (and possibly fetch) the item via the link. This should work for Diaspora and ActivityPub posts
3694 $id = self::fetchByLink($shared['link'], $uid);
3696 Logger::info('Original item not found', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3700 $shared_item = self::selectFirst(['title', 'body', 'attach'], ['id' => $id]);
3701 if (!DBA::isResult($shared_item)) {
3704 Logger::info('Got shared data from url', ['url' => $shared['link'], 'callstack' => System::callstack()]);
3706 Logger::info('Got shared data from guid', ['guid' => $shared['guid'], 'callstack' => System::callstack()]);
3709 if (!empty($shared_item['title'])) {
3710 $body = '[h3]' . $shared_item['title'] . "[/h3]\n" . $shared_item['body'];
3711 unset($shared_item['title']);
3713 $body = $shared_item['body'];
3716 $item['body'] = preg_replace("/\[share ([^\[\]]*)\].*\[\/share\]/ism", '[share $1]' . $body . '[/share]', $item['body']);
3717 unset($shared_item['body']);
3719 return array_merge($item, $shared_item);