2018-12-23 15:11:29 -05:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
2018-05-19 04:25:45 -04:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2018-05-25 08:51:04 -04:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-03-13 13:46:37 -04:00
|
|
|
alias Pleroma.Web.OStatus
|
2018-02-15 14:00:06 -05:00
|
|
|
alias Pleroma.Activity
|
2018-02-17 08:55:44 -05:00
|
|
|
alias Pleroma.User
|
2018-02-17 14:13:12 -05:00
|
|
|
alias Pleroma.Repo
|
2018-02-24 11:36:02 -05:00
|
|
|
alias Pleroma.Web.Websub.WebsubClientSubscription
|
2018-02-17 14:13:12 -05:00
|
|
|
|
2018-02-17 08:11:20 -05:00
|
|
|
import Pleroma.Factory
|
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-12-04 09:48:55 -05:00
|
|
|
|
2018-12-04 06:01:39 -05:00
|
|
|
setup_all do
|
|
|
|
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
2018-12-03 10:53:22 -05:00
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
describe "handle_incoming" do
|
2018-02-19 11:37:45 -05:00
|
|
|
test "it ignores an incoming notice if we already have it" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-post-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", activity.data["object"])
|
2018-02-19 11:37:45 -05:00
|
|
|
|
|
|
|
{:ok, returned_activity} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert activity == returned_activity
|
|
|
|
end
|
|
|
|
|
2018-02-21 09:22:24 -05:00
|
|
|
test "it fetches replied-to activities if we don't have them" do
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-post-activity.json")
|
|
|
|
|> Poison.decode!()
|
2018-02-21 09:22:24 -05:00
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
object =
|
|
|
|
data["object"]
|
|
|
|
|> Map.put("inReplyTo", "https://shitposter.club/notice/2827873")
|
2018-02-21 09:22:24 -05:00
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
2018-02-21 09:22:24 -05:00
|
|
|
|
|
|
|
{:ok, returned_activity} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
assert activity =
|
2019-01-21 01:14:20 -05:00
|
|
|
Activity.get_create_by_object_ap_id(
|
2018-03-30 09:01:53 -04:00
|
|
|
"tag:shitposter.club,2017-05-05:noticeId=2827873:objectType=comment"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert returned_activity.data["object"]["inReplyToAtomUri"] ==
|
|
|
|
"https://shitposter.club/notice/2827873"
|
|
|
|
|
2018-02-25 04:56:01 -05:00
|
|
|
assert returned_activity.data["object"]["inReplyToStatusId"] == activity.id
|
|
|
|
end
|
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
test "it works for incoming notices" do
|
2018-03-30 09:01:53 -04:00
|
|
|
data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()
|
2018-02-15 14:00:06 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert data["id"] ==
|
|
|
|
"http://mastodon.example.org/users/admin/statuses/99512778738411822/activity"
|
|
|
|
|
|
|
|
assert data["context"] ==
|
|
|
|
"tag:mastodon.example.org,2018-02-12:objectId=20:objectType=Conversation"
|
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
assert data["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
|
2018-03-30 09:01:53 -04:00
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
assert data["cc"] == [
|
2018-03-30 09:01:53 -04:00
|
|
|
"http://mastodon.example.org/users/admin/followers",
|
|
|
|
"http://localtesting.pleroma.lol/users/lain"
|
|
|
|
]
|
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
|
|
|
|
object = data["object"]
|
|
|
|
assert object["id"] == "http://mastodon.example.org/users/admin/statuses/99512778738411822"
|
|
|
|
|
|
|
|
assert object["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
|
2018-03-30 09:01:53 -04:00
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
assert object["cc"] == [
|
2018-03-30 09:01:53 -04:00
|
|
|
"http://mastodon.example.org/users/admin/followers",
|
|
|
|
"http://localtesting.pleroma.lol/users/lain"
|
|
|
|
]
|
|
|
|
|
2018-02-15 14:00:06 -05:00
|
|
|
assert object["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
assert object["attributedTo"] == "http://mastodon.example.org/users/admin"
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert object["context"] ==
|
|
|
|
"tag:mastodon.example.org,2018-02-12:objectId=20:objectType=Conversation"
|
|
|
|
|
2018-02-18 08:14:16 -05:00
|
|
|
assert object["sensitive"] == true
|
2018-04-22 04:01:10 -04:00
|
|
|
|
|
|
|
user = User.get_by_ap_id(object["actor"])
|
|
|
|
|
2018-11-27 12:12:03 -05:00
|
|
|
assert user.info.note_count == 1
|
2018-02-15 14:00:06 -05:00
|
|
|
end
|
2018-02-17 08:55:44 -05:00
|
|
|
|
2018-03-24 17:39:37 -04:00
|
|
|
test "it works for incoming notices with hashtags" do
|
2018-03-30 09:01:53 -04:00
|
|
|
data = File.read!("test/fixtures/mastodon-post-activity-hashtag.json") |> Poison.decode!()
|
2018-03-24 17:39:37 -04:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
assert Enum.at(data["object"]["tag"], 2) == "moo"
|
|
|
|
end
|
|
|
|
|
2018-06-18 18:11:48 -04:00
|
|
|
test "it works for incoming notices with contentMap" do
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-post-activity-contentmap.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["object"]["content"] ==
|
|
|
|
"<p><span class=\"h-card\"><a href=\"http://localtesting.pleroma.lol/users/lain\" class=\"u-url mention\">@<span>lain</span></a></span></p>"
|
|
|
|
end
|
|
|
|
|
2018-08-14 13:07:01 -04:00
|
|
|
test "it works for incoming notices with to/cc not being an array (kroeg)" do
|
|
|
|
data = File.read!("test/fixtures/kroeg-post-activity.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["object"]["content"] ==
|
|
|
|
"<p>henlo from my Psion netBook</p><p>message sent from my Psion netBook</p>"
|
|
|
|
end
|
|
|
|
|
2018-09-27 03:14:15 -04:00
|
|
|
test "it works for incoming announces with actor being inlined (kroeg)" do
|
|
|
|
data = File.read!("test/fixtures/kroeg-announce-with-inline-actor.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "https://puckipedia.com/"
|
|
|
|
end
|
2018-09-26 05:27:00 -04:00
|
|
|
|
2018-09-26 01:48:34 -04:00
|
|
|
test "it works for incoming notices with tag not being an array (kroeg)" do
|
2018-09-26 05:27:00 -04:00
|
|
|
data = File.read!("test/fixtures/kroeg-array-less-emoji.json") |> Poison.decode!()
|
2018-09-26 01:48:34 -04:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["object"]["emoji"] == %{
|
|
|
|
"icon_e_smile" => "https://puckipedia.com/forum/images/smilies/icon_e_smile.png"
|
|
|
|
}
|
2018-09-26 05:27:00 -04:00
|
|
|
|
|
|
|
data = File.read!("test/fixtures/kroeg-array-less-hashtag.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert "test" in data["object"]["tag"]
|
2018-09-26 01:48:34 -04:00
|
|
|
end
|
|
|
|
|
2018-11-01 06:27:22 -04:00
|
|
|
test "it works for incoming notices with url not being a string (prismo)" do
|
|
|
|
data = File.read!("test/fixtures/prismo-url-map.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["object"]["url"] == "https://prismo.news/posts/83"
|
|
|
|
end
|
|
|
|
|
2018-11-17 11:18:40 -05:00
|
|
|
test "it cleans up incoming notices which are not really DMs" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
to = [user.ap_id, other_user.ap_id]
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-post-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("to", to)
|
|
|
|
|> Map.put("cc", [])
|
|
|
|
|
|
|
|
object =
|
|
|
|
data["object"]
|
|
|
|
|> Map.put("to", to)
|
|
|
|
|> Map.put("cc", [])
|
|
|
|
|
|
|
|
data = Map.put(data, "object", object)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["to"] == []
|
|
|
|
assert data["cc"] == to
|
|
|
|
|
|
|
|
object = data["object"]
|
|
|
|
|
|
|
|
assert object["to"] == []
|
|
|
|
assert object["cc"] == to
|
|
|
|
end
|
|
|
|
|
2018-02-17 08:55:44 -05:00
|
|
|
test "it works for incoming follow requests" do
|
|
|
|
user = insert(:user)
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
data =
|
2018-04-21 03:43:53 -04:00
|
|
|
File.read!("test/fixtures/mastodon-follow-activity.json")
|
|
|
|
|> Poison.decode!()
|
2018-03-30 09:01:53 -04:00
|
|
|
|> Map.put("object", user.ap_id)
|
2018-02-17 08:55:44 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
assert data["type"] == "Follow"
|
|
|
|
assert data["id"] == "http://mastodon.example.org/users/admin#follows/2"
|
|
|
|
assert User.following?(User.get_by_ap_id(data["actor"]), user)
|
2018-02-17 14:13:12 -05:00
|
|
|
end
|
|
|
|
|
2018-05-19 04:25:45 -04:00
|
|
|
test "it works for incoming follow requests from hubzilla" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/hubzilla-follow-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", user.ap_id)
|
|
|
|
|> Utils.normalize_params()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "https://hubzilla.example.org/channel/kaniini"
|
|
|
|
assert data["type"] == "Follow"
|
|
|
|
assert data["id"] == "https://hubzilla.example.org/channel/kaniini#follows/2"
|
|
|
|
assert User.following?(User.get_by_ap_id(data["actor"]), user)
|
|
|
|
end
|
|
|
|
|
2018-02-17 14:13:12 -05:00
|
|
|
test "it works for incoming likes" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hello"})
|
2018-02-17 08:55:44 -05:00
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
2018-04-21 03:43:53 -04:00
|
|
|
File.read!("test/fixtures/mastodon-like.json")
|
|
|
|
|> Poison.decode!()
|
2018-03-30 09:01:53 -04:00
|
|
|
|> Map.put("object", activity.data["object"]["id"])
|
2018-02-17 14:13:12 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
assert data["type"] == "Like"
|
|
|
|
assert data["id"] == "http://mastodon.example.org/users/admin#likes/2"
|
|
|
|
assert data["object"] == activity.data["object"]["id"]
|
2018-02-17 08:55:44 -05:00
|
|
|
end
|
2018-02-17 15:57:31 -05:00
|
|
|
|
2018-05-19 09:22:43 -04:00
|
|
|
test "it returns an error for incoming unlikes wihout a like activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "leave a like pls"})
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-undo-like.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", activity.data["object"]["id"])
|
|
|
|
|
|
|
|
assert Transmogrifier.handle_incoming(data) == :error
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it works for incoming unlikes with an existing like activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "leave a like pls"})
|
|
|
|
|
|
|
|
like_data =
|
|
|
|
File.read!("test/fixtures/mastodon-like.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", activity.data["object"]["id"])
|
|
|
|
|
|
|
|
{:ok, %Activity{data: like_data, local: false}} = Transmogrifier.handle_incoming(like_data)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-undo-like.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", like_data)
|
|
|
|
|> Map.put("actor", like_data["actor"])
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
assert data["type"] == "Undo"
|
|
|
|
assert data["id"] == "http://mastodon.example.org/users/admin#likes/2/undo"
|
|
|
|
assert data["object"]["id"] == "http://mastodon.example.org/users/admin#likes/2"
|
|
|
|
end
|
|
|
|
|
2018-02-17 15:57:31 -05:00
|
|
|
test "it works for incoming announces" do
|
2018-03-30 09:01:53 -04:00
|
|
|
data = File.read!("test/fixtures/mastodon-announce.json") |> Poison.decode!()
|
2018-02-17 15:57:31 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
assert data["type"] == "Announce"
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert data["id"] ==
|
|
|
|
"http://mastodon.example.org/users/admin/statuses/99542391527669785/activity"
|
|
|
|
|
|
|
|
assert data["object"] ==
|
|
|
|
"http://mastodon.example.org/users/admin/statuses/99541947525187367"
|
2018-02-18 05:24:54 -05:00
|
|
|
|
2019-01-21 01:14:20 -05:00
|
|
|
assert Activity.get_create_by_object_ap_id(data["object"])
|
2018-02-18 05:24:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it works for incoming announces with an existing activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-announce.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", activity.data["object"]["id"])
|
2018-02-18 05:24:54 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
assert data["type"] == "Announce"
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert data["id"] ==
|
|
|
|
"http://mastodon.example.org/users/admin/statuses/99542391527669785/activity"
|
|
|
|
|
2018-02-18 05:24:54 -05:00
|
|
|
assert data["object"] == activity.data["object"]["id"]
|
|
|
|
|
2019-01-21 01:14:20 -05:00
|
|
|
assert Activity.get_create_by_object_ap_id(data["object"]).id == activity.id
|
2018-02-17 15:57:31 -05:00
|
|
|
end
|
2018-02-25 10:14:25 -05:00
|
|
|
|
2019-01-18 17:32:01 -05:00
|
|
|
test "it does not clobber the addressing on announce activities" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-announce.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", activity.data["object"]["id"])
|
|
|
|
|> Map.put("to", ["http://mastodon.example.org/users/admin/followers"])
|
|
|
|
|> Map.put("cc", [])
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["to"] == ["http://mastodon.example.org/users/admin/followers"]
|
|
|
|
end
|
|
|
|
|
2018-02-25 10:14:25 -05:00
|
|
|
test "it works for incoming update activities" do
|
2018-03-30 09:01:53 -04:00
|
|
|
data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()
|
2018-02-25 10:14:25 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
2018-03-30 09:01:53 -04:00
|
|
|
update_data = File.read!("test/fixtures/mastodon-update.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
object =
|
|
|
|
update_data["object"]
|
|
|
|
|> Map.put("actor", data["actor"])
|
|
|
|
|> Map.put("id", data["actor"])
|
2018-02-25 10:14:25 -05:00
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
update_data =
|
|
|
|
update_data
|
|
|
|
|> Map.put("actor", data["actor"])
|
|
|
|
|> Map.put("object", object)
|
2018-02-25 10:14:25 -05:00
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(update_data)
|
|
|
|
|
|
|
|
user = User.get_cached_by_ap_id(data["actor"])
|
|
|
|
assert user.name == "gargle"
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert user.avatar["url"] == [
|
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://cd.niu.moe/accounts/avatars/000/033/323/original/fd7f8ae0b3ffedc9.jpeg"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-11-27 12:12:03 -05:00
|
|
|
assert user.info.banner["url"] == [
|
2018-03-30 09:01:53 -04:00
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://cd.niu.moe/accounts/headers/000/033/323/original/850b3448fa5fd477.png"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-02-25 10:14:25 -05:00
|
|
|
assert user.bio == "<p>Some bio</p>"
|
|
|
|
end
|
2018-03-03 12:37:40 -05:00
|
|
|
|
2018-06-07 22:28:08 -04:00
|
|
|
test "it works for incoming update activities which lock the account" do
|
|
|
|
data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
update_data = File.read!("test/fixtures/mastodon-update.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
object =
|
|
|
|
update_data["object"]
|
|
|
|
|> Map.put("actor", data["actor"])
|
|
|
|
|> Map.put("id", data["actor"])
|
|
|
|
|> Map.put("manuallyApprovesFollowers", true)
|
|
|
|
|
|
|
|
update_data =
|
|
|
|
update_data
|
|
|
|
|> Map.put("actor", data["actor"])
|
|
|
|
|> Map.put("object", object)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(update_data)
|
|
|
|
|
|
|
|
user = User.get_cached_by_ap_id(data["actor"])
|
2018-11-27 12:12:03 -05:00
|
|
|
assert user.info.locked == true
|
2018-06-07 22:28:08 -04:00
|
|
|
end
|
|
|
|
|
2018-03-03 12:37:40 -05:00
|
|
|
test "it works for incoming deletes" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-delete.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|
|
|
|
object =
|
|
|
|
data["object"]
|
|
|
|
|> Map.put("id", activity.data["object"]["id"])
|
2018-03-03 12:37:40 -05:00
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
|
|
|
|> Map.put("actor", activity.data["actor"])
|
2018-03-03 12:37:40 -05:00
|
|
|
|
2018-05-26 09:07:21 -04:00
|
|
|
{:ok, %Activity{local: false}} = Transmogrifier.handle_incoming(data)
|
2018-03-03 12:37:40 -05:00
|
|
|
|
|
|
|
refute Repo.get(Activity, activity.id)
|
|
|
|
end
|
2018-05-11 15:30:47 -04:00
|
|
|
|
2018-11-17 16:22:30 -05:00
|
|
|
test "it fails for incoming deletes with spoofed origin" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-delete.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|
|
|
|
object =
|
|
|
|
data["object"]
|
|
|
|
|> Map.put("id", activity.data["object"]["id"])
|
|
|
|
|
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert Repo.get(Activity, activity.id)
|
|
|
|
end
|
|
|
|
|
2018-05-11 15:30:47 -04:00
|
|
|
test "it works for incoming unannounces with an existing notice" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
|
|
|
|
|
|
|
announce_data =
|
|
|
|
File.read!("test/fixtures/mastodon-announce.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", activity.data["object"]["id"])
|
|
|
|
|
|
|
|
{:ok, %Activity{data: announce_data, local: false}} =
|
|
|
|
Transmogrifier.handle_incoming(announce_data)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-undo-announce.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", announce_data)
|
|
|
|
|> Map.put("actor", announce_data["actor"])
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["type"] == "Undo"
|
|
|
|
assert data["object"]["type"] == "Announce"
|
|
|
|
assert data["object"]["object"] == activity.data["object"]["id"]
|
|
|
|
|
|
|
|
assert data["object"]["id"] ==
|
|
|
|
"http://mastodon.example.org/users/admin/statuses/99542391527669785/activity"
|
|
|
|
end
|
2018-05-17 23:55:00 -04:00
|
|
|
|
2018-05-21 05:00:58 -04:00
|
|
|
test "it works for incomming unfollows with an existing follow" do
|
2018-05-17 23:55:00 -04:00
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
follow_data =
|
|
|
|
File.read!("test/fixtures/mastodon-follow-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", user.ap_id)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: _, local: false}} = Transmogrifier.handle_incoming(follow_data)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-unfollow-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", follow_data)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["type"] == "Undo"
|
|
|
|
assert data["object"]["type"] == "Follow"
|
2018-05-19 21:23:52 -04:00
|
|
|
assert data["object"]["object"] == user.ap_id
|
2018-05-17 23:55:00 -04:00
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
|
|
|
|
refute User.following?(User.get_by_ap_id(data["actor"]), user)
|
|
|
|
end
|
2018-05-19 21:23:52 -04:00
|
|
|
|
|
|
|
test "it works for incoming blocks" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-block-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", user.ap_id)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["type"] == "Block"
|
|
|
|
assert data["object"] == user.ap_id
|
2018-05-20 02:15:56 -04:00
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
2018-05-19 21:23:52 -04:00
|
|
|
|
|
|
|
blocker = User.get_by_ap_id(data["actor"])
|
|
|
|
|
2018-05-20 19:45:05 -04:00
|
|
|
assert User.blocks?(blocker, user)
|
2018-05-19 21:23:52 -04:00
|
|
|
end
|
|
|
|
|
2018-06-18 20:57:57 -04:00
|
|
|
test "incoming blocks successfully tear down any follow relationship" do
|
|
|
|
blocker = insert(:user)
|
|
|
|
blocked = insert(:user)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-block-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", blocked.ap_id)
|
|
|
|
|> Map.put("actor", blocker.ap_id)
|
|
|
|
|
|
|
|
{:ok, blocker} = User.follow(blocker, blocked)
|
|
|
|
{:ok, blocked} = User.follow(blocked, blocker)
|
|
|
|
|
|
|
|
assert User.following?(blocker, blocked)
|
|
|
|
assert User.following?(blocked, blocker)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["type"] == "Block"
|
|
|
|
assert data["object"] == blocked.ap_id
|
|
|
|
assert data["actor"] == blocker.ap_id
|
|
|
|
|
|
|
|
blocker = User.get_by_ap_id(data["actor"])
|
|
|
|
blocked = User.get_by_ap_id(data["object"])
|
|
|
|
|
|
|
|
assert User.blocks?(blocker, blocked)
|
|
|
|
|
|
|
|
refute User.following?(blocker, blocked)
|
|
|
|
refute User.following?(blocked, blocker)
|
|
|
|
end
|
|
|
|
|
2018-05-21 05:00:58 -04:00
|
|
|
test "it works for incoming unblocks with an existing block" do
|
2018-05-19 21:23:52 -04:00
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
block_data =
|
|
|
|
File.read!("test/fixtures/mastodon-block-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", user.ap_id)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: _, local: false}} = Transmogrifier.handle_incoming(block_data)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-unblock-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", block_data)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
assert data["type"] == "Undo"
|
|
|
|
assert data["object"]["type"] == "Block"
|
|
|
|
assert data["object"]["object"] == user.ap_id
|
2018-05-21 05:00:58 -04:00
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
2018-05-19 21:23:52 -04:00
|
|
|
|
|
|
|
blocker = User.get_by_ap_id(data["actor"])
|
|
|
|
|
2018-05-21 05:00:58 -04:00
|
|
|
refute User.blocks?(blocker, user)
|
2018-05-19 21:23:52 -04:00
|
|
|
end
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
test "it works for incoming accepts which were pre-accepted" do
|
|
|
|
follower = insert(:user)
|
|
|
|
followed = insert(:user)
|
|
|
|
|
|
|
|
{:ok, follower} = User.follow(follower, followed)
|
|
|
|
assert User.following?(follower, followed) == true
|
|
|
|
|
2018-05-26 07:16:05 -04:00
|
|
|
{:ok, follow_activity} = ActivityPub.follow(follower, followed)
|
|
|
|
|
2018-05-25 08:51:04 -04:00
|
|
|
accept_data =
|
|
|
|
File.read!("test/fixtures/mastodon-accept-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|
2018-05-26 09:11:50 -04:00
|
|
|
object =
|
|
|
|
accept_data["object"]
|
|
|
|
|> Map.put("actor", follower.ap_id)
|
|
|
|
|> Map.put("id", follow_activity.data["id"])
|
2018-05-26 09:07:21 -04:00
|
|
|
|
2018-05-26 09:11:50 -04:00
|
|
|
accept_data = Map.put(accept_data, "object", object)
|
2018-05-25 08:51:04 -04:00
|
|
|
|
2018-05-26 08:07:46 -04:00
|
|
|
{:ok, activity} = Transmogrifier.handle_incoming(accept_data)
|
|
|
|
refute activity.local
|
|
|
|
|
|
|
|
assert activity.data["object"] == follow_activity.data["id"]
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
assert User.following?(follower, followed) == true
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it works for incoming accepts which were orphaned" do
|
|
|
|
follower = insert(:user)
|
2018-11-27 12:12:03 -05:00
|
|
|
followed = insert(:user, %{info: %User.Info{locked: true}})
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
{:ok, follow_activity} = ActivityPub.follow(follower, followed)
|
|
|
|
|
|
|
|
accept_data =
|
|
|
|
File.read!("test/fixtures/mastodon-accept-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|
|
|
|
accept_data =
|
|
|
|
Map.put(accept_data, "object", Map.put(accept_data["object"], "actor", follower.ap_id))
|
|
|
|
|
2018-05-26 08:07:46 -04:00
|
|
|
{:ok, activity} = Transmogrifier.handle_incoming(accept_data)
|
|
|
|
assert activity.data["object"] == follow_activity.data["id"]
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
assert User.following?(follower, followed) == true
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it works for incoming accepts which are referenced by IRI only" do
|
|
|
|
follower = insert(:user)
|
2018-11-27 12:12:03 -05:00
|
|
|
followed = insert(:user, %{info: %User.Info{locked: true}})
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
{:ok, follow_activity} = ActivityPub.follow(follower, followed)
|
|
|
|
|
|
|
|
accept_data =
|
|
|
|
File.read!("test/fixtures/mastodon-accept-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|> Map.put("object", follow_activity.data["id"])
|
|
|
|
|
2018-05-26 08:07:46 -04:00
|
|
|
{:ok, activity} = Transmogrifier.handle_incoming(accept_data)
|
|
|
|
assert activity.data["object"] == follow_activity.data["id"]
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
assert User.following?(follower, followed) == true
|
|
|
|
end
|
|
|
|
|
2018-05-26 07:16:05 -04:00
|
|
|
test "it fails for incoming accepts which cannot be correlated" do
|
|
|
|
follower = insert(:user)
|
2018-11-27 12:12:03 -05:00
|
|
|
followed = insert(:user, %{info: %User.Info{locked: true}})
|
2018-05-26 07:16:05 -04:00
|
|
|
|
|
|
|
accept_data =
|
|
|
|
File.read!("test/fixtures/mastodon-accept-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|
|
|
|
accept_data =
|
|
|
|
Map.put(accept_data, "object", Map.put(accept_data["object"], "actor", follower.ap_id))
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(accept_data)
|
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
refute User.following?(follower, followed) == true
|
|
|
|
end
|
|
|
|
|
2018-05-26 08:07:46 -04:00
|
|
|
test "it fails for incoming rejects which cannot be correlated" do
|
|
|
|
follower = insert(:user)
|
2018-11-27 12:12:03 -05:00
|
|
|
followed = insert(:user, %{info: %User.Info{locked: true}})
|
2018-05-26 08:07:46 -04:00
|
|
|
|
|
|
|
accept_data =
|
|
|
|
File.read!("test/fixtures/mastodon-reject-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|
|
|
|
accept_data =
|
|
|
|
Map.put(accept_data, "object", Map.put(accept_data["object"], "actor", follower.ap_id))
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(accept_data)
|
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
refute User.following?(follower, followed) == true
|
|
|
|
end
|
|
|
|
|
2018-05-25 08:51:04 -04:00
|
|
|
test "it works for incoming rejects which are orphaned" do
|
|
|
|
follower = insert(:user)
|
2018-11-27 12:12:03 -05:00
|
|
|
followed = insert(:user, %{info: %User.Info{locked: true}})
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
{:ok, follower} = User.follow(follower, followed)
|
2018-05-26 09:07:21 -04:00
|
|
|
{:ok, _follow_activity} = ActivityPub.follow(follower, followed)
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
assert User.following?(follower, followed) == true
|
|
|
|
|
|
|
|
reject_data =
|
|
|
|
File.read!("test/fixtures/mastodon-reject-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|
|
|
|
reject_data =
|
|
|
|
Map.put(reject_data, "object", Map.put(reject_data["object"], "actor", follower.ap_id))
|
|
|
|
|
2018-05-26 08:07:46 -04:00
|
|
|
{:ok, activity} = Transmogrifier.handle_incoming(reject_data)
|
|
|
|
refute activity.local
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
assert User.following?(follower, followed) == false
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it works for incoming rejects which are referenced by IRI only" do
|
|
|
|
follower = insert(:user)
|
2018-11-27 12:12:03 -05:00
|
|
|
followed = insert(:user, %{info: %User.Info{locked: true}})
|
2018-05-25 08:51:04 -04:00
|
|
|
|
|
|
|
{:ok, follower} = User.follow(follower, followed)
|
|
|
|
{:ok, follow_activity} = ActivityPub.follow(follower, followed)
|
|
|
|
|
|
|
|
assert User.following?(follower, followed) == true
|
|
|
|
|
|
|
|
reject_data =
|
|
|
|
File.read!("test/fixtures/mastodon-reject-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("actor", followed.ap_id)
|
|
|
|
|> Map.put("object", follow_activity.data["id"])
|
|
|
|
|
|
|
|
{:ok, %Activity{data: _}} = Transmogrifier.handle_incoming(reject_data)
|
|
|
|
|
|
|
|
follower = Repo.get(User, follower.id)
|
|
|
|
|
|
|
|
assert User.following?(follower, followed) == false
|
|
|
|
end
|
2018-08-22 20:55:41 -04:00
|
|
|
|
|
|
|
test "it rejects activities without a valid ID" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-follow-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Map.put("object", user.ap_id)
|
|
|
|
|> Map.put("id", "")
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(data)
|
|
|
|
end
|
2018-12-23 08:28:17 -05:00
|
|
|
|
|
|
|
test "it remaps video URLs as attachments if necessary" do
|
|
|
|
{:ok, object} =
|
|
|
|
ActivityPub.fetch_object_from_id(
|
|
|
|
"https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
|
|
|
|
)
|
|
|
|
|
|
|
|
attachment = %{
|
|
|
|
"type" => "Link",
|
|
|
|
"mediaType" => "video/mp4",
|
|
|
|
"href" =>
|
|
|
|
"https://peertube.moe/static/webseed/df5f464b-be8d-46fb-ad81-2d4c2d1630e3-480.mp4",
|
|
|
|
"mimeType" => "video/mp4",
|
|
|
|
"size" => 5_015_880,
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://peertube.moe/static/webseed/df5f464b-be8d-46fb-ad81-2d4c2d1630e3-480.mp4",
|
|
|
|
"mediaType" => "video/mp4",
|
|
|
|
"type" => "Link"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"width" => 480
|
|
|
|
}
|
|
|
|
|
|
|
|
assert object.data["url"] ==
|
|
|
|
"https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
|
|
|
|
|
|
|
|
assert object.data["attachment"] == [attachment]
|
|
|
|
end
|
2018-02-15 14:00:06 -05:00
|
|
|
end
|
2018-02-17 08:11:20 -05:00
|
|
|
|
|
|
|
describe "prepare outgoing" do
|
|
|
|
test "it turns mentions into tags" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{"status" => "hey, @#{other_user.nickname}, how are ya? #2hu"})
|
2018-02-17 08:11:20 -05:00
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
object = modified["object"]
|
|
|
|
|
2018-02-18 07:51:03 -05:00
|
|
|
expected_mention = %{
|
2018-02-17 08:11:20 -05:00
|
|
|
"href" => other_user.ap_id,
|
|
|
|
"name" => "@#{other_user.nickname}",
|
2018-02-17 08:20:53 -05:00
|
|
|
"type" => "Mention"
|
2018-02-17 08:11:20 -05:00
|
|
|
}
|
2018-02-19 04:39:03 -05:00
|
|
|
|
2018-02-18 07:51:03 -05:00
|
|
|
expected_tag = %{
|
2018-03-30 09:01:53 -04:00
|
|
|
"href" => Pleroma.Web.Endpoint.url() <> "/tags/2hu",
|
2018-02-18 07:51:03 -05:00
|
|
|
"type" => "Hashtag",
|
|
|
|
"name" => "#2hu"
|
|
|
|
}
|
2018-02-17 08:11:20 -05:00
|
|
|
|
2018-02-17 08:20:53 -05:00
|
|
|
assert Enum.member?(object["tag"], expected_tag)
|
2018-02-18 07:51:03 -05:00
|
|
|
assert Enum.member?(object["tag"], expected_mention)
|
2018-02-17 08:11:20 -05:00
|
|
|
end
|
|
|
|
|
2018-02-18 08:07:13 -05:00
|
|
|
test "it adds the sensitive property" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "#nsfw hey"})
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["sensitive"]
|
|
|
|
end
|
|
|
|
|
2018-02-18 07:58:52 -05:00
|
|
|
test "it adds the json-ld context and the conversation property" do
|
2018-02-17 08:11:20 -05:00
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
2018-11-08 10:39:38 -05:00
|
|
|
assert modified["@context"] ==
|
|
|
|
Pleroma.Web.ActivityPub.Utils.make_json_ld_header()["@context"]
|
|
|
|
|
2018-02-18 07:58:52 -05:00
|
|
|
assert modified["object"]["conversation"] == modified["context"]
|
2018-02-17 08:11:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it sets the 'attributedTo' property to the actor of the object if it doesn't have one" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "hey"})
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["actor"] == modified["object"]["attributedTo"]
|
|
|
|
end
|
2018-03-13 13:46:37 -04:00
|
|
|
|
|
|
|
test "it translates ostatus IDs to external URLs" do
|
|
|
|
incoming = File.read!("test/fixtures/incoming_note_activity.xml")
|
|
|
|
{:ok, [referent_activity]} = OStatus.handle_incoming(incoming)
|
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity, _} = CommonAPI.favorite(referent_activity.id, user)
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"] == "http://gs.example.org:4040/index.php/notice/29"
|
|
|
|
end
|
2018-03-23 11:07:02 -04:00
|
|
|
|
|
|
|
test "it translates ostatus reply_to IDs to external URLs" do
|
|
|
|
incoming = File.read!("test/fixtures/incoming_note_activity.xml")
|
|
|
|
{:ok, [referred_activity]} = OStatus.handle_incoming(incoming)
|
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
|
2018-03-30 09:01:53 -04:00
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{"status" => "HI!", "in_reply_to_status_id" => referred_activity.id})
|
|
|
|
|
2018-03-23 11:07:02 -04:00
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["inReplyTo"] == "http://gs.example.org:4040/index.php/notice/29"
|
|
|
|
end
|
2018-11-10 07:16:10 -05:00
|
|
|
|
|
|
|
test "it strips internal hashtag data" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu"})
|
|
|
|
|
|
|
|
expected_tag = %{
|
|
|
|
"href" => Pleroma.Web.Endpoint.url() <> "/tags/2hu",
|
|
|
|
"type" => "Hashtag",
|
|
|
|
"name" => "#2hu"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["tag"] == [expected_tag]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it strips internal fields" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu :moominmamma:"})
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
2019-01-12 11:52:30 -05:00
|
|
|
|
|
|
|
assert length(modified["object"]["tag"]) == 2
|
|
|
|
|
|
|
|
assert is_nil(modified["object"]["emoji"])
|
|
|
|
assert is_nil(modified["object"]["like_count"])
|
|
|
|
assert is_nil(modified["object"]["announcements"])
|
|
|
|
assert is_nil(modified["object"]["announcement_count"])
|
|
|
|
assert is_nil(modified["object"]["context_id"])
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it strips internal fields of article" do
|
|
|
|
activity = insert(:article_activity)
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
2018-11-10 07:16:10 -05:00
|
|
|
|
|
|
|
assert length(modified["object"]["tag"]) == 2
|
|
|
|
|
|
|
|
assert is_nil(modified["object"]["emoji"])
|
|
|
|
assert is_nil(modified["object"]["like_count"])
|
|
|
|
assert is_nil(modified["object"]["announcements"])
|
|
|
|
assert is_nil(modified["object"]["announcement_count"])
|
|
|
|
assert is_nil(modified["object"]["context_id"])
|
|
|
|
end
|
2019-01-09 03:22:00 -05:00
|
|
|
|
|
|
|
test "it adds like collection to object" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["likes"]["type"] == "OrderedCollection"
|
|
|
|
assert modified["object"]["likes"]["totalItems"] == 0
|
|
|
|
end
|
2018-12-23 10:55:07 -05:00
|
|
|
|
|
|
|
test "the directMessage flag is present" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "2hu :moominmamma:"})
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["directMessage"] == false
|
|
|
|
|
|
|
|
{:ok, activity} =
|
2019-01-21 11:54:11 -05:00
|
|
|
CommonAPI.post(user, %{"status" => "@#{other_user.nickname} :moominmamma:"})
|
2018-12-23 10:55:07 -05:00
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["directMessage"] == false
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
2019-01-21 11:54:11 -05:00
|
|
|
"status" => "@#{other_user.nickname} :moominmamma:",
|
2018-12-23 10:55:07 -05:00
|
|
|
"visibility" => "direct"
|
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["directMessage"] == true
|
|
|
|
end
|
2018-02-17 08:11:20 -05:00
|
|
|
end
|
2018-02-21 16:21:40 -05:00
|
|
|
|
|
|
|
describe "user upgrade" do
|
|
|
|
test "it upgrades a user to activitypub" do
|
2018-03-30 09:01:53 -04:00
|
|
|
user =
|
|
|
|
insert(:user, %{
|
|
|
|
nickname: "rye@niu.moe",
|
|
|
|
local: false,
|
|
|
|
ap_id: "https://niu.moe/users/rye",
|
|
|
|
follower_address: User.ap_followers(%User{nickname: "rye@niu.moe"})
|
|
|
|
})
|
|
|
|
|
2018-02-21 16:21:40 -05:00
|
|
|
user_two = insert(:user, %{following: [user.follower_address]})
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "test"})
|
|
|
|
{:ok, unrelated_activity} = CommonAPI.post(user_two, %{"status" => "test"})
|
2018-02-24 04:42:47 -05:00
|
|
|
assert "http://localhost:4001/users/rye@niu.moe/followers" in activity.recipients
|
2018-02-21 16:21:40 -05:00
|
|
|
|
|
|
|
user = Repo.get(User, user.id)
|
2018-11-27 12:12:03 -05:00
|
|
|
assert user.info.note_count == 1
|
2018-02-21 16:21:40 -05:00
|
|
|
|
|
|
|
{:ok, user} = Transmogrifier.upgrade_user_from_ap_id("https://niu.moe/users/rye")
|
2018-11-27 12:12:03 -05:00
|
|
|
assert user.info.ap_enabled
|
|
|
|
assert user.info.note_count == 1
|
2018-02-21 16:21:40 -05:00
|
|
|
assert user.follower_address == "https://niu.moe/users/rye/followers"
|
|
|
|
|
|
|
|
# Wait for the background task
|
|
|
|
:timer.sleep(1000)
|
|
|
|
|
|
|
|
user = Repo.get(User, user.id)
|
2018-11-27 12:12:03 -05:00
|
|
|
assert user.info.note_count == 1
|
2018-02-21 16:21:40 -05:00
|
|
|
|
|
|
|
activity = Repo.get(Activity, activity.id)
|
|
|
|
assert user.follower_address in activity.recipients
|
2018-03-30 09:01:53 -04:00
|
|
|
|
|
|
|
assert %{
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://cdn.niu.moe/accounts/avatars/000/033/323/original/fd7f8ae0b3ffedc9.jpeg"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
} = user.avatar
|
|
|
|
|
|
|
|
assert %{
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://cdn.niu.moe/accounts/headers/000/033/323/original/850b3448fa5fd477.png"
|
|
|
|
}
|
|
|
|
]
|
2018-11-27 12:12:03 -05:00
|
|
|
} = user.info.banner
|
2018-03-30 09:01:53 -04:00
|
|
|
|
2018-02-21 16:21:40 -05:00
|
|
|
refute "..." in activity.recipients
|
|
|
|
|
|
|
|
unrelated_activity = Repo.get(Activity, unrelated_activity.id)
|
|
|
|
refute user.follower_address in unrelated_activity.recipients
|
|
|
|
|
|
|
|
user_two = Repo.get(User, user_two.id)
|
|
|
|
assert user.follower_address in user_two.following
|
|
|
|
refute "..." in user_two.following
|
|
|
|
end
|
|
|
|
end
|
2018-02-24 11:36:02 -05:00
|
|
|
|
|
|
|
describe "maybe_retire_websub" do
|
|
|
|
test "it deletes all websub client subscripitions with the user as topic" do
|
|
|
|
subscription = %WebsubClientSubscription{topic: "https://niu.moe/users/rye.atom"}
|
|
|
|
{:ok, ws} = Repo.insert(subscription)
|
|
|
|
|
|
|
|
subscription = %WebsubClientSubscription{topic: "https://niu.moe/users/pasty.atom"}
|
|
|
|
{:ok, ws2} = Repo.insert(subscription)
|
|
|
|
|
|
|
|
Transmogrifier.maybe_retire_websub("https://niu.moe/users/rye")
|
|
|
|
|
|
|
|
refute Repo.get(WebsubClientSubscription, ws.id)
|
|
|
|
assert Repo.get(WebsubClientSubscription, ws2.id)
|
|
|
|
end
|
|
|
|
end
|
2018-05-19 04:06:23 -04:00
|
|
|
|
|
|
|
describe "actor rewriting" do
|
|
|
|
test "it fixes the actor URL property to be a proper URI" do
|
|
|
|
data = %{
|
|
|
|
"url" => %{"href" => "http://example.com"}
|
|
|
|
}
|
|
|
|
|
|
|
|
rewritten = Transmogrifier.maybe_fix_user_object(data)
|
|
|
|
assert rewritten["url"] == "http://example.com"
|
|
|
|
end
|
|
|
|
end
|
2018-09-01 19:33:10 -04:00
|
|
|
|
|
|
|
describe "actor origin containment" do
|
|
|
|
test "it rejects objects with a bogus origin" do
|
|
|
|
{:error, _} = ActivityPub.fetch_object_from_id("https://info.pleroma.site/activity.json")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it rejects activities which reference objects with bogus origins" do
|
|
|
|
data = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
2018-11-17 13:16:55 -05:00
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1234",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
2018-09-01 19:33:10 -04:00
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => "https://info.pleroma.site/activity.json",
|
|
|
|
"type" => "Announce"
|
|
|
|
}
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(data)
|
|
|
|
end
|
2018-11-17 13:12:11 -05:00
|
|
|
|
2018-11-17 13:24:58 -05:00
|
|
|
test "it rejects objects when attributedTo is wrong (variant 1)" do
|
2018-11-17 13:12:11 -05:00
|
|
|
{:error, _} = ActivityPub.fetch_object_from_id("https://info.pleroma.site/activity2.json")
|
|
|
|
end
|
|
|
|
|
2018-11-17 13:24:58 -05:00
|
|
|
test "it rejects activities which reference objects that have an incorrect attribution (variant 1)" do
|
2018-11-17 13:12:11 -05:00
|
|
|
data = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1234",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => "https://info.pleroma.site/activity2.json",
|
|
|
|
"type" => "Announce"
|
|
|
|
}
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(data)
|
|
|
|
end
|
2018-11-17 13:24:58 -05:00
|
|
|
|
|
|
|
test "it rejects objects when attributedTo is wrong (variant 2)" do
|
|
|
|
{:error, _} = ActivityPub.fetch_object_from_id("https://info.pleroma.site/activity3.json")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it rejects activities which reference objects that have an incorrect attribution (variant 2)" do
|
|
|
|
data = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1234",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => "https://info.pleroma.site/activity3.json",
|
|
|
|
"type" => "Announce"
|
|
|
|
}
|
|
|
|
|
|
|
|
:error = Transmogrifier.handle_incoming(data)
|
|
|
|
end
|
2018-09-01 19:33:10 -04:00
|
|
|
end
|
2018-11-17 15:07:49 -05:00
|
|
|
|
|
|
|
describe "general origin containment" do
|
|
|
|
test "contain_origin_from_id() catches obvious spoofing attempts" do
|
|
|
|
data = %{
|
|
|
|
"id" => "http://example.com/~alyssa/activities/1234.json"
|
|
|
|
}
|
|
|
|
|
|
|
|
:error =
|
|
|
|
Transmogrifier.contain_origin_from_id(
|
|
|
|
"http://example.org/~alyssa/activities/1234.json",
|
|
|
|
data
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "contain_origin_from_id() allows alternate IDs within the same origin domain" do
|
|
|
|
data = %{
|
|
|
|
"id" => "http://example.com/~alyssa/activities/1234.json"
|
|
|
|
}
|
|
|
|
|
|
|
|
:ok =
|
|
|
|
Transmogrifier.contain_origin_from_id(
|
|
|
|
"http://example.com/~alyssa/activities/1234",
|
|
|
|
data
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "contain_origin_from_id() allows matching IDs" do
|
|
|
|
data = %{
|
|
|
|
"id" => "http://example.com/~alyssa/activities/1234.json"
|
|
|
|
}
|
|
|
|
|
|
|
|
:ok =
|
|
|
|
Transmogrifier.contain_origin_from_id(
|
|
|
|
"http://example.com/~alyssa/activities/1234.json",
|
|
|
|
data
|
|
|
|
)
|
|
|
|
end
|
2018-11-17 15:20:45 -05:00
|
|
|
|
|
|
|
test "users cannot be collided through fake direction spoofing attempts" do
|
2018-12-11 07:31:52 -05:00
|
|
|
insert(:user, %{
|
|
|
|
nickname: "rye@niu.moe",
|
|
|
|
local: false,
|
|
|
|
ap_id: "https://niu.moe/users/rye",
|
|
|
|
follower_address: User.ap_followers(%User{nickname: "rye@niu.moe"})
|
|
|
|
})
|
2018-11-17 15:20:45 -05:00
|
|
|
|
|
|
|
{:error, _} = User.get_or_fetch_by_ap_id("https://n1u.moe/users/rye")
|
|
|
|
end
|
2018-11-17 15:31:20 -05:00
|
|
|
|
|
|
|
test "all objects with fake directions are rejected by the object fetcher" do
|
|
|
|
{:error, _} =
|
|
|
|
ActivityPub.fetch_and_contain_remote_object_from_id(
|
|
|
|
"https://info.pleroma.site/activity4.json"
|
|
|
|
)
|
|
|
|
end
|
2018-11-17 15:07:49 -05:00
|
|
|
end
|
2018-02-15 14:00:06 -05:00
|
|
|
end
|