]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Item.php
Improved profile summary for notifications
[friendica.git] / src / Model / Item.php
index a730404ed4f40a05e7b1d9fe4dcb9b0fd8592e9b..60e88757e051bb9bfe2ba88639feeff3984880bc 100644 (file)
@@ -2050,7 +2050,11 @@ class Item
                }
 
                // Glue it together to be able to make a hash from it
-               $host_id = implode('/', $parsed);
+               if (!empty($parsed)) {
+                       $host_id = implode('/', $parsed);
+               } else {
+                       $host_id = $uri;
+               }
 
                // Use a mixture of several hashes to provide some GUID like experience
                return hash('crc32', $hostPart) . '-' . hash('joaat', $host_id) . '-' . hash('fnv164', $host_id);
@@ -2250,7 +2254,7 @@ class Item
 
                if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
                        $allow_cid = '';
-                       $allow_gid = '<' . Group::FOLLOWERS . '>';
+                       $allow_gid = '<' . Circle::FOLLOWERS . '>';
                        $deny_cid  = '';
                        $deny_gid  = '';
                        self::performActivity($item['id'], 'announce', $uid, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
@@ -2524,13 +2528,13 @@ class Item
                        $expand_followers = true;
                }
 
-               $allow_people = $aclFormatter->expand($obj['allow_cid']);
-               $allow_groups = Group::expand($obj['uid'], $aclFormatter->expand($obj['allow_gid']), $check_dead, $expand_followers);
-               $deny_people  = $aclFormatter->expand($obj['deny_cid']);
-               $deny_groups  = Group::expand($obj['uid'], $aclFormatter->expand($obj['deny_gid']), $check_dead);
-               $recipients   = array_unique(array_merge($allow_people, $allow_groups));
-               $deny         = array_unique(array_merge($deny_people, $deny_groups));
-               $recipients   = array_diff($recipients, $deny);
+               $allow_people  = $aclFormatter->expand($obj['allow_cid']);
+               $allow_circles = Circle::expand($obj['uid'], $aclFormatter->expand($obj['allow_gid']), $check_dead, $expand_followers);
+               $deny_people   = $aclFormatter->expand($obj['deny_cid']);
+               $deny_circles  = Circle::expand($obj['uid'], $aclFormatter->expand($obj['deny_gid']), $check_dead);
+               $recipients    = array_unique(array_merge($allow_people, $allow_circles));
+               $deny          = array_unique(array_merge($deny_people, $deny_circles));
+               $recipients    = array_diff($recipients, $deny);
                return $recipients;
        }
 
@@ -2896,9 +2900,9 @@ class Item
                        /*
                         * Authenticated visitor. Unless pre-verified,
                         * check that the contact belongs to this $owner_id
-                        * and load the groups the visitor belongs to.
+                        * and load the circles the visitor belongs to.
                         * If pre-verified, the caller is expected to have already
-                        * done this and passed the groups into this function.
+                        * done this and passed the circles into this function.
                         */
                        $permissionSets = DI::permissionSet()->selectByContactId($remote_user, $owner_id);
 
@@ -3021,6 +3025,7 @@ class Item
                if (!$is_preview) {
                        $item['body'] = preg_replace("#\s*\[attachment .*?].*?\[/attachment]\s*#ism", "\n", $item['body']);
                        $item['body'] = Post\Media::removeFromEndOfBody($item['body'] ?? '');
+                       $item['body'] = Post\Media::replaceImage($item['body']);
                }
 
                $body = $item['body'];
@@ -3038,6 +3043,7 @@ class Item
                if (!empty($shared['post'])) {
                        $shared_item  = $shared['post'];
                        $shared_item['body'] = Post\Media::removeFromEndOfBody($shared_item['body']);
+                       $shared_item['body'] = Post\Media::replaceImage($shared_item['body']);
                        $quote_uri_id = $shared['post']['uri-id'];
                        $shared_links[] = strtolower($shared['post']['uri']);
                        $item['body'] = BBCode::removeSharedData($item['body']);
@@ -3047,7 +3053,7 @@ class Item
                                $shared_item = Post::selectFirst($fields, ['uri-id' => $media[0]['media-uri-id'], 'uid' => [$item['uid'], 0]]);
                                if (empty($shared_item['uri-id'])) {
                                        $shared_item = Post::selectFirst($fields, ['plink' => $media[0]['url'], 'uid' => [$item['uid'], 0]]);
-                               } elseif (strtolower($shared['post']['uri']) != strtolower($media[0]['url'])) {
+                               } elseif (!in_array(strtolower($media[0]['url']), $shared_links)) {
                                        $shared_links[] = strtolower($media[0]['url']);
                                }
 
@@ -3141,12 +3147,14 @@ class Item
                }
 
                if (!empty($shared_attachments)) {
+                       $s = self::addGallery($s, $shared_attachments, $item['uri-id']);
                        $s = self::addVisualAttachments($shared_attachments, $shared_item, $s, true);
                        $s = self::addLinkAttachment($shared_uri_id ?: $item['uri-id'], $shared_attachments, $body, $s, true, $quote_shared_links);
                        $s = self::addNonVisualAttachments($shared_attachments, $item, $s, true);
                        $body = BBCode::removeSharedData($body);
                }
 
+               $s = self::addGallery($s, $attachments, $item['uri-id']);
                $s = self::addVisualAttachments($attachments, $item, $s, false);
                $s = self::addLinkAttachment($item['uri-id'], $attachments, $body, $s, false, $shared_links);
                $s = self::addNonVisualAttachments($attachments, $item, $s, false);
@@ -3196,6 +3204,24 @@ class Item
                ]);
        }
 
+       /**
+        * Modify links to pictures to links for the "Fancybox" gallery
+        *
+        * @param string $s
+        * @param array $attachments
+        * @param integer $uri_id
+        * @return string
+        */
+       private static function addGallery(string $s, array $attachments, int $uri_id): string
+       {
+               foreach ($attachments['visual'] as $attachment) {
+                       if (empty($attachment['preview']) || ($attachment['type'] != Post\Media::IMAGE)) {
+                               continue;
+                       }
+                       $s = str_replace('<a href="' . $attachment['url'] . '"', '<a data-fancybox="' . $uri_id . '" href="' . $attachment['url'] . '"', $s);
+               }
+               return $s;
+       }
 
        /**
         * Check if the body contains a link
@@ -3259,12 +3285,18 @@ class Item
 
                foreach ($attachments['visual'] as $attachment) {
                        if (!empty($attachment['preview'])) {
+                               if (Network::isLocalLink($attachment['preview'])) {
+                                       continue;
+                               }
                                $proxy   = Post\Media::getPreviewUrlForId($attachment['id'], Proxy::SIZE_LARGE);
                                $search  = ['[img=' . $attachment['preview'] . ']', ']' . $attachment['preview'] . '[/img]'];
                                $replace = ['[img=' . $proxy . ']', ']' . $proxy . '[/img]'];
 
                                $body = str_replace($search, $replace, $body);
                        } elseif ($attachment['filetype'] == 'image') {
+                               if (Network::isLocalLink($attachment['url'])) {
+                                       continue;
+                               }
                                $proxy   = Post\Media::getUrlForId($attachment['id']);
                                $search  = ['[img=' . $attachment['url'] . ']', ']' . $attachment['url'] . '[/img]'];
                                $replace = ['[img=' . $proxy . ']', ']' . $proxy . '[/img]'];
@@ -3344,7 +3376,7 @@ class Item
                                if (self::containsLink($item['body'], $src_url)) {
                                        continue;
                                }
-                               $images[] = ['src' => $src_url, 'preview' => $preview_url, 'attachment' => $attachment];
+                               $images[] = ['src' => $src_url, 'preview' => $preview_url, 'attachment' => $attachment, 'uri_id' => $item['uri-id']];
                        }
                }