forked from AkkomaGang/akkoma
Add delete activity representer.
This commit is contained in:
parent
10e40206c6
commit
540dfb4617
2 changed files with 42 additions and 0 deletions
|
@ -199,6 +199,25 @@ def to_simple_form(%{data: %{"type" => "Undo"}} = activity, user, with_author) d
|
||||||
] ++ mentions ++ author
|
] ++ mentions ++ author
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def to_simple_form(%{data: %{"type" => "Delete"}} = activity, user, with_author) do
|
||||||
|
h = fn(str) -> [to_charlist(str)] end
|
||||||
|
|
||||||
|
updated_at = activity.data["published"]
|
||||||
|
inserted_at = activity.data["published"]
|
||||||
|
|
||||||
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
||||||
|
|
||||||
|
[
|
||||||
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
||||||
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/delete']},
|
||||||
|
{:id, h.(activity.data["object"])},
|
||||||
|
{:title, ['An object was deleted']},
|
||||||
|
{:content, [type: 'html'], ['An object was deleted']},
|
||||||
|
{:published, h.(inserted_at)},
|
||||||
|
{:updated, h.(updated_at)}
|
||||||
|
] ++ author
|
||||||
|
end
|
||||||
|
|
||||||
def wrap_with_entry(simple_form) do
|
def wrap_with_entry(simple_form) do
|
||||||
[{
|
[{
|
||||||
:entry, [
|
:entry, [
|
||||||
|
|
|
@ -225,6 +225,29 @@ test "an unfollow activity" do
|
||||||
assert clean(res) == clean(expected)
|
assert clean(res) == clean(expected)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "a delete" do
|
||||||
|
user = insert(:user)
|
||||||
|
activity = %Activity{data: %{ "id" => "ap_id", "type" => "Delete", "actor" => user.ap_id, "object" => "some_id", "published" => "2017-06-18T12:00:18+00:00" }}
|
||||||
|
|
||||||
|
tuple = ActivityRepresenter.to_simple_form(activity, nil)
|
||||||
|
|
||||||
|
refute is_nil(tuple)
|
||||||
|
|
||||||
|
res = :xmerl.export_simple_content(tuple, :xmerl_xml) |> IO.iodata_to_binary
|
||||||
|
|
||||||
|
expected = """
|
||||||
|
<activity:object-type>http://activitystrea.ms/schema/1.0/activity</activity:object-type>
|
||||||
|
<activity:verb>http://activitystrea.ms/schema/1.0/delete</activity:verb>
|
||||||
|
<id>#{activity.data["object"]}</id>
|
||||||
|
<title>An object was deleted</title>
|
||||||
|
<content type="html">An object was deleted</content>
|
||||||
|
<published>#{activity.data["published"]}</published>
|
||||||
|
<updated>#{activity.data["published"]}</updated>
|
||||||
|
"""
|
||||||
|
|
||||||
|
assert clean(res) == clean(expected)
|
||||||
|
end
|
||||||
|
|
||||||
test "an unknown activity" do
|
test "an unknown activity" do
|
||||||
tuple = ActivityRepresenter.to_simple_form(%Activity{}, nil)
|
tuple = ActivityRepresenter.to_simple_form(%Activity{}, nil)
|
||||||
assert is_nil(tuple)
|
assert is_nil(tuple)
|
||||||
|
|
Loading…
Reference in a new issue