diff options
author | lain <lain@soykaf.club> | 2018-02-15 20:00:43 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-02-15 20:00:43 +0100 |
commit | 5454ec6a6ccedb2647cb765251e4cef3df2fcaf3 (patch) | |
tree | 2b92d2f7de89ee5fc1bc8c0ecfb63f673d6462f0 /lib | |
parent | ef0300889db32be5e781fd2fa3a59e2d94f5eccd (diff) | |
download | pleroma-5454ec6a6ccedb2647cb765251e4cef3df2fcaf3.tar.gz pleroma-5454ec6a6ccedb2647cb765251e4cef3df2fcaf3.zip |
ActivityPubController: Handle inbox data.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub_controller.ex | 16 | ||||
-rw-r--r-- | lib/pleroma/web/activity_pub/utils.ex | 1 |
2 files changed, 12 insertions, 5 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex index 35723f75c..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,13 +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 diff --git a/lib/pleroma/web/activity_pub/utils.ex b/lib/pleroma/web/activity_pub/utils.ex index ac20a2822..b32b7240e 100644 --- a/lib/pleroma/web/activity_pub/utils.ex +++ b/lib/pleroma/web/activity_pub/utils.ex @@ -205,7 +205,6 @@ defmodule Pleroma.Web.ActivityPub.Utils do def make_create_data(params, additional) do published = params.published || make_date() - %{ "type" => "Create", "to" => params.to |> Enum.uniq, |