]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Item.php
Move L10n::t() calls to DI::l10n()->t() calls
[friendica.git] / src / Model / Item.php
index 0b6c1c8bf22620c4c972185ff1d26548ddd07015..050e79de50eed567a5e496f508710dbe851fa4c2 100644 (file)
@@ -6,26 +6,23 @@
 
 namespace Friendica\Model;
 
-use Friendica\BaseObject;
 use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\HTML;
 use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\L10n;
-use Friendica\Core\Lock;
 use Friendica\Core\Logger;
-use Friendica\Core\PConfig;
 use Friendica\Core\Protocol;
 use Friendica\Core\Renderer;
 use Friendica\Core\Session;
 use Friendica\Core\System;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
+use Friendica\DI;
 use Friendica\Protocol\Activity;
 use Friendica\Protocol\ActivityPub;
 use Friendica\Protocol\Diaspora;
 use Friendica\Protocol\OStatus;
-use Friendica\Util\ACLFormatter;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Map;
 use Friendica\Util\Network;
@@ -35,7 +32,7 @@ use Friendica\Util\XML;
 use Friendica\Worker\Delivery;
 use Text_LanguageDetect;
 
-class Item extends BaseObject
+class Item
 {
        // Posting types, inspired by https://www.w3.org/TR/activitystreams-vocabulary/#object-types
        const PT_ARTICLE = 0;
@@ -144,7 +141,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Select pinned rows from the item table for a given user
+        * Select pinned rows from the item table for a given user
         *
         * @param integer $uid       User ID
         * @param array   $selected  Array of selected fields, empty for all
@@ -189,7 +186,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief returns an activity index from an activity string
+        * returns an activity index from an activity string
         *
         * @param string $activity activity string
         * @return integer Activity index
@@ -206,7 +203,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief returns an activity string from an activity index
+        * returns an activity string from an activity index
         *
         * @param integer $index activity index
         * @return string Activity string
@@ -221,7 +218,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Fetch a single item row
+        * Fetch a single item row
         *
         * @param mixed $stmt statement object
         * @return array current row
@@ -333,7 +330,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Fills an array with data from an item query
+        * Fills an array with data from an item query
         *
         * @param object $stmt statement object
         * @param bool   $do_close
@@ -355,7 +352,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Check if item data exists
+        * Check if item data exists
         *
         * @param array $condition array of fields for condition
         *
@@ -379,7 +376,6 @@ class Item extends BaseObject
        /**
         * Retrieve a single record from the item table for a given user and returns it in an associative array
         *
-        * @brief Retrieve a single record from a table
         * @param integer $uid User ID
         * @param array   $selected
         * @param array   $condition
@@ -400,7 +396,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Select rows from the item table for a given user
+        * Select rows from the item table for a given user
         *
         * @param integer $uid       User ID
         * @param array   $selected  Array of selected fields, empty for all
@@ -424,7 +420,6 @@ class Item extends BaseObject
        /**
         * Retrieve a single record from the item table and returns it in an associative array
         *
-        * @brief Retrieve a single record from a table
         * @param array $fields
         * @param array $condition
         * @param array $params
@@ -448,7 +443,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Select rows from the item table and returns them as an array
+        * Select rows from the item table and returns them as an array
         *
         * @param array $selected  Array of selected fields, empty for all
         * @param array $condition Array of fields for condition
@@ -475,7 +470,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Select rows from the item table
+        * Select rows from the item table
         *
         * @param array $selected  Array of selected fields, empty for all
         * @param array $condition Array of fields for condition
@@ -516,7 +511,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Select rows from the starting post in the item table
+        * Select rows from the starting post in the item table
         *
         * @param integer $uid       User ID
         * @param array   $selected
@@ -540,7 +535,6 @@ class Item extends BaseObject
        /**
         * Retrieve a single record from the starting post in the item table and returns it in an associative array
         *
-        * @brief Retrieve a single record from a table
         * @param integer $uid User ID
         * @param array   $selected
         * @param array   $condition
@@ -563,7 +557,6 @@ class Item extends BaseObject
        /**
         * Retrieve a single record from the starting post in the item table and returns it in an associative array
         *
-        * @brief Retrieve a single record from a table
         * @param array $fields
         * @param array $condition
         * @param array $params
@@ -586,7 +579,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Select rows from the starting post in the item table
+        * Select rows from the starting post in the item table
         *
         * @param array $selected  Array of selected fields, empty for all
         * @param array $condition Array of fields for condition
@@ -637,7 +630,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Returns a list of fields that are associated with the item table
+        * Returns a list of fields that are associated with the item table
         *
         * @param $usermode
         * @return array field list
@@ -657,7 +650,7 @@ class Item extends BaseObject
                        'iaid' => 'internal-iaid'];
 
                if ($usermode) {
-                       $fields['user-item'] = ['pinned', 'ignored' => 'internal-user-ignored'];
+                       $fields['user-item'] = ['pinned', 'notification-type', 'ignored' => 'internal-user-ignored'];
                }
 
                $fields['item-activity'] = ['activity', 'activity' => 'internal-activity'];
@@ -697,7 +690,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Returns SQL condition for the "select" functions
+        * Returns SQL condition for the "select" functions
         *
         * @param boolean $thread_mode Called for the items (false) or for the threads (true)
         *
@@ -720,7 +713,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Returns all needed "JOIN" commands for the "select" functions
+        * Returns all needed "JOIN" commands for the "select" functions
         *
         * @param integer $uid          User ID
         * @param string  $sql_commands The parts of the built SQL commands in the "select" functions
@@ -812,7 +805,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Add the field list for the "select" functions
+        * Add the field list for the "select" functions
         *
         * @param array $fields The field definition array
         * @param array $selected The array with the selected fields from the "select" functions
@@ -861,7 +854,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief add table definition to fields in an SQL query
+        * add table definition to fields in an SQL query
         *
         * @param string $query SQL query
         * @param array $fields The field definition array
@@ -887,7 +880,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Update existing item entries
+        * Update existing item entries
         *
         * @param array $fields    The fields that are to be changed
         * @param array $condition The condition for finding the item entries
@@ -1050,7 +1043,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Delete an item and notify others about it - if it was ours
+        * Delete an item and notify others about it - if it was ours
         *
         * @param array   $condition The condition for finding the item entries
         * @param integer $priority  Priority for the notification
@@ -1066,7 +1059,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Delete an item for an user and notify others about it - if it was ours
+        * Delete an item for an user and notify others about it - if it was ours
         *
         * @param array   $condition The condition for finding the item entries
         * @param integer $uid       User who wants to delete this item
@@ -1083,6 +1076,9 @@ class Item extends BaseObject
                        // "Deleting" global items just means hiding them
                        if ($item['uid'] == 0) {
                                DBA::update('user-item', ['hidden' => true], ['iid' => $item['id'], 'uid' => $uid], true);
+
+                               // Delete notifications
+                               DBA::delete('notify', ['iid' => $item['id'], 'uid' => $uid]);
                        } elseif ($item['uid'] == $uid) {
                                self::deleteById($item['id'], PRIORITY_HIGH);
                        } else {
@@ -1093,7 +1089,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Delete an item and notify others about it - if it was ours
+        * Delete an item and notify others about it - if it was ours
         *
         * @param integer $item_id  Item ID that should be delete
         * @param integer $priority Priority for the notification
@@ -1173,6 +1169,9 @@ class Item extends BaseObject
                // Delete tags that had been attached to other items
                self::deleteTagsFromItem($item);
 
+               // Delete notifications
+               DBA::delete('notify', ['iid' => $item['id'], 'uid' => $item['uid']]);
+
                // Set the item to "deleted"
                $item_fields = ['deleted' => true, 'edited' => DateTimeFormat::utcNow(), 'changed' => DateTimeFormat::utcNow()];
                DBA::update('item', $item_fields, ['id' => $item['id']]);
@@ -1274,7 +1273,7 @@ class Item extends BaseObject
                if ($notify) {
                        // We have to avoid duplicates. So we create the GUID in form of a hash of the plink or uri.
                        // We add the hash of our own host because our host is the original creator of the post.
-                       $prefix_host = \get_app()->getHostName();
+                       $prefix_host = DI::baseUrl()->getHostname();
                } else {
                        $prefix_host = '';
 
@@ -1435,8 +1434,7 @@ class Item extends BaseObject
                        $item['parent-uri'] = $item['thr-parent'];
                }
 
-               /** @var Activity $activity */
-               $activity = self::getClass(Activity::class);
+               $activity = DI::activity();
 
                if (isset($item['gravity'])) {
                        $item['gravity'] = intval($item['gravity']);
@@ -1560,7 +1558,7 @@ class Item extends BaseObject
                        $item['edited'] = DateTimeFormat::utcNow();
                }
 
-               $item['plink'] = ($item['plink'] ?? '') ?: System::baseUrl() . '/display/' . urlencode($item['guid']);
+               $item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
 
                $default = ['url' => $item['author-link'], 'name' => $item['author-name'],
                        'photo' => $item['author-avatar'], 'network' => $item['network']];
@@ -2022,6 +2020,8 @@ class Item extends BaseObject
 
                self::updateContact($item);
 
+               UserItem::setNotification($current_post);
+
                check_user_notification($current_post);
 
                if ($notify || ($item['visible'] && ((!empty($parent) && $parent['origin']) || $item['origin']))) {
@@ -2032,7 +2032,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Insert a new item content entry
+        * Insert a new item content entry
         *
         * @param array $item The item fields that are to be inserted
         * @return bool
@@ -2054,7 +2054,7 @@ class Item extends BaseObject
                }
 
                // To avoid timing problems, we are using locks.
-               $locked = Lock::acquire('item_insert_activity');
+               $locked = DI::lock()->acquire('item_insert_activity');
                if (!$locked) {
                        Logger::log("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway.");
                }
@@ -2070,17 +2070,17 @@ class Item extends BaseObject
                } else {
                        // This shouldn't happen.
                        Logger::log('Could not insert activity for URI ' . $item['uri'] . ' - should not happen');
-                       Lock::release('item_insert_activity');
+                       DI::lock()->release('item_insert_activity');
                        return false;
                }
                if ($locked) {
-                       Lock::release('item_insert_activity');
+                       DI::lock()->release('item_insert_activity');
                }
                return true;
        }
 
        /**
-        * @brief Insert a new item content entry
+        * Insert a new item content entry
         *
         * @param array $item The item fields that are to be inserted
         * @throws \Exception
@@ -2097,7 +2097,7 @@ class Item extends BaseObject
                }
 
                // To avoid timing problems, we are using locks.
-               $locked = Lock::acquire('item_insert_content');
+               $locked = DI::lock()->acquire('item_insert_content');
                if (!$locked) {
                        Logger::log("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway.");
                }
@@ -2115,12 +2115,12 @@ class Item extends BaseObject
                        Logger::log('Could not insert content for URI ' . $item['uri'] . ' - should not happen');
                }
                if ($locked) {
-                       Lock::release('item_insert_content');
+                       DI::lock()->release('item_insert_content');
                }
        }
 
        /**
-        * @brief Update existing item content entries
+        * Update existing item content entries
         *
         * @param array $item      The item fields that are to be changed
         * @param array $condition The condition for finding the item content entries
@@ -2148,7 +2148,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Update existing item content entries
+        * Update existing item content entries
         *
         * @param array $item      The item fields that are to be changed
         * @param array $condition The condition for finding the item content entries
@@ -2176,7 +2176,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Distributes public items to the receivers
+        * Distributes public items to the receivers
         *
         * @param integer $itemid      Item ID that should be added
         * @param string  $signed_text Original text (for Diaspora signatures), JSON encoded.
@@ -2272,7 +2272,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Store public items for the receivers
+        * Store public items for the receivers
         *
         * @param integer $itemid Item ID that should be added
         * @param array   $item   The item entry that will be stored
@@ -2318,7 +2318,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Add a shadow entry for a given item id that is a thread starter
+        * Add a shadow entry for a given item id that is a thread starter
         *
         * We store every public item entry additionally with the user id "0".
         * This is used for the community page and for the search.
@@ -2382,7 +2382,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Add a shadow entry for a given item id that is a comment
+        * Add a shadow entry for a given item id that is a comment
         *
         * This function does the same like the function above - but for comments
         *
@@ -2465,7 +2465,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Creates an unique guid out of a given uri
+        * Creates an unique guid out of a given uri
         *
         * @param string $uri uri of an item entry
         * @param string $host hostname for the GUID prefix
@@ -2507,11 +2507,11 @@ class Item extends BaseObject
                        $guid = System::createUUID();
                }
 
-               return self::getApp()->getBaseURL() . '/objects/' . $guid;
+               return DI::baseUrl()->get() . '/objects/' . $guid;
        }
 
        /**
-        * @brief Set "success_update" and "last-item" to the date of the last time we heard from this contact
+        * Set "success_update" and "last-item" to the date of the last time we heard from this contact
         *
         * This can be used to filter for inactive contacts.
         * Only do this for public postings to avoid privacy problems, since poco data is public.
@@ -2588,10 +2588,10 @@ class Item extends BaseObject
                // All hashtags should point to the home server if "local_tags" is activated
                if (Config::get('system', 'local_tags')) {
                        $item["body"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
-                                       "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
+                                       "#[url=".DI::baseUrl()."/search?tag=$2]$2[/url]", $item["body"]);
 
                        $item["tag"] = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
-                                       "#[url=".System::baseUrl()."/search?tag=$2]$2[/url]", $item["tag"]);
+                                       "#[url=".DI::baseUrl()."/search?tag=$2]$2[/url]", $item["tag"]);
                }
 
                // mask hashtags inside of url, bookmarks and attachments to avoid urls in urls
@@ -2615,12 +2615,12 @@ class Item extends BaseObject
                                "#$2", $item["body"]);
 
                foreach ($tags as $tag) {
-                       if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || $tag[1] == '#') {
+                       if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || strlen($tag) < 2 || $tag[1] == '#') {
                                continue;
                        }
 
                        $basetag = str_replace('_',' ',substr($tag,1));
-                       $newtag = '#[url=' . System::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
+                       $newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
 
                        $item["body"] = str_replace($tag, $newtag, $item["body"]);
 
@@ -2672,13 +2672,13 @@ class Item extends BaseObject
                        return false;
                }
 
-               $link = Strings::normaliseLink(System::baseUrl() . '/profile/' . $user['nickname']);
+               $link = Strings::normaliseLink(DI::baseUrl() . '/profile/' . $user['nickname']);
 
                /*
                 * Diaspora uses their own hardwired link URL in @-tags
                 * instead of the one we supply with webfinger
                 */
-               $dlink = Strings::normaliseLink(System::baseUrl() . '/u/' . $user['nickname']);
+               $dlink = Strings::normaliseLink(DI::baseUrl() . '/u/' . $user['nickname']);
 
                $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
                if ($cnt) {
@@ -2748,8 +2748,6 @@ class Item extends BaseObject
 
        public static function isRemoteSelf($contact, &$datarray)
        {
-               $a = \get_app();
-
                if (!$contact['remote_self']) {
                        return false;
                }
@@ -2761,7 +2759,7 @@ class Item extends BaseObject
                }
 
                // Prevent to forward already forwarded posts
-               if ($datarray["app"] == $a->getHostName()) {
+               if ($datarray["app"] == DI::baseUrl()->getHostname()) {
                        Logger::log('Already forwarded (second test)', Logger::DEBUG);
                        return false;
                }
@@ -2850,7 +2848,7 @@ class Item extends BaseObject
                }
 
                Logger::log('check for photos', Logger::DEBUG);
-               $site = substr(System::baseUrl(), strpos(System::baseUrl(), '://'));
+               $site = substr(DI::baseUrl(), strpos(DI::baseUrl(), '://'));
 
                $orig_body = $s;
                $new_body = '';
@@ -2973,8 +2971,7 @@ class Item extends BaseObject
         */
        public static function enumeratePermissions(array $obj, bool $check_dead = false)
        {
-               /** @var ACLFormatter $aclFormater */
-               $aclFormater = self::getClass(ACLFormatter::class);
+               $aclFormater = DI::aclFormatter();
 
                $allow_people = $aclFormater->expand($obj['allow_cid']);
                $allow_groups = Group::expand($obj['uid'], $aclFormater->expand($obj['allow_gid']), $check_dead);
@@ -3023,7 +3020,7 @@ class Item extends BaseObject
                 * $expire_network_only = save your own wall posts
                 * and just expire conversations started by others
                 */
-               $expire_network_only = PConfig::get($uid, 'expire', 'network_only', false);
+               $expire_network_only = DI::pConfig()->get($uid, 'expire', 'network_only', false);
 
                if ($expire_network_only) {
                        $condition[0] .= " AND NOT `wall`";
@@ -3043,16 +3040,16 @@ class Item extends BaseObject
                        return;
                }
 
-               $expire_items = PConfig::get($uid, 'expire', 'items', true);
+               $expire_items = DI::pConfig()->get($uid, 'expire', 'items', true);
 
                // Forcing expiring of items - but not notes and marked items
                if ($force) {
                        $expire_items = true;
                }
 
-               $expire_notes = PConfig::get($uid, 'expire', 'notes', true);
-               $expire_starred = PConfig::get($uid, 'expire', 'starred', true);
-               $expire_photos = PConfig::get($uid, 'expire', 'photos', false);
+               $expire_notes = DI::pConfig()->get($uid, 'expire', 'notes', true);
+               $expire_starred = DI::pConfig()->get($uid, 'expire', 'starred', true);
+               $expire_photos = DI::pConfig()->get($uid, 'expire', 'photos', false);
 
                $expired = 0;
 
@@ -3095,7 +3092,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief add/remove activity to an item
+        * add/remove activity to an item
         *
         * Toggle activities as like,dislike,attend of an item
         *
@@ -3391,16 +3388,16 @@ class Item extends BaseObject
        public static function postType($item)
        {
                if (!empty($item['event-id'])) {
-                       return L10n::t('event');
+                       return DI::l10n()->t('event');
                } elseif (!empty($item['resource-id'])) {
-                       return L10n::t('photo');
+                       return DI::l10n()->t('photo');
                } elseif (!empty($item['verb']) && $item['verb'] !== Activity::POST) {
-                       return L10n::t('activity');
+                       return DI::l10n()->t('activity');
                } elseif ($item['id'] != $item['parent']) {
-                       return L10n::t('comment');
+                       return DI::l10n()->t('comment');
                }
 
-               return L10n::t('post');
+               return DI::l10n()->t('post');
        }
 
        /**
@@ -3462,13 +3459,13 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Find any non-embedded images in private items and add redir links to them
+        * Find any non-embedded images in private items and add redir links to them
         *
         * @param array &$item The field array of an item row
         */
        private static function addRedirToImageTags(array &$item)
        {
-               $app = self::getApp();
+               $app = DI::app();
 
                $matches = [];
                $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
@@ -3487,7 +3484,7 @@ class Item extends BaseObject
        }
 
        /**
-        * @brief Given an item array, convert the body element from bbcode to html and add smilie icons.
+        * Given an item array, convert the body element from bbcode to html and add smilie icons.
         * If attach is true, also add icons for item attachments.
         *
         * @param array   $item
@@ -3503,7 +3500,7 @@ class Item extends BaseObject
         */
        public static function prepareBody(array &$item, $attach = false, $is_preview = false)
        {
-               $a = self::getApp();
+               $a = DI::app();
                Hook::callAll('prepare_body_init', $item);
 
                // In order to provide theme developers more possibilities, event items
@@ -3522,8 +3519,8 @@ class Item extends BaseObject
                // Compile eventual content filter reasons
                $filter_reasons = [];
                if (!$is_preview && public_contact() != $item['author-id']) {
-                       if (!empty($item['content-warning']) && (!local_user() || !PConfig::get(local_user(), 'system', 'disable_cw', false))) {
-                               $filter_reasons[] = L10n::t('Content warning: %s', $item['content-warning']);
+                       if (!empty($item['content-warning']) && (!local_user() || !DI::pConfig()->get(local_user(), 'system', 'disable_cw', false))) {
+                               $filter_reasons[] = DI::l10n()->t('Content warning: %s', $item['content-warning']);
                        }
 
                        $hook_data = [
@@ -3575,7 +3572,7 @@ class Item extends BaseObject
                        if (strpos($mime, 'video') !== false) {
                                if (!$vhead) {
                                        $vhead = true;
-                                       $a->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('videos_head.tpl'));
+                                       DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('videos_head.tpl'));
                                }
 
                                $url_parts = explode('/', $the_url);
@@ -3583,7 +3580,7 @@ class Item extends BaseObject
                                $as .= Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [
                                        '$video' => [
                                                'id'     => $id,
-                                               'title'  => L10n::t('View Video'),
+                                               'title'  => DI::l10n()->t('View Video'),
                                                'src'    => $the_url,
                                                'mime'   => $mime,
                                        ],
@@ -3600,7 +3597,7 @@ class Item extends BaseObject
                        }
 
                        $title = Strings::escapeHtml(trim(($mtch[4] ?? '') ?: $mtch[1]));
-                       $title .= ' ' . $mtch[2] . ' ' . L10n::t('bytes');
+                       $title .= ' ' . $mtch[2] . ' ' . DI::l10n()->t('bytes');
 
                        $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
                        $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" >' . $icon . '</a>';
@@ -3641,26 +3638,26 @@ class Item extends BaseObject
         */
        public static function getPlink($item)
        {
-               $a = self::getApp();
+               $a = DI::app();
 
                if ($a->user['nickname'] != "") {
                        $ret = [
                                'href' => "display/" . $item['guid'],
                                'orig' => "display/" . $item['guid'],
-                               'title' => L10n::t('View on separate page'),
-                               'orig_title' => L10n::t('view on separate page'),
+                               'title' => DI::l10n()->t('View on separate page'),
+                               'orig_title' => DI::l10n()->t('view on separate page'),
                        ];
 
                        if (!empty($item['plink'])) {
-                               $ret["href"] = $a->removeBaseURL($item['plink']);
-                               $ret["title"] = L10n::t('link to source');
+                               $ret["href"] = DI::baseUrl()->remove($item['plink']);
+                               $ret["title"] = DI::l10n()->t('link to source');
                        }
 
                } elseif (!empty($item['plink']) && ($item['private'] != 1)) {
                        $ret = [
                                'href' => $item['plink'],
                                'orig' => $item['plink'],
-                               'title' => L10n::t('link to source'),
+                               'title' => DI::l10n()->t('link to source'),
                        ];
                } else {
                        $ret = [];
@@ -3759,4 +3756,83 @@ class Item extends BaseObject
 
                return 0;
        }
+
+       /**
+        * Return share data from an item array (if the item is shared item)
+        * We are providing the complete Item array, because at some time in the future
+        * we hopefully will define these values not in the body anymore but in some item fields.
+        * This function is meant to replace all similar functions in the system.
+        *
+        * @param array $item
+        *
+        * @return array with share information
+        */
+       public static function getShareArray($item)
+       {
+               if (!preg_match("/(.*?)\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", $item['body'], $matches)) {
+                       return [];
+               }
+
+               $attribute_string = $matches[2];
+               $attributes = ['comment' => trim($matches[1]), 'shared' => trim($matches[3])];
+               foreach (['author', 'profile', 'avatar', 'guid', 'posted', 'link'] as $field) {
+                       if (preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches)) {
+                               $attributes[$field] = trim(html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8'));
+                       }
+               }
+               return $attributes;
+       }
+
+       /**
+        * Fetch item information for shared items from the original items and adds it.
+        *
+        * @param array $item
+        *
+        * @return array item array with data from the original item
+        */
+       public static function addShareDataFromOriginal($item)
+       {
+               $shared = self::getShareArray($item);
+               if (empty($shared)) {
+                       return $item;
+               }
+
+               // Real reshares always have got a GUID.
+               if (empty($shared['guid'])) {
+                       return $item;
+               }
+
+               $uid = $item['uid'] ?? 0;
+
+               // first try to fetch the item via the GUID. This will work for all reshares that had been created on this system
+               $shared_item = self::selectFirst(['title', 'body', 'attach'], ['guid' => $shared['guid'], 'uid' => [0, $uid]]);
+               if (!DBA::isResult($shared_item)) {
+                       // Otherwhise try to find (and possibly fetch) the item via the link. This should work for Diaspora and ActivityPub posts
+                       $id = self::fetchByLink($shared['link'], $uid);
+                       if (empty($id)) {
+                               Logger::info('Original item not found', ['url' => $shared['link'], 'callstack' => System::callstack()]);
+                               return $item;
+                       }
+
+                       $shared_item = self::selectFirst(['title', 'body', 'attach'], ['id' => $id]);
+                       if (!DBA::isResult($shared_item)) {
+                               return $item;
+                       }
+                       Logger::info('Got shared data from url', ['url' => $shared['link'], 'callstack' => System::callstack()]);
+               } else {
+                       Logger::info('Got shared data from guid', ['guid' => $shared['guid'], 'callstack' => System::callstack()]);
+               }
+
+               if (!empty($shared_item['title'])) {
+                       $body = '[h3]' . $shared_item['title'] . "[/h3]\n" . $shared_item['body'];
+                       unset($shared_item['title']);
+               } else {
+                       $body = $shared_item['body'];
+               }
+
+               $item['body'] = preg_replace("/\[share ([^\[\]]*)\].*\[\/share\]/ism", '[share $1]' . $body . '[/share]', $item['body']);
+               unset($shared_item['body']);
+
+               return array_merge($item, $shared_item);
+       }
 }