]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Tag.php
Add tests for Network\Probe::getFeedLink
[friendica.git] / src / Model / Tag.php
index f21d2ffec686f8308a42528e2f16494b97ee03c4..d8c252ca2b7344f6bf59b68b033094c1466d47af 100644 (file)
@@ -325,6 +325,29 @@ class Tag
                }
        }
 
+       /**
+        * Create implicit mentions for a given post
+        *
+        * @param integer $uri_id
+        * @param integer $parent_uri_id
+        */
+       public static function createImplicitMentions(int $uri_id, int $parent_uri_id)
+       {
+               // Always mention the direct parent author
+               $parent = Item::selectFirst(['author-link', 'author-name'], ['uri-id' => $parent_uri_id]);
+               self::store($uri_id, self::IMPLICIT_MENTION, $parent['author-name'], $parent['author-link']);
+
+               if (DI::config()->get('system', 'disable_implicit_mentions')) {
+                       return;
+               }
+
+               $tags = DBA::select('tag-view', ['name', 'url'], ['uri-id' => $parent_uri_id]);
+               while ($tag = DBA::fetch($tags)) {
+                       self::store($uri_id, self::IMPLICIT_MENTION, $tag['name'], $tag['url']);
+               }
+               DBA::close($tags);
+       }
+
        /**
         * Retrieves the terms from the provided type(s) associated with the provided item ID.
         *
@@ -343,12 +366,14 @@ class Tag
         * Return a string with all tags and mentions
         *
         * @param integer $uri_id
+        * @param array   $type
         * @return string tags and mentions
+        * @throws \Exception
         */
-       public static function tagTextFromItemId(int $uri_id)
+       public static function getCSVByURIId(int $uri_id, array $type = [self::HASHTAG, self::MENTION, self::IMPLICIT_MENTION, self::EXCLUSIVE_MENTION])
        {
                $tag_list = [];
-               $tags = self::getByURIId($uri_id);
+               $tags = self::getByURIId($uri_id, $type);
                foreach ($tags as $tag) {
                        $tag_list[] = self::TAG_CHARACTER[$tag['type']] . '[url=' . $tag['url'] . ']' . $tag['name'] . '[/url]';
                }
@@ -510,6 +535,6 @@ class Tag
                        }
                }
 
-               return Strings::startsWith($tag, $tag_chars);
+               return Strings::startsWithChars($tag, $tag_chars);
        }       
 }