forked from AkkomaGang/akkoma
AP: Fix incoming conversations.
This commit is contained in:
parent
6b32b9e346
commit
6b6ab592ab
2 changed files with 10 additions and 1 deletions
|
@ -14,6 +14,12 @@ def fix_object(object) do
|
|||
object
|
||||
|> Map.put("actor", object["attributedTo"])
|
||||
|> fix_attachments
|
||||
|> fix_context
|
||||
end
|
||||
|
||||
def fix_context(object) do
|
||||
object
|
||||
|> Map.put("context", object["conversation"])
|
||||
end
|
||||
|
||||
def fix_attachments(object) do
|
||||
|
@ -130,7 +136,8 @@ def add_hashtags(object) do
|
|||
end
|
||||
|
||||
def add_mention_tags(object) do
|
||||
mentions = object["to"]
|
||||
recipients = object["to"] ++ (object["cc"] || [])
|
||||
mentions = recipients
|
||||
|> Enum.map(fn (ap_id) -> User.get_cached_by_ap_id(ap_id) end)
|
||||
|> Enum.filter(&(&1))
|
||||
|> Enum.map(fn(user) -> %{"type" => "Mention", "href" => user.ap_id, "name" => "@#{user.nickname}"} end)
|
||||
|
|
|
@ -33,6 +33,7 @@ test "it works for incoming notices" do
|
|||
]
|
||||
assert object["actor"] == "http://mastodon.example.org/users/admin"
|
||||
assert object["attributedTo"] == "http://mastodon.example.org/users/admin"
|
||||
assert object["context"] == "tag:mastodon.example.org,2018-02-12:objectId=20:objectType=Conversation"
|
||||
assert object["sensitive"] == true
|
||||
end
|
||||
|
||||
|
@ -111,6 +112,7 @@ test "it turns mentions into tags" do
|
|||
"name" => "@#{other_user.nickname}",
|
||||
"type" => "Mention"
|
||||
}
|
||||
|
||||
expected_tag = %{
|
||||
"href" => Pleroma.Web.Endpoint.url <> "/tags/2hu",
|
||||
"type" => "Hashtag",
|
||||
|
|
Loading…
Reference in a new issue