]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Tag.php
Add tests for Network\Probe::getFeedLink
[friendica.git] / src / Model / Tag.php
index 9b4b1eb41b806d127eb0b85c9653c56e2ba88cc0..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.
         *
@@ -339,6 +362,25 @@ class Tag
                return DBA::selectToArray('tag-view', ['type', 'name', 'url'], $condition);
        }
 
+       /**
+        * 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 getCSVByURIId(int $uri_id, array $type = [self::HASHTAG, self::MENTION, self::IMPLICIT_MENTION, self::EXCLUSIVE_MENTION])
+       {
+               $tag_list = [];
+               $tags = self::getByURIId($uri_id, $type);
+               foreach ($tags as $tag) {
+                       $tag_list[] = self::TAG_CHARACTER[$tag['type']] . '[url=' . $tag['url'] . ']' . $tag['name'] . '[/url]';
+               }
+
+               return implode(',', $tag_list);
+       }
+
        /**
         * Sorts an item's tags into mentions, hashtags and other tags. Generate personalized URLs by user and modify the
         * provided item's body with them.
@@ -493,6 +535,6 @@ class Tag
                        }
                }
 
-               return Strings::startsWith($tag, $tag_chars);
+               return Strings::startsWithChars($tag, $tag_chars);
        }       
 }