forked from AkkomaGang/akkoma
38 lines
1.2 KiB
Elixir
38 lines
1.2 KiB
Elixir
defmodule Pleroma.Web.ActivityPub.ActivityPubController do
|
|
use Pleroma.Web, :controller
|
|
alias Pleroma.{User, Repo, Object}
|
|
alias Pleroma.Web.ActivityPub.{ObjectView, UserView, Transmogrifier}
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
action_fallback :errors
|
|
|
|
def user(conn, %{"nickname" => nickname}) do
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
|
{:ok, user} <- Pleroma.Web.WebFinger.ensure_keys_present(user) do
|
|
json(conn, UserView.render("user.json", %{user: user}))
|
|
end
|
|
end
|
|
|
|
def object(conn, %{"uuid" => uuid}) do
|
|
with ap_id <- o_status_url(conn, :object, uuid),
|
|
%Object{} = object <- Object.get_cached_by_ap_id(ap_id) do
|
|
json(conn, ObjectView.render("object.json", %{object: object}))
|
|
end
|
|
end
|
|
|
|
# TODO: Ensure that this inbox is a recipient of the message
|
|
def inbox(%{assigns: %{valid_signature: true}} = conn, params) do
|
|
# File.write("/tmp/incoming.json", Poison.encode!(params))
|
|
with {:ok, activity} <- Transmogrifier.handle_incoming(params) do
|
|
json(conn, "ok")
|
|
else
|
|
e -> IO.inspect(e)
|
|
end
|
|
end
|
|
|
|
def errors(conn, _e) do
|
|
conn
|
|
|> put_status(500)
|
|
|> json("error")
|
|
end
|
|
end
|