X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Factivity_pub%2Factivity_pub_controller.ex;h=a4472a8329667614f342d788091d0ee9abd0566c;hb=5454ec6a6ccedb2647cb765251e4cef3df2fcaf3;hp=0d3e8f44cf26bb2be74de2a1587e36d409f027f3;hpb=52200998c997576c9008cbe50b0a7b9f0e6134cc;p=akkoma diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex index 0d3e8f44c..a4472a832 100644 --- a/lib/pleroma/web/activity_pub/activity_pub_controller.ex +++ b/lib/pleroma/web/activity_pub/activity_pub_controller.ex @@ -1,9 +1,11 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do use Pleroma.Web, :controller alias Pleroma.{User, Repo, Object} - alias Pleroma.Web.ActivityPub.{ObjectView, UserView} + 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 @@ -18,11 +20,19 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do end end - # TODO: Move signature failure halt into plug + # TODO: Ensure that this inbox is a recipient of the message def inbox(%{assigns: %{valid_signature: true}} = conn, params) do - with {:ok, data} <- ActivityPub.prepare_incoming(params), - {:ok, activity} <- ActivityPub.insert(data, false) 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