1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
6 use Oban.Testing, repo: Pleroma.Repo
11 alias Pleroma.Object.Fetcher
12 alias Pleroma.Tests.ObanHelpers
14 alias Pleroma.Web.ActivityPub.Transmogrifier
15 alias Pleroma.Web.AdminAPI.AccountView
16 alias Pleroma.Web.CommonAPI
19 import Pleroma.Factory
20 import ExUnit.CaptureLog
23 Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
27 setup do: clear_config([:instance, :max_remote_account_fields])
29 describe "handle_incoming" do
30 test "it works for incoming notices with tag not being an array (kroeg)" do
31 data = File.read!("test/fixtures/kroeg-array-less-emoji.json") |> Poison.decode!()
33 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
34 object = Object.normalize(data["object"])
36 assert object.data["emoji"] == %{
37 "icon_e_smile" => "https://puckipedia.com/forum/images/smilies/icon_e_smile.png"
40 data = File.read!("test/fixtures/kroeg-array-less-hashtag.json") |> Poison.decode!()
42 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
43 object = Object.normalize(data["object"])
45 assert "test" in object.data["tag"]
48 test "it works for incoming notices with url not being a string (prismo)" do
49 data = File.read!("test/fixtures/prismo-url-map.json") |> Poison.decode!()
51 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
52 object = Object.normalize(data["object"])
54 assert object.data["url"] == "https://prismo.news/posts/83"
57 test "it cleans up incoming notices which are not really DMs" do
59 other_user = insert(:user)
61 to = [user.ap_id, other_user.ap_id]
64 File.read!("test/fixtures/mastodon-post-activity.json")
74 data = Map.put(data, "object", object)
76 {:ok, %Activity{data: data, local: false} = activity} = Transmogrifier.handle_incoming(data)
78 assert data["to"] == []
79 assert data["cc"] == to
81 object_data = Object.normalize(activity).data
83 assert object_data["to"] == []
84 assert object_data["cc"] == to
87 test "it ignores an incoming notice if we already have it" do
88 activity = insert(:note_activity)
91 File.read!("test/fixtures/mastodon-post-activity.json")
93 |> Map.put("object", Object.normalize(activity).data)
95 {:ok, returned_activity} = Transmogrifier.handle_incoming(data)
97 assert activity == returned_activity
100 @tag capture_log: true
101 test "it fetches reply-to activities if we don't have them" do
103 File.read!("test/fixtures/mastodon-post-activity.json")
108 |> Map.put("inReplyTo", "https://shitposter.club/notice/2827873")
110 data = Map.put(data, "object", object)
111 {:ok, returned_activity} = Transmogrifier.handle_incoming(data)
112 returned_object = Object.normalize(returned_activity, false)
115 Activity.get_create_by_object_ap_id(
116 "tag:shitposter.club,2017-05-05:noticeId=2827873:objectType=comment"
119 assert returned_object.data["inReplyToAtomUri"] == "https://shitposter.club/notice/2827873"
122 test "it does not fetch reply-to activities beyond max replies depth limit" do
124 File.read!("test/fixtures/mastodon-post-activity.json")
129 |> Map.put("inReplyTo", "https://shitposter.club/notice/2827873")
131 data = Map.put(data, "object", object)
133 with_mock Pleroma.Web.Federator,
134 allowed_thread_distance?: fn _ -> false end do
135 {:ok, returned_activity} = Transmogrifier.handle_incoming(data)
137 returned_object = Object.normalize(returned_activity, false)
139 refute Activity.get_create_by_object_ap_id(
140 "tag:shitposter.club,2017-05-05:noticeId=2827873:objectType=comment"
143 assert returned_object.data["inReplyToAtomUri"] ==
144 "https://shitposter.club/notice/2827873"
148 test "it does not crash if the object in inReplyTo can't be fetched" do
150 File.read!("test/fixtures/mastodon-post-activity.json")
155 |> Map.put("inReplyTo", "https://404.site/whatever")
159 |> Map.put("object", object)
161 assert capture_log(fn ->
162 {:ok, _returned_activity} = Transmogrifier.handle_incoming(data)
163 end) =~ "[warn] Couldn't fetch \"https://404.site/whatever\", error: nil"
166 test "it does not work for deactivated users" do
167 data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()
169 insert(:user, ap_id: data["actor"], deactivated: true)
171 assert {:error, _} = Transmogrifier.handle_incoming(data)
174 test "it works for incoming notices" do
175 data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()
177 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
180 "http://mastodon.example.org/users/admin/statuses/99512778738411822/activity"
182 assert data["context"] ==
183 "tag:mastodon.example.org,2018-02-12:objectId=20:objectType=Conversation"
185 assert data["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
187 assert data["cc"] == [
188 "http://mastodon.example.org/users/admin/followers",
189 "http://localtesting.pleroma.lol/users/lain"
192 assert data["actor"] == "http://mastodon.example.org/users/admin"
194 object_data = Object.normalize(data["object"]).data
196 assert object_data["id"] ==
197 "http://mastodon.example.org/users/admin/statuses/99512778738411822"
199 assert object_data["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
201 assert object_data["cc"] == [
202 "http://mastodon.example.org/users/admin/followers",
203 "http://localtesting.pleroma.lol/users/lain"
206 assert object_data["actor"] == "http://mastodon.example.org/users/admin"
207 assert object_data["attributedTo"] == "http://mastodon.example.org/users/admin"
209 assert object_data["context"] ==
210 "tag:mastodon.example.org,2018-02-12:objectId=20:objectType=Conversation"
212 assert object_data["sensitive"] == true
214 user = User.get_cached_by_ap_id(object_data["actor"])
216 assert user.note_count == 1
219 test "it works for incoming notices with hashtags" do
220 data = File.read!("test/fixtures/mastodon-post-activity-hashtag.json") |> Poison.decode!()
222 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
223 object = Object.normalize(data["object"])
225 assert Enum.at(object.data["tag"], 2) == "moo"
228 test "it works for incoming listens" do
230 "@context" => "https://www.w3.org/ns/activitystreams",
231 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
234 "id" => "http://mastodon.example.org/users/admin/listens/1234/activity",
235 "actor" => "http://mastodon.example.org/users/admin",
238 "id" => "http://mastodon.example.org/users/admin/listens/1234",
239 "attributedTo" => "http://mastodon.example.org/users/admin",
240 "title" => "lain radio episode 1",
242 "album" => "lain radio",
247 {:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
249 object = Object.normalize(activity)
251 assert object.data["title"] == "lain radio episode 1"
252 assert object.data["artist"] == "lain"
253 assert object.data["album"] == "lain radio"
254 assert object.data["length"] == 180_000
257 test "it works for incoming notices with contentMap" do
259 File.read!("test/fixtures/mastodon-post-activity-contentmap.json") |> Poison.decode!()
261 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
262 object = Object.normalize(data["object"])
264 assert object.data["content"] ==
265 "<p><span class=\"h-card\"><a href=\"http://localtesting.pleroma.lol/users/lain\" class=\"u-url mention\">@<span>lain</span></a></span></p>"
268 test "it works for incoming notices with to/cc not being an array (kroeg)" do
269 data = File.read!("test/fixtures/kroeg-post-activity.json") |> Poison.decode!()
271 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
272 object = Object.normalize(data["object"])
274 assert object.data["content"] ==
275 "<p>henlo from my Psion netBook</p><p>message sent from my Psion netBook</p>"
278 test "it ensures that as:Public activities make it to their followers collection" do
282 File.read!("test/fixtures/mastodon-post-activity.json")
284 |> Map.put("actor", user.ap_id)
285 |> Map.put("to", ["https://www.w3.org/ns/activitystreams#Public"])
290 |> Map.put("attributedTo", user.ap_id)
291 |> Map.put("to", ["https://www.w3.org/ns/activitystreams#Public"])
293 |> Map.put("id", user.ap_id <> "/activities/12345678")
295 data = Map.put(data, "object", object)
297 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
299 assert data["cc"] == [User.ap_followers(user)]
302 test "it ensures that address fields become lists" do
306 File.read!("test/fixtures/mastodon-post-activity.json")
308 |> Map.put("actor", user.ap_id)
309 |> Map.put("to", nil)
310 |> Map.put("cc", nil)
314 |> Map.put("attributedTo", user.ap_id)
315 |> Map.put("to", nil)
316 |> Map.put("cc", nil)
317 |> Map.put("id", user.ap_id <> "/activities/12345678")
319 data = Map.put(data, "object", object)
321 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
323 assert !is_nil(data["to"])
324 assert !is_nil(data["cc"])
327 test "it strips internal likes" do
329 File.read!("test/fixtures/mastodon-post-activity.json")
334 "http://mastodon.example.org/objects/dbdbc507-52c8-490d-9b7c-1e1d52e5c132/likes?page=1",
335 "id" => "http://mastodon.example.org/objects/dbdbc507-52c8-490d-9b7c-1e1d52e5c132/likes",
337 "type" => "OrderedCollection"
340 object = Map.put(data["object"], "likes", likes)
341 data = Map.put(data, "object", object)
343 {:ok, %Activity{object: object}} = Transmogrifier.handle_incoming(data)
345 refute Map.has_key?(object.data, "likes")
348 test "it strips internal reactions" do
350 {:ok, activity} = CommonAPI.post(user, %{status: "#cofe"})
351 {:ok, _} = CommonAPI.react_with_emoji(activity.id, user, "📢")
353 %{object: object} = Activity.get_by_id_with_object(activity.id)
354 assert Map.has_key?(object.data, "reactions")
355 assert Map.has_key?(object.data, "reaction_count")
357 object_data = Transmogrifier.strip_internal_fields(object.data)
358 refute Map.has_key?(object_data, "reactions")
359 refute Map.has_key?(object_data, "reaction_count")
362 test "it works for incoming unfollows with an existing follow" do
366 File.read!("test/fixtures/mastodon-follow-activity.json")
368 |> Map.put("object", user.ap_id)
370 {:ok, %Activity{data: _, local: false}} = Transmogrifier.handle_incoming(follow_data)
373 File.read!("test/fixtures/mastodon-unfollow-activity.json")
375 |> Map.put("object", follow_data)
377 {:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
379 assert data["type"] == "Undo"
380 assert data["object"]["type"] == "Follow"
381 assert data["object"]["object"] == user.ap_id
382 assert data["actor"] == "http://mastodon.example.org/users/admin"
384 refute User.following?(User.get_cached_by_ap_id(data["actor"]), user)
387 test "skip converting the content when it is nil" do
388 object_id = "https://peertube.social/videos/watch/278d2b7c-0f38-4aaa-afe6-9ecc0c4a34fe"
390 {:ok, object} = Fetcher.fetch_and_contain_remote_object_from_id(object_id)
393 Pleroma.Web.ActivityPub.Transmogrifier.fix_object(Map.merge(object, %{"content" => nil}))
395 assert result["content"] == nil
398 test "it converts content of object to html" do
399 object_id = "https://peertube.social/videos/watch/278d2b7c-0f38-4aaa-afe6-9ecc0c4a34fe"
401 {:ok, %{"content" => content_markdown}} =
402 Fetcher.fetch_and_contain_remote_object_from_id(object_id)
404 {:ok, %Pleroma.Object{data: %{"content" => content}} = object} =
405 Fetcher.fetch_object_from_id(object_id)
407 assert content_markdown ==
408 "Support this and our other Michigan!/usr/group videos and meetings. Learn more at http://mug.org/membership\n\nTwenty Years in Jail: FreeBSD's Jails, Then and Now\n\nJails started as a limited virtualization system, but over the last two years they've..."
411 "<p>Support this and our other Michigan!/usr/group videos and meetings. Learn more at <a href=\"http://mug.org/membership\">http://mug.org/membership</a></p><p>Twenty Years in Jail: FreeBSD’s Jails, Then and Now</p><p>Jails started as a limited virtualization system, but over the last two years they’ve…</p>"
413 assert object.data["mediaType"] == "text/html"
416 test "it remaps video URLs as attachments if necessary" do
418 Fetcher.fetch_object_from_id(
419 "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
422 assert object.data["url"] ==
423 "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
425 assert object.data["attachment"] == [
428 "mediaType" => "video/mp4",
432 "https://peertube.moe/static/webseed/df5f464b-be8d-46fb-ad81-2d4c2d1630e3-480.mp4",
433 "mediaType" => "video/mp4",
441 Fetcher.fetch_object_from_id(
442 "https://framatube.org/videos/watch/6050732a-8a7a-43d4-a6cd-809525a1d206"
445 assert object.data["attachment"] == [
448 "mediaType" => "video/mp4",
452 "https://framatube.org/static/webseed/6050732a-8a7a-43d4-a6cd-809525a1d206-1080.mp4",
453 "mediaType" => "video/mp4",
460 assert object.data["url"] ==
461 "https://framatube.org/videos/watch/6050732a-8a7a-43d4-a6cd-809525a1d206"
464 test "it accepts Flag activities" do
466 other_user = insert(:user)
468 {:ok, activity} = CommonAPI.post(user, %{status: "test post"})
469 object = Object.normalize(activity)
473 "id" => activity.data["id"],
474 "content" => "test post",
475 "published" => object.data["published"],
476 "actor" => AccountView.render("show.json", %{user: user, skip_visibility_check: true})
480 "@context" => "https://www.w3.org/ns/activitystreams",
481 "cc" => [user.ap_id],
482 "object" => [user.ap_id, activity.data["id"]],
484 "content" => "blocked AND reported!!!",
485 "actor" => other_user.ap_id
488 assert {:ok, activity} = Transmogrifier.handle_incoming(message)
490 assert activity.data["object"] == [user.ap_id, note_obj]
491 assert activity.data["content"] == "blocked AND reported!!!"
492 assert activity.data["actor"] == other_user.ap_id
493 assert activity.data["cc"] == [user.ap_id]
496 test "it correctly processes messages with non-array to field" do
500 "@context" => "https://www.w3.org/ns/activitystreams",
501 "to" => "https://www.w3.org/ns/activitystreams#Public",
504 "content" => "blah blah blah",
506 "attributedTo" => user.ap_id,
509 "actor" => user.ap_id
512 assert {:ok, activity} = Transmogrifier.handle_incoming(message)
514 assert ["https://www.w3.org/ns/activitystreams#Public"] == activity.data["to"]
517 test "it correctly processes messages with non-array cc field" do
521 "@context" => "https://www.w3.org/ns/activitystreams",
522 "to" => user.follower_address,
523 "cc" => "https://www.w3.org/ns/activitystreams#Public",
526 "content" => "blah blah blah",
528 "attributedTo" => user.ap_id,
531 "actor" => user.ap_id
534 assert {:ok, activity} = Transmogrifier.handle_incoming(message)
536 assert ["https://www.w3.org/ns/activitystreams#Public"] == activity.data["cc"]
537 assert [user.follower_address] == activity.data["to"]
540 test "it correctly processes messages with weirdness in address fields" do
544 "@context" => "https://www.w3.org/ns/activitystreams",
545 "to" => [nil, user.follower_address],
546 "cc" => ["https://www.w3.org/ns/activitystreams#Public", ["¿"]],
551 "attributedTo" => user.ap_id,
554 "actor" => user.ap_id
557 assert {:ok, activity} = Transmogrifier.handle_incoming(message)
559 assert ["https://www.w3.org/ns/activitystreams#Public"] == activity.data["cc"]
560 assert [user.follower_address] == activity.data["to"]
563 test "it accepts Move activities" do
564 old_user = insert(:user)
565 new_user = insert(:user)
568 "@context" => "https://www.w3.org/ns/activitystreams",
570 "actor" => old_user.ap_id,
571 "object" => old_user.ap_id,
572 "target" => new_user.ap_id
575 assert :error = Transmogrifier.handle_incoming(message)
577 {:ok, _new_user} = User.update_and_set_cache(new_user, %{also_known_as: [old_user.ap_id]})
579 assert {:ok, %Activity{} = activity} = Transmogrifier.handle_incoming(message)
580 assert activity.actor == old_user.ap_id
581 assert activity.data["actor"] == old_user.ap_id
582 assert activity.data["object"] == old_user.ap_id
583 assert activity.data["target"] == new_user.ap_id
584 assert activity.data["type"] == "Move"
588 describe "`handle_incoming/2`, Mastodon format `replies` handling" do
589 setup do: clear_config([:activitypub, :note_replies_output_limit], 5)
590 setup do: clear_config([:instance, :federation_incoming_replies_max_depth])
594 "test/fixtures/mastodon-post-activity.json"
598 items = get_in(data, ["object", "replies", "first", "items"])
599 assert length(items) > 0
601 %{data: data, items: items}
604 test "schedules background fetching of `replies` items if max thread depth limit allows", %{
608 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 10)
610 {:ok, _activity} = Transmogrifier.handle_incoming(data)
613 job_args = %{"op" => "fetch_remote", "id" => id, "depth" => 1}
614 assert_enqueued(worker: Pleroma.Workers.RemoteFetcherWorker, args: job_args)
618 test "does NOT schedule background fetching of `replies` beyond max thread depth limit allows",
620 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 0)
622 {:ok, _activity} = Transmogrifier.handle_incoming(data)
624 assert all_enqueued(worker: Pleroma.Workers.RemoteFetcherWorker) == []
628 describe "`handle_incoming/2`, Pleroma format `replies` handling" do
629 setup do: clear_config([:activitypub, :note_replies_output_limit], 5)
630 setup do: clear_config([:instance, :federation_incoming_replies_max_depth])
635 {:ok, activity} = CommonAPI.post(user, %{status: "post1"})
638 CommonAPI.post(user, %{status: "reply1", in_reply_to_status_id: activity.id})
641 CommonAPI.post(user, %{status: "reply2", in_reply_to_status_id: activity.id})
643 replies_uris = Enum.map([reply1, reply2], fn a -> a.object.data["id"] end)
645 {:ok, federation_output} = Transmogrifier.prepare_outgoing(activity.data)
647 Repo.delete(activity.object)
648 Repo.delete(activity)
650 %{federation_output: federation_output, replies_uris: replies_uris}
653 test "schedules background fetching of `replies` items if max thread depth limit allows", %{
654 federation_output: federation_output,
655 replies_uris: replies_uris
657 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 1)
659 {:ok, _activity} = Transmogrifier.handle_incoming(federation_output)
661 for id <- replies_uris do
662 job_args = %{"op" => "fetch_remote", "id" => id, "depth" => 1}
663 assert_enqueued(worker: Pleroma.Workers.RemoteFetcherWorker, args: job_args)
667 test "does NOT schedule background fetching of `replies` beyond max thread depth limit allows",
668 %{federation_output: federation_output} do
669 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 0)
671 {:ok, _activity} = Transmogrifier.handle_incoming(federation_output)
673 assert all_enqueued(worker: Pleroma.Workers.RemoteFetcherWorker) == []
677 describe "prepare outgoing" do
678 test "it inlines private announced objects" do
681 {:ok, activity} = CommonAPI.post(user, %{status: "hey", visibility: "private"})
683 {:ok, announce_activity} = CommonAPI.repeat(activity.id, user)
685 {:ok, modified} = Transmogrifier.prepare_outgoing(announce_activity.data)
687 assert modified["object"]["content"] == "hey"
688 assert modified["object"]["actor"] == modified["object"]["attributedTo"]
691 test "it turns mentions into tags" do
693 other_user = insert(:user)
696 CommonAPI.post(user, %{status: "hey, @#{other_user.nickname}, how are ya? #2hu"})
698 with_mock Pleroma.Notification,
699 get_notified_from_activity: fn _, _ -> [] end do
700 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
702 object = modified["object"]
704 expected_mention = %{
705 "href" => other_user.ap_id,
706 "name" => "@#{other_user.nickname}",
711 "href" => Pleroma.Web.Endpoint.url() <> "/tags/2hu",
716 refute called(Pleroma.Notification.get_notified_from_activity(:_, :_))
717 assert Enum.member?(object["tag"], expected_tag)
718 assert Enum.member?(object["tag"], expected_mention)
722 test "it adds the sensitive property" do
725 {:ok, activity} = CommonAPI.post(user, %{status: "#nsfw hey"})
726 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
728 assert modified["object"]["sensitive"]
731 test "it adds the json-ld context and the conversation property" do
734 {:ok, activity} = CommonAPI.post(user, %{status: "hey"})
735 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
737 assert modified["@context"] ==
738 Pleroma.Web.ActivityPub.Utils.make_json_ld_header()["@context"]
740 assert modified["object"]["conversation"] == modified["context"]
743 test "it sets the 'attributedTo' property to the actor of the object if it doesn't have one" do
746 {:ok, activity} = CommonAPI.post(user, %{status: "hey"})
747 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
749 assert modified["object"]["actor"] == modified["object"]["attributedTo"]
752 test "it strips internal hashtag data" do
755 {:ok, activity} = CommonAPI.post(user, %{status: "#2hu"})
758 "href" => Pleroma.Web.Endpoint.url() <> "/tags/2hu",
763 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
765 assert modified["object"]["tag"] == [expected_tag]
768 test "it strips internal fields" do
771 {:ok, activity} = CommonAPI.post(user, %{status: "#2hu :firefox:"})
773 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
775 assert length(modified["object"]["tag"]) == 2
777 assert is_nil(modified["object"]["emoji"])
778 assert is_nil(modified["object"]["like_count"])
779 assert is_nil(modified["object"]["announcements"])
780 assert is_nil(modified["object"]["announcement_count"])
781 assert is_nil(modified["object"]["context_id"])
784 test "it strips internal fields of article" do
785 activity = insert(:article_activity)
787 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
789 assert length(modified["object"]["tag"]) == 2
791 assert is_nil(modified["object"]["emoji"])
792 assert is_nil(modified["object"]["like_count"])
793 assert is_nil(modified["object"]["announcements"])
794 assert is_nil(modified["object"]["announcement_count"])
795 assert is_nil(modified["object"]["context_id"])
796 assert is_nil(modified["object"]["likes"])
799 test "the directMessage flag is present" do
801 other_user = insert(:user)
803 {:ok, activity} = CommonAPI.post(user, %{status: "2hu :moominmamma:"})
805 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
807 assert modified["directMessage"] == false
809 {:ok, activity} = CommonAPI.post(user, %{status: "@#{other_user.nickname} :moominmamma:"})
811 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
813 assert modified["directMessage"] == false
816 CommonAPI.post(user, %{
817 status: "@#{other_user.nickname} :moominmamma:",
821 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
823 assert modified["directMessage"] == true
826 test "it strips BCC field" do
828 {:ok, list} = Pleroma.List.create("foo", user)
830 {:ok, activity} = CommonAPI.post(user, %{status: "foobar", visibility: "list:#{list.id}"})
832 {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
834 assert is_nil(modified["bcc"])
837 test "it can handle Listen activities" do
838 listen_activity = insert(:listen)
840 {:ok, modified} = Transmogrifier.prepare_outgoing(listen_activity.data)
842 assert modified["type"] == "Listen"
846 {:ok, activity} = CommonAPI.listen(user, %{"title" => "lain radio episode 1"})
848 {:ok, _modified} = Transmogrifier.prepare_outgoing(activity.data)
852 describe "user upgrade" do
853 test "it upgrades a user to activitypub" do
856 nickname: "rye@niu.moe",
858 ap_id: "https://niu.moe/users/rye",
859 follower_address: User.ap_followers(%User{nickname: "rye@niu.moe"})
862 user_two = insert(:user)
863 Pleroma.FollowingRelationship.follow(user_two, user, :follow_accept)
865 {:ok, activity} = CommonAPI.post(user, %{status: "test"})
866 {:ok, unrelated_activity} = CommonAPI.post(user_two, %{status: "test"})
867 assert "http://localhost:4001/users/rye@niu.moe/followers" in activity.recipients
869 user = User.get_cached_by_id(user.id)
870 assert user.note_count == 1
872 {:ok, user} = Transmogrifier.upgrade_user_from_ap_id("https://niu.moe/users/rye")
873 ObanHelpers.perform_all()
875 assert user.ap_enabled
876 assert user.note_count == 1
877 assert user.follower_address == "https://niu.moe/users/rye/followers"
878 assert user.following_address == "https://niu.moe/users/rye/following"
880 user = User.get_cached_by_id(user.id)
881 assert user.note_count == 1
883 activity = Activity.get_by_id(activity.id)
884 assert user.follower_address in activity.recipients
890 "https://cdn.niu.moe/accounts/avatars/000/033/323/original/fd7f8ae0b3ffedc9.jpeg"
899 "https://cdn.niu.moe/accounts/headers/000/033/323/original/850b3448fa5fd477.png"
904 refute "..." in activity.recipients
906 unrelated_activity = Activity.get_by_id(unrelated_activity.id)
907 refute user.follower_address in unrelated_activity.recipients
909 user_two = User.get_cached_by_id(user_two.id)
910 assert User.following?(user_two, user)
911 refute "..." in User.following(user_two)
915 describe "actor rewriting" do
916 test "it fixes the actor URL property to be a proper URI" do
918 "url" => %{"href" => "http://example.com"}
921 rewritten = Transmogrifier.maybe_fix_user_object(data)
922 assert rewritten["url"] == "http://example.com"
926 describe "actor origin containment" do
927 test "it rejects activities which reference objects with bogus origins" do
929 "@context" => "https://www.w3.org/ns/activitystreams",
930 "id" => "http://mastodon.example.org/users/admin/activities/1234",
931 "actor" => "http://mastodon.example.org/users/admin",
932 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
933 "object" => "https://info.pleroma.site/activity.json",
937 assert capture_log(fn ->
938 {:error, _} = Transmogrifier.handle_incoming(data)
939 end) =~ "Object containment failed"
942 test "it rejects activities which reference objects that have an incorrect attribution (variant 1)" do
944 "@context" => "https://www.w3.org/ns/activitystreams",
945 "id" => "http://mastodon.example.org/users/admin/activities/1234",
946 "actor" => "http://mastodon.example.org/users/admin",
947 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
948 "object" => "https://info.pleroma.site/activity2.json",
952 assert capture_log(fn ->
953 {:error, _} = Transmogrifier.handle_incoming(data)
954 end) =~ "Object containment failed"
957 test "it rejects activities which reference objects that have an incorrect attribution (variant 2)" do
959 "@context" => "https://www.w3.org/ns/activitystreams",
960 "id" => "http://mastodon.example.org/users/admin/activities/1234",
961 "actor" => "http://mastodon.example.org/users/admin",
962 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
963 "object" => "https://info.pleroma.site/activity3.json",
967 assert capture_log(fn ->
968 {:error, _} = Transmogrifier.handle_incoming(data)
969 end) =~ "Object containment failed"
973 describe "reserialization" do
974 test "successfully reserializes a message with inReplyTo == nil" do
978 "@context" => "https://www.w3.org/ns/activitystreams",
979 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
983 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
988 "attributedTo" => user.ap_id
990 "actor" => user.ap_id
993 {:ok, activity} = Transmogrifier.handle_incoming(message)
995 {:ok, _} = Transmogrifier.prepare_outgoing(activity.data)
998 test "successfully reserializes a message with AS2 objects in IR" do
1002 "@context" => "https://www.w3.org/ns/activitystreams",
1003 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
1007 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
1012 "attributedTo" => user.ap_id,
1014 %{"name" => "#2hu", "href" => "http://example.com/2hu", "type" => "Hashtag"},
1015 %{"name" => "Bob", "href" => "http://example.com/bob", "type" => "Mention"}
1018 "actor" => user.ap_id
1021 {:ok, activity} = Transmogrifier.handle_incoming(message)
1023 {:ok, _} = Transmogrifier.prepare_outgoing(activity.data)
1027 describe "fix_explicit_addressing" do
1029 user = insert(:user)
1033 test "moves non-explicitly mentioned actors to cc", %{user: user} do
1034 explicitly_mentioned_actors = [
1035 "https://pleroma.gold/users/user1",
1036 "https://pleroma.gold/user2"
1040 "actor" => user.ap_id,
1041 "to" => explicitly_mentioned_actors ++ ["https://social.beepboop.ga/users/dirb"],
1044 Enum.map(explicitly_mentioned_actors, fn href ->
1045 %{"type" => "Mention", "href" => href}
1049 fixed_object = Transmogrifier.fix_explicit_addressing(object)
1050 assert Enum.all?(explicitly_mentioned_actors, &(&1 in fixed_object["to"]))
1051 refute "https://social.beepboop.ga/users/dirb" in fixed_object["to"]
1052 assert "https://social.beepboop.ga/users/dirb" in fixed_object["cc"]
1055 test "does not move actor's follower collection to cc", %{user: user} do
1057 "actor" => user.ap_id,
1058 "to" => [user.follower_address],
1062 fixed_object = Transmogrifier.fix_explicit_addressing(object)
1063 assert user.follower_address in fixed_object["to"]
1064 refute user.follower_address in fixed_object["cc"]
1067 test "removes recipient's follower collection from cc", %{user: user} do
1068 recipient = insert(:user)
1071 "actor" => user.ap_id,
1072 "to" => [recipient.ap_id, "https://www.w3.org/ns/activitystreams#Public"],
1073 "cc" => [user.follower_address, recipient.follower_address]
1076 fixed_object = Transmogrifier.fix_explicit_addressing(object)
1078 assert user.follower_address in fixed_object["cc"]
1079 refute recipient.follower_address in fixed_object["cc"]
1080 refute recipient.follower_address in fixed_object["to"]
1084 describe "fix_summary/1" do
1085 test "returns fixed object" do
1086 assert Transmogrifier.fix_summary(%{"summary" => nil}) == %{"summary" => ""}
1087 assert Transmogrifier.fix_summary(%{"summary" => "ok"}) == %{"summary" => "ok"}
1088 assert Transmogrifier.fix_summary(%{}) == %{"summary" => ""}
1092 describe "fix_in_reply_to/2" do
1093 setup do: clear_config([:instance, :federation_incoming_replies_max_depth])
1096 data = Poison.decode!(File.read!("test/fixtures/mastodon-post-activity.json"))
1100 test "returns not modified object when hasn't containts inReplyTo field", %{data: data} do
1101 assert Transmogrifier.fix_in_reply_to(data) == data
1104 test "returns object with inReplyToAtomUri when denied incoming reply", %{data: data} do
1105 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 0)
1108 Map.put(data["object"], "inReplyTo", "https://shitposter.club/notice/2827873")
1110 modified_object = Transmogrifier.fix_in_reply_to(object_with_reply)
1111 assert modified_object["inReplyTo"] == "https://shitposter.club/notice/2827873"
1112 assert modified_object["inReplyToAtomUri"] == "https://shitposter.club/notice/2827873"
1115 Map.put(data["object"], "inReplyTo", %{"id" => "https://shitposter.club/notice/2827873"})
1117 modified_object = Transmogrifier.fix_in_reply_to(object_with_reply)
1118 assert modified_object["inReplyTo"] == %{"id" => "https://shitposter.club/notice/2827873"}
1119 assert modified_object["inReplyToAtomUri"] == "https://shitposter.club/notice/2827873"
1122 Map.put(data["object"], "inReplyTo", ["https://shitposter.club/notice/2827873"])
1124 modified_object = Transmogrifier.fix_in_reply_to(object_with_reply)
1125 assert modified_object["inReplyTo"] == ["https://shitposter.club/notice/2827873"]
1126 assert modified_object["inReplyToAtomUri"] == "https://shitposter.club/notice/2827873"
1128 object_with_reply = Map.put(data["object"], "inReplyTo", [])
1129 modified_object = Transmogrifier.fix_in_reply_to(object_with_reply)
1130 assert modified_object["inReplyTo"] == []
1131 assert modified_object["inReplyToAtomUri"] == ""
1134 @tag capture_log: true
1135 test "returns modified object when allowed incoming reply", %{data: data} do
1140 "https://shitposter.club/notice/2827873"
1143 Pleroma.Config.put([:instance, :federation_incoming_replies_max_depth], 5)
1144 modified_object = Transmogrifier.fix_in_reply_to(object_with_reply)
1146 assert modified_object["inReplyTo"] ==
1147 "tag:shitposter.club,2017-05-05:noticeId=2827873:objectType=comment"
1149 assert modified_object["inReplyToAtomUri"] == "https://shitposter.club/notice/2827873"
1151 assert modified_object["context"] ==
1152 "tag:shitposter.club,2017-05-05:objectType=thread:nonce=3c16e9c2681f6d26"
1156 describe "fix_url/1" do
1157 test "fixes data for object when url is map" do
1161 "mimeType" => "video/mp4",
1162 "href" => "https://peede8d-46fb-ad81-2d4c2d1630e3-480.mp4"
1166 assert Transmogrifier.fix_url(object) == %{
1167 "url" => "https://peede8d-46fb-ad81-2d4c2d1630e3-480.mp4"
1171 test "fixes data for video object" do
1177 "mimeType" => "video/mp4",
1178 "href" => "https://peede8d-46fb-ad81-2d4c2d1630e3-480.mp4"
1182 "mimeType" => "video/mp4",
1183 "href" => "https://peertube46fb-ad81-2d4c2d1630e3-240.mp4"
1187 "mimeType" => "text/html",
1188 "href" => "https://peertube.-2d4c2d1630e3"
1192 "mimeType" => "text/html",
1193 "href" => "https://peertube.-2d4c2d16377-42"
1198 assert Transmogrifier.fix_url(object) == %{
1201 "href" => "https://peede8d-46fb-ad81-2d4c2d1630e3-480.mp4",
1202 "mimeType" => "video/mp4",
1207 "url" => "https://peertube.-2d4c2d1630e3"
1211 test "fixes url for not Video object" do
1217 "mimeType" => "text/html",
1218 "href" => "https://peertube.-2d4c2d1630e3"
1222 "mimeType" => "text/html",
1223 "href" => "https://peertube.-2d4c2d16377-42"
1228 assert Transmogrifier.fix_url(object) == %{
1230 "url" => "https://peertube.-2d4c2d1630e3"
1233 assert Transmogrifier.fix_url(%{"type" => "Text", "url" => []}) == %{
1239 test "retunrs not modified object" do
1240 assert Transmogrifier.fix_url(%{"type" => "Text"}) == %{"type" => "Text"}
1244 describe "get_obj_helper/2" do
1245 test "returns nil when cannot normalize object" do
1246 assert capture_log(fn ->
1247 refute Transmogrifier.get_obj_helper("test-obj-id")
1248 end) =~ "Unsupported URI scheme"
1251 @tag capture_log: true
1252 test "returns {:ok, %Object{}} for success case" do
1253 assert {:ok, %Object{}} =
1254 Transmogrifier.get_obj_helper("https://shitposter.club/notice/2827873")
1258 describe "fix_attachments/1" do
1259 test "returns not modified object" do
1260 data = Poison.decode!(File.read!("test/fixtures/mastodon-post-activity.json"))
1261 assert Transmogrifier.fix_attachments(data) == data
1264 test "returns modified object when attachment is map" do
1265 assert Transmogrifier.fix_attachments(%{
1267 "mediaType" => "video/mp4",
1268 "url" => "https://peertube.moe/stat-480.mp4"
1273 "mediaType" => "video/mp4",
1274 "type" => "Document",
1277 "href" => "https://peertube.moe/stat-480.mp4",
1278 "mediaType" => "video/mp4",
1287 test "returns modified object when attachment is list" do
1288 assert Transmogrifier.fix_attachments(%{
1290 %{"mediaType" => "video/mp4", "url" => "https://pe.er/stat-480.mp4"},
1291 %{"mimeType" => "video/mp4", "href" => "https://pe.er/stat-480.mp4"}
1296 "mediaType" => "video/mp4",
1297 "type" => "Document",
1300 "href" => "https://pe.er/stat-480.mp4",
1301 "mediaType" => "video/mp4",
1307 "mediaType" => "video/mp4",
1308 "type" => "Document",
1311 "href" => "https://pe.er/stat-480.mp4",
1312 "mediaType" => "video/mp4",
1322 describe "fix_emoji/1" do
1323 test "returns not modified object when object not contains tags" do
1324 data = Poison.decode!(File.read!("test/fixtures/mastodon-post-activity.json"))
1325 assert Transmogrifier.fix_emoji(data) == data
1328 test "returns object with emoji when object contains list tags" do
1329 assert Transmogrifier.fix_emoji(%{
1331 %{"type" => "Emoji", "name" => ":bib:", "icon" => %{"url" => "/test"}},
1332 %{"type" => "Hashtag"}
1335 "emoji" => %{"bib" => "/test"},
1337 %{"icon" => %{"url" => "/test"}, "name" => ":bib:", "type" => "Emoji"},
1338 %{"type" => "Hashtag"}
1343 test "returns object with emoji when object contains map tag" do
1344 assert Transmogrifier.fix_emoji(%{
1345 "tag" => %{"type" => "Emoji", "name" => ":bib:", "icon" => %{"url" => "/test"}}
1347 "emoji" => %{"bib" => "/test"},
1348 "tag" => %{"icon" => %{"url" => "/test"}, "name" => ":bib:", "type" => "Emoji"}
1353 describe "set_replies/1" do
1354 setup do: clear_config([:activitypub, :note_replies_output_limit], 2)
1356 test "returns unmodified object if activity doesn't have self-replies" do
1357 data = Poison.decode!(File.read!("test/fixtures/mastodon-post-activity.json"))
1358 assert Transmogrifier.set_replies(data) == data
1361 test "sets `replies` collection with a limited number of self-replies" do
1362 [user, another_user] = insert_list(2, :user)
1364 {:ok, %{id: id1} = activity} = CommonAPI.post(user, %{status: "1"})
1366 {:ok, %{id: id2} = self_reply1} =
1367 CommonAPI.post(user, %{status: "self-reply 1", in_reply_to_status_id: id1})
1369 {:ok, self_reply2} =
1370 CommonAPI.post(user, %{status: "self-reply 2", in_reply_to_status_id: id1})
1372 # Assuming to _not_ be present in `replies` due to :note_replies_output_limit is set to 2
1373 {:ok, _} = CommonAPI.post(user, %{status: "self-reply 3", in_reply_to_status_id: id1})
1376 CommonAPI.post(user, %{
1377 status: "self-reply to self-reply",
1378 in_reply_to_status_id: id2
1382 CommonAPI.post(another_user, %{
1383 status: "another user's reply",
1384 in_reply_to_status_id: id1
1387 object = Object.normalize(activity)
1388 replies_uris = Enum.map([self_reply1, self_reply2], fn a -> a.object.data["id"] end)
1390 assert %{"type" => "Collection", "items" => ^replies_uris} =
1391 Transmogrifier.set_replies(object.data)["replies"]
1395 test "take_emoji_tags/1" do
1396 user = insert(:user, %{emoji: %{"firefox" => "https://example.org/firefox.png"}})
1398 assert Transmogrifier.take_emoji_tags(user) == [
1400 "icon" => %{"type" => "Image", "url" => "https://example.org/firefox.png"},
1401 "id" => "https://example.org/firefox.png",
1402 "name" => ":firefox:",
1404 "updated" => "1970-01-01T00:00:00Z"