forked from AkkomaGang/akkoma
Merge branch 'small-jsonld-refactor' into 'develop'
Small jsonld refactor See merge request pleroma/pleroma!433
This commit is contained in:
commit
59cf7cf235
4 changed files with 9 additions and 22 deletions
|
@ -604,7 +604,7 @@ def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = obj
|
||||||
data =
|
data =
|
||||||
data
|
data
|
||||||
|> Map.put("object", object)
|
|> Map.put("object", object)
|
||||||
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|> Map.merge(Utils.make_json_ld_header())
|
||||||
|
|
||||||
{:ok, data}
|
{:ok, data}
|
||||||
end
|
end
|
||||||
|
@ -623,7 +623,7 @@ def prepare_outgoing(%{"type" => "Accept"} = data) do
|
||||||
data =
|
data =
|
||||||
data
|
data
|
||||||
|> Map.put("object", object)
|
|> Map.put("object", object)
|
||||||
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|> Map.merge(Utils.make_json_ld_header())
|
||||||
|
|
||||||
{:ok, data}
|
{:ok, data}
|
||||||
end
|
end
|
||||||
|
@ -641,7 +641,7 @@ def prepare_outgoing(%{"type" => "Reject"} = data) do
|
||||||
data =
|
data =
|
||||||
data
|
data
|
||||||
|> Map.put("object", object)
|
|> Map.put("object", object)
|
||||||
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|> Map.merge(Utils.make_json_ld_header())
|
||||||
|
|
||||||
{:ok, data}
|
{:ok, data}
|
||||||
end
|
end
|
||||||
|
@ -651,7 +651,7 @@ def prepare_outgoing(%{"type" => _type} = data) do
|
||||||
data =
|
data =
|
||||||
data
|
data
|
||||||
|> maybe_fix_object_url
|
|> maybe_fix_object_url
|
||||||
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|> Map.merge(Utils.make_json_ld_header())
|
||||||
|
|
||||||
{:ok, data}
|
{:ok, data}
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,23 +3,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
|
||||||
alias Pleroma.Web.ActivityPub.Transmogrifier
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
||||||
|
|
||||||
def render("object.json", %{object: object}) do
|
def render("object.json", %{object: object}) do
|
||||||
base = %{
|
base = Pleroma.Web.ActivityPub.Utils.make_json_ld_header()
|
||||||
"@context" => [
|
|
||||||
"https://www.w3.org/ns/activitystreams",
|
|
||||||
"https://w3id.org/security/v1",
|
|
||||||
%{
|
|
||||||
"manuallyApprovesFollowers" => "as:manuallyApprovesFollowers",
|
|
||||||
"sensitive" => "as:sensitive",
|
|
||||||
"Hashtag" => "as:Hashtag",
|
|
||||||
"ostatus" => "http://ostatus.org#",
|
|
||||||
"atomUri" => "ostatus:atomUri",
|
|
||||||
"inReplyToAtomUri" => "ostatus:inReplyToAtomUri",
|
|
||||||
"conversation" => "ostatus:conversation",
|
|
||||||
"toot" => "http://joinmastodon.org/ns#",
|
|
||||||
"Emoji" => "toot:Emoji"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
additional = Transmogrifier.prepare_object(object.data)
|
additional = Transmogrifier.prepare_object(object.data)
|
||||||
Map.merge(base, additional)
|
Map.merge(base, additional)
|
||||||
|
|
|
@ -695,7 +695,9 @@ test "it adds the json-ld context and the conversation property" do
|
||||||
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
||||||
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
||||||
|
|
||||||
assert modified["@context"] == "https://www.w3.org/ns/activitystreams"
|
assert modified["@context"] ==
|
||||||
|
Pleroma.Web.ActivityPub.Utils.make_json_ld_header()["@context"]
|
||||||
|
|
||||||
assert modified["object"]["conversation"] == modified["context"]
|
assert modified["object"]["conversation"] == modified["context"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -13,5 +13,6 @@ test "renders a note object" do
|
||||||
assert result["to"] == note.data["to"]
|
assert result["to"] == note.data["to"]
|
||||||
assert result["content"] == note.data["content"]
|
assert result["content"] == note.data["content"]
|
||||||
assert result["type"] == "Note"
|
assert result["type"] == "Note"
|
||||||
|
assert result["@context"]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue