From 801ca3531b26f7994728b8a4017884550e87a66b Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Thu, 7 Jan 2016 23:23:37 +0100 Subject: [PATCH] common_find_attentions to populate activities from content text --- lib/util.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/util.php b/lib/util.php index 30ad757f75..62cd13af4a 100644 --- a/lib/util.php +++ b/lib/util.php @@ -681,6 +681,18 @@ function common_linkify_mention(array $mention) return $output; } +function common_find_attentions($text, Profile $sender, Notice $parent=null) +{ + $mentions = common_find_mentions($text, $sender, $parent); + $atts = array(); + foreach ($mentions as $mention) { + foreach ($mention['mentioned'] as $mentioned) { + $atts[$mentioned->getUri()] = $mentioned->isGroup() ? ActivityObject::GROUP : ActivityObject::PERSON; + } + } + return $atts; +} + /** * Find @-mentions in the given text, using the given notice object as context. * References will be resolved with common_relative_profile() against the user -- 2.39.2