]> git.mxchange.org Git - friendica.git/commitdiff
Add shortened URL link label stripping to PageInfo::stripTrailingUrlFromBody
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 17 Jul 2020 21:16:22 +0000 (17:16 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 17 Jul 2020 21:16:22 +0000 (17:16 -0400)
- Add test cases for shortened URL link labels

src/Content/PageInfo.php
tests/src/Content/PageInfoTest.php

index 642c579387468375e3b09f49cf1a057aa93b0402..86663a833f23e242208bfd29593bb7e0b1f6caf3 100644 (file)
@@ -252,22 +252,35 @@ class PageInfo
 
        /**
         * Remove the provided URL from the body if it is at the end of it.
-        * Keep the link label if it isn't the full URL.
+        * Keep the link label if it isn't the full URL or a shortened version of it.
         *
         * @param string $body
         * @param string $url
-        * @return string|string[]|null
+        * @return string
         */
        protected static function stripTrailingUrlFromBody(string $body, string $url)
        {
                $quotedUrl = preg_quote($url, '#');
-               $body = preg_replace("#(?:
+               $body = preg_replace_callback("#(?:
                        \[url]$quotedUrl\[/url]|
                        \[url=$quotedUrl]$quotedUrl\[/url]|
                        \[url=$quotedUrl]([^[]*?)\[/url]|
                        $quotedUrl
-               )$#isx", '$1', $body);
+               )$#isx", function ($match) use ($url) {
+                       // Stripping URLs with no label
+                       if (!isset($match[1])) {
+                               return '';
+                       }
 
-               return $body;
+                       // Stripping link labels that include a shortened version of the URL
+                       if (strpos($url, trim($match[1], '.…')) !== false) {
+                               return '';
+                       }
+
+                       // Keep all other labels
+                       return $match[1];
+               }, $body);
+
+               return rtrim($body);
        }
 }
index 6f9641564bec1fb3f3c6d601dc2514bfa286b3e6..3604348fff8298bf77c3693c040bc65075ff54a5 100644 (file)
@@ -108,6 +108,21 @@ class PageInfoTest extends MockedTest
                                'body' => '[url=https://example.com]link label[/url]',
                                'url' => 'https://example.com',
                        ],
+                       'task-8797-shortened-link-label' => [
+                               'expected' => 'content',
+                               'body' => 'content [url=https://example.com/page]example.com/[/url]',
+                               'url' => 'https://example.com/page',
+                       ],
+                       'task-8797-shortened-link-label-ellipsis' => [
+                               'expected' => 'content',
+                               'body' => 'content [url=https://example.com/page]example.com…[/url]',
+                               'url' => 'https://example.com/page',
+                       ],
+                       'task-8797-shortened-link-label-dots' => [
+                               'expected' => 'content',
+                               'body' => 'content [url=https://example.com/page]example.com...[/url]',
+                               'url' => 'https://example.com/page',
+                       ],
                ];
        }