Ostatus: Use all recipients as mentions.
This commit is contained in:
parent
932d346d35
commit
313f186a66
|
@ -76,7 +76,7 @@ def to_simple_form(%{data: %{"object" => %{"type" => "Note"}}} = activity, user,
|
||||||
|
|
||||||
in_reply_to = get_in_reply_to(activity.data)
|
in_reply_to = get_in_reply_to(activity.data)
|
||||||
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
||||||
mentions = activity.data["to"] |> get_mentions
|
mentions = activity.recipients |> get_mentions
|
||||||
|
|
||||||
categories = (activity.data["object"]["tag"] || [])
|
categories = (activity.data["object"]["tag"] || [])
|
||||||
|> Enum.map(fn (tag) -> {:category, [term: to_charlist(tag)], []} end)
|
|> Enum.map(fn (tag) -> {:category, [term: to_charlist(tag)], []} end)
|
||||||
|
@ -110,7 +110,7 @@ def to_simple_form(%{data: %{"type" => "Like"}} = activity, user, with_author) d
|
||||||
|
|
||||||
_in_reply_to = get_in_reply_to(activity.data)
|
_in_reply_to = get_in_reply_to(activity.data)
|
||||||
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
||||||
mentions = activity.data["to"] |> get_mentions
|
mentions = activity.recipients |> get_mentions
|
||||||
|
|
||||||
[
|
[
|
||||||
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/favorite']},
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/favorite']},
|
||||||
|
@ -144,7 +144,7 @@ def to_simple_form(%{data: %{"type" => "Announce"}} = activity, user, with_autho
|
||||||
|
|
||||||
retweeted_xml = to_simple_form(retweeted_activity, retweeted_user, true)
|
retweeted_xml = to_simple_form(retweeted_activity, retweeted_user, true)
|
||||||
|
|
||||||
mentions = activity.data["to"] |> get_mentions
|
mentions = activity.recipients |> get_mentions
|
||||||
[
|
[
|
||||||
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
||||||
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/share']},
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/share']},
|
||||||
|
@ -168,7 +168,7 @@ def to_simple_form(%{data: %{"type" => "Follow"}} = activity, user, with_author)
|
||||||
|
|
||||||
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
||||||
|
|
||||||
mentions = (activity.data["to"] || []) |> get_mentions
|
mentions = (activity.recipients || []) |> get_mentions
|
||||||
[
|
[
|
||||||
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
||||||
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/follow']},
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/follow']},
|
||||||
|
@ -196,7 +196,7 @@ def to_simple_form(%{data: %{"type" => "Undo"}} = activity, user, with_author) d
|
||||||
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
||||||
follow_activity = Activity.get_by_ap_id(activity.data["object"])
|
follow_activity = Activity.get_by_ap_id(activity.data["object"])
|
||||||
|
|
||||||
mentions = (activity.data["to"] || []) |> get_mentions
|
mentions = (activity.recipients || []) |> get_mentions
|
||||||
[
|
[
|
||||||
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
||||||
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/unfollow']},
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/unfollow']},
|
||||||
|
|
Loading…
Reference in New Issue