forked from AkkomaGang/akkoma
ActivityPub: Fetch an object from an id.
This commit is contained in:
parent
0f2ad25a7b
commit
5e36b750c1
2 changed files with 19 additions and 0 deletions
|
@ -272,4 +272,17 @@ def publish(actor, activity) do
|
|||
@httpoison.post(inbox, Poison.encode!(data), [{"Content-Type", "application/activity+json"}, {"signature", signature}])
|
||||
end
|
||||
end
|
||||
|
||||
def fetch_object_from_id(id) do
|
||||
if object = Object.get_cached_by_ap_id(id) do
|
||||
{:ok, object}
|
||||
else
|
||||
with {:ok, %{body: body, status_code: code}} when code in 200..299 <- @httpoison.get(id, [Accept: "application/activity+json"], follow_redirect: true, timeout: 10000, recv_timeout: 20000),
|
||||
{:ok, data} <- Poison.decode(body),
|
||||
data <- Transmogrifier.fix_object(data),
|
||||
%User{} <- User.get_or_fetch_by_ap_id(data["attributedTo"]) do
|
||||
Object.create(data)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -265,6 +265,12 @@ test "fetches the latest Follow activity" do
|
|||
end
|
||||
end
|
||||
|
||||
describe "fetching an object" do
|
||||
test "it fetches an existing object" do
|
||||
{:ok, object} = ActivityPub.fetch_object_from_id("http://mastodon.example.org/@admin/99541947525187367")
|
||||
end
|
||||
end
|
||||
|
||||
describe "following / unfollowing" do
|
||||
test "creates a follow activity" do
|
||||
follower = insert(:user)
|
||||
|
|
Loading…
Reference in a new issue