2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-12-11 09:37:22 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.ActivityPubController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-01-24 14:37:23 +00:00
|
|
|
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Object
|
2018-12-01 22:53:10 +00:00
|
|
|
alias Pleroma.Object.Fetcher
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2017-12-11 09:37:22 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-07-17 17:34:57 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.InternalFetchActor
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ObjectView
|
2018-08-06 06:15:22 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
2018-12-29 17:21:45 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.UserView
|
2018-10-25 05:02:21 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2018-02-21 07:51:03 +00:00
|
|
|
alias Pleroma.Web.Federator
|
2017-12-11 09:37:22 +00:00
|
|
|
|
2018-02-18 11:51:35 +00:00
|
|
|
require Logger
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
action_fallback(:errors)
|
2018-02-15 19:00:43 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
plug(Pleroma.Web.FederatingPlug when action in [:inbox, :relay])
|
2019-01-29 10:12:28 +00:00
|
|
|
plug(:set_requester_reachable when action in [:inbox])
|
2018-09-08 12:02:38 +00:00
|
|
|
plug(:relay_active? when action in [:relay])
|
|
|
|
|
|
|
|
def relay_active?(conn, _) do
|
2019-05-30 08:33:58 +00:00
|
|
|
if Pleroma.Config.get([:instance, :allow_relay]) do
|
2018-09-08 12:02:38 +00:00
|
|
|
conn
|
|
|
|
else
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> render_error(:not_found, "not found")
|
|
|
|
|> halt()
|
2018-09-08 12:02:38 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-11 09:37:22 +00:00
|
|
|
def user(conn, %{"nickname" => nickname}) do
|
2017-12-11 17:21:33 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
2019-05-22 03:58:15 +00:00
|
|
|
{:ok, user} <- User.ensure_keys_present(user) do
|
2018-02-24 11:49:56 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2018-02-24 11:49:56 +00:00
|
|
|
|> json(UserView.render("user.json", %{user: user}))
|
2018-06-08 04:23:30 +00:00
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-11 17:21:33 +00:00
|
|
|
def object(conn, %{"uuid" => uuid}) do
|
|
|
|
with ap_id <- o_status_url(conn, :object, uuid),
|
2018-05-30 18:00:27 +00:00
|
|
|
%Object{} = object <- Object.get_cached_by_ap_id(ap_id),
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(object)} do
|
2018-02-24 11:49:56 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2018-02-24 11:49:56 +00:00
|
|
|
|> json(ObjectView.render("object.json", %{object: object}))
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
|
|
|
{:public?, false} ->
|
2018-06-03 17:58:59 +00:00
|
|
|
{:error, :not_found}
|
2017-12-11 17:21:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-11 22:34:32 +00:00
|
|
|
def object_likes(conn, %{"uuid" => uuid, "page" => page}) do
|
|
|
|
with ap_id <- o_status_url(conn, :object, uuid),
|
|
|
|
%Object{} = object <- Object.get_cached_by_ap_id(ap_id),
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(object)},
|
2019-01-11 22:34:32 +00:00
|
|
|
likes <- Utils.get_object_likes(object) do
|
|
|
|
{page, _} = Integer.parse(page)
|
|
|
|
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-01-11 22:34:32 +00:00
|
|
|
|> json(ObjectView.render("likes.json", ap_id, likes, page))
|
|
|
|
else
|
|
|
|
{:public?, false} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def object_likes(conn, %{"uuid" => uuid}) do
|
|
|
|
with ap_id <- o_status_url(conn, :object, uuid),
|
|
|
|
%Object{} = object <- Object.get_cached_by_ap_id(ap_id),
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(object)},
|
2019-01-11 22:34:32 +00:00
|
|
|
likes <- Utils.get_object_likes(object) do
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-01-11 22:34:32 +00:00
|
|
|
|> json(ObjectView.render("likes.json", ap_id, likes))
|
|
|
|
else
|
|
|
|
{:public?, false} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-08 22:22:15 +00:00
|
|
|
def activity(conn, %{"uuid" => uuid}) do
|
|
|
|
with ap_id <- o_status_url(conn, :activity, uuid),
|
|
|
|
%Activity{} = activity <- Activity.normalize(ap_id),
|
2019-02-22 12:29:52 +00:00
|
|
|
{_, true} <- {:public?, Visibility.is_public?(activity)} do
|
2019-01-08 22:22:15 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-01-08 22:22:15 +00:00
|
|
|
|> json(ObjectView.render("object.json", %{object: activity}))
|
|
|
|
else
|
|
|
|
{:public?, false} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-22 03:57:55 +00:00
|
|
|
# GET /relay/following
|
|
|
|
def following(%{assigns: %{relay: true}} = conn, _params) do
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-08-22 03:57:55 +00:00
|
|
|
|> json(UserView.render("following.json", %{user: Relay.get_actor()}))
|
|
|
|
end
|
|
|
|
|
2019-07-12 17:54:20 +00:00
|
|
|
def following(%{assigns: %{user: for_user}} = conn, %{"nickname" => nickname, "page" => page}) do
|
2018-03-21 17:23:27 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
2019-07-12 17:54:20 +00:00
|
|
|
{user, for_user} <- ensure_user_keys_present_and_maybe_refresh_for_user(user, for_user),
|
|
|
|
{:show_follows, true} <-
|
|
|
|
{:show_follows, (for_user && for_user == user) || !user.info.hide_follows} do
|
2018-03-21 17:23:27 +00:00
|
|
|
{page, _} = Integer.parse(page)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-21 17:23:27 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-07-12 17:54:20 +00:00
|
|
|
|> json(UserView.render("following.json", %{user: user, page: page, for: for_user}))
|
|
|
|
else
|
|
|
|
{:show_follows, _} ->
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-07-12 17:54:20 +00:00
|
|
|
|> send_resp(403, "")
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-12 17:54:20 +00:00
|
|
|
def following(%{assigns: %{user: for_user}} = conn, %{"nickname" => nickname}) do
|
2018-03-21 17:23:27 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
2019-07-12 17:54:20 +00:00
|
|
|
{user, for_user} <- ensure_user_keys_present_and_maybe_refresh_for_user(user, for_user) do
|
2018-03-21 17:23:27 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-07-12 17:54:20 +00:00
|
|
|
|> json(UserView.render("following.json", %{user: user, for: for_user}))
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-22 03:57:55 +00:00
|
|
|
# GET /relay/followers
|
|
|
|
def followers(%{assigns: %{relay: true}} = conn, _params) do
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-08-22 03:57:55 +00:00
|
|
|
|> json(UserView.render("followers.json", %{user: Relay.get_actor()}))
|
|
|
|
end
|
|
|
|
|
2019-07-12 17:54:20 +00:00
|
|
|
def followers(%{assigns: %{user: for_user}} = conn, %{"nickname" => nickname, "page" => page}) do
|
2018-03-21 17:23:27 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
2019-07-12 17:54:20 +00:00
|
|
|
{user, for_user} <- ensure_user_keys_present_and_maybe_refresh_for_user(user, for_user),
|
|
|
|
{:show_followers, true} <-
|
|
|
|
{:show_followers, (for_user && for_user == user) || !user.info.hide_followers} do
|
2018-03-21 17:23:27 +00:00
|
|
|
{page, _} = Integer.parse(page)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-21 17:23:27 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-07-12 17:54:20 +00:00
|
|
|
|> json(UserView.render("followers.json", %{user: user, page: page, for: for_user}))
|
|
|
|
else
|
|
|
|
{:show_followers, _} ->
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-07-12 17:54:20 +00:00
|
|
|
|> send_resp(403, "")
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-12 17:54:20 +00:00
|
|
|
def followers(%{assigns: %{user: for_user}} = conn, %{"nickname" => nickname}) do
|
2018-03-21 17:23:27 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
2019-07-12 17:54:20 +00:00
|
|
|
{user, for_user} <- ensure_user_keys_present_and_maybe_refresh_for_user(user, for_user) do
|
2018-03-21 17:23:27 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-07-12 17:54:20 +00:00
|
|
|
|> json(UserView.render("followers.json", %{user: user, for: for_user}))
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-29 17:01:15 +00:00
|
|
|
def outbox(conn, %{"nickname" => nickname} = params) do
|
2018-03-22 05:23:05 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname),
|
2019-05-22 03:58:15 +00:00
|
|
|
{:ok, user} <- User.ensure_keys_present(user) do
|
2018-03-22 05:23:05 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2018-12-29 17:01:15 +00:00
|
|
|
|> json(UserView.render("outbox.json", %{user: user, max_id: params["max_id"]}))
|
2018-03-22 05:23:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-25 05:02:21 +00:00
|
|
|
def inbox(%{assigns: %{valid_signature: true}} = conn, %{"nickname" => nickname} = params) do
|
2019-04-16 18:10:15 +00:00
|
|
|
with %User{} = recipient <- User.get_cached_by_nickname(nickname),
|
2019-05-01 09:09:53 +00:00
|
|
|
{:ok, %User{} = actor} <- User.get_or_fetch_by_ap_id(params["actor"]),
|
2019-04-16 18:10:15 +00:00
|
|
|
true <- Utils.recipient_in_message(recipient, actor, params),
|
|
|
|
params <- Utils.maybe_splice_recipient(recipient.ap_id, params) do
|
2019-01-28 15:17:17 +00:00
|
|
|
Federator.incoming_ap_doc(params)
|
2018-10-25 05:02:21 +00:00
|
|
|
json(conn, "ok")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-12 09:17:50 +00:00
|
|
|
def inbox(%{assigns: %{valid_signature: true}} = conn, params) do
|
2019-01-28 15:17:17 +00:00
|
|
|
Federator.incoming_ap_doc(params)
|
2018-02-21 07:51:03 +00:00
|
|
|
json(conn, "ok")
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|
2018-02-15 19:00:43 +00:00
|
|
|
|
2018-09-28 00:01:54 +00:00
|
|
|
# only accept relayed Creates
|
|
|
|
def inbox(conn, %{"type" => "Create"} = params) do
|
|
|
|
Logger.info(
|
|
|
|
"Signature missing or not from author, relayed Create message, fetching object from source"
|
|
|
|
)
|
|
|
|
|
2018-12-01 22:53:10 +00:00
|
|
|
Fetcher.fetch_object_from_id(params["object"]["id"])
|
2018-09-28 00:01:54 +00:00
|
|
|
|
|
|
|
json(conn, "ok")
|
|
|
|
end
|
|
|
|
|
2018-02-18 21:40:08 +00:00
|
|
|
def inbox(conn, params) do
|
2018-02-24 17:49:09 +00:00
|
|
|
headers = Enum.into(conn.req_headers, %{})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-09-28 00:01:54 +00:00
|
|
|
if String.contains?(headers["signature"], params["actor"]) do
|
|
|
|
Logger.info(
|
|
|
|
"Signature validation error for: #{params["actor"]}, make sure you are forwarding the HTTP Host header!"
|
|
|
|
)
|
|
|
|
|
2018-02-24 17:47:08 +00:00
|
|
|
Logger.info(inspect(conn.req_headers))
|
|
|
|
end
|
|
|
|
|
2019-07-10 09:25:58 +00:00
|
|
|
json(conn, dgettext("errors", "error"))
|
2018-02-18 21:40:08 +00:00
|
|
|
end
|
2018-02-18 21:41:38 +00:00
|
|
|
|
2019-07-17 16:22:57 +00:00
|
|
|
defp represent_service_actor(%User{} = user, conn) do
|
|
|
|
with {:ok, user} <- User.ensure_keys_present(user) do
|
2018-08-06 06:11:51 +00:00
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2018-08-06 06:11:51 +00:00
|
|
|
|> json(UserView.render("user.json", %{user: user}))
|
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-17 16:22:57 +00:00
|
|
|
defp represent_service_actor(nil, _), do: {:error, :not_found}
|
|
|
|
|
|
|
|
def relay(conn, _params) do
|
|
|
|
Relay.get_actor()
|
|
|
|
|> represent_service_actor(conn)
|
|
|
|
end
|
|
|
|
|
2019-07-17 17:34:57 +00:00
|
|
|
def internal_fetch(conn, _params) do
|
|
|
|
InternalFetchActor.get_actor()
|
|
|
|
|> represent_service_actor(conn)
|
|
|
|
end
|
|
|
|
|
2019-02-04 22:58:29 +00:00
|
|
|
def whoami(%{assigns: %{user: %User{} = user}} = conn, _params) do
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-02-04 22:58:29 +00:00
|
|
|
|> json(UserView.render("user.json", %{user: user}))
|
|
|
|
end
|
|
|
|
|
|
|
|
def whoami(_conn, _params), do: {:error, :not_found}
|
|
|
|
|
2018-12-29 17:01:15 +00:00
|
|
|
def read_inbox(%{assigns: %{user: user}} = conn, %{"nickname" => nickname} = params) do
|
|
|
|
if nickname == user.nickname do
|
|
|
|
conn
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2018-12-29 17:15:28 +00:00
|
|
|
|> json(UserView.render("inbox.json", %{user: user, max_id: params["max_id"]}))
|
2018-12-29 17:01:15 +00:00
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
err =
|
|
|
|
dgettext("errors", "can't read inbox of %{nickname} as %{as_nickname}",
|
|
|
|
nickname: nickname,
|
|
|
|
as_nickname: user.nickname
|
|
|
|
)
|
|
|
|
|
2018-12-29 17:01:15 +00:00
|
|
|
conn
|
|
|
|
|> put_status(:forbidden)
|
2019-07-10 09:25:58 +00:00
|
|
|
|> json(err)
|
2018-12-29 17:01:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-01 21:16:46 +00:00
|
|
|
def handle_user_activity(user, %{"type" => "Create"} = params) do
|
|
|
|
object =
|
|
|
|
params["object"]
|
|
|
|
|> Map.merge(Map.take(params, ["to", "cc"]))
|
|
|
|
|> Map.put("attributedTo", user.ap_id())
|
|
|
|
|> Transmogrifier.fix_object()
|
|
|
|
|
|
|
|
ActivityPub.create(%{
|
|
|
|
to: params["to"],
|
|
|
|
actor: user,
|
|
|
|
context: object["context"],
|
|
|
|
object: object,
|
|
|
|
additional: Map.take(params, ["cc"])
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2019-01-01 22:19:40 +00:00
|
|
|
def handle_user_activity(user, %{"type" => "Delete"} = params) do
|
|
|
|
with %Object{} = object <- Object.normalize(params["object"]),
|
|
|
|
true <- user.info.is_moderator || user.ap_id == object.data["actor"],
|
|
|
|
{:ok, delete} <- ActivityPub.delete(object) do
|
|
|
|
{:ok, delete}
|
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Can't delete object")}
|
2019-01-01 22:19:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-08 18:22:26 +00:00
|
|
|
def handle_user_activity(user, %{"type" => "Like"} = params) do
|
|
|
|
with %Object{} = object <- Object.normalize(params["object"]),
|
|
|
|
{:ok, activity, _object} <- ActivityPub.like(user, object) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Can't like object")}
|
2019-01-08 18:22:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-01 21:16:46 +00:00
|
|
|
def handle_user_activity(_, _) do
|
2019-07-10 09:25:58 +00:00
|
|
|
{:error, dgettext("errors", "Unhandled activity type")}
|
2019-01-01 21:16:46 +00:00
|
|
|
end
|
|
|
|
|
2018-12-29 17:22:40 +00:00
|
|
|
def update_outbox(
|
2019-08-27 17:37:19 +00:00
|
|
|
%{assigns: %{user: %User{nickname: nickname} = user}} = conn,
|
2019-01-01 21:16:46 +00:00
|
|
|
%{"nickname" => nickname} = params
|
2019-08-27 17:37:19 +00:00
|
|
|
) do
|
2019-08-27 13:21:03 +00:00
|
|
|
actor = user.ap_id()
|
2018-12-29 17:21:45 +00:00
|
|
|
|
2019-08-27 13:21:03 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.drop(["id"])
|
|
|
|
|> Map.put("actor", actor)
|
|
|
|
|> Transmogrifier.fix_addressing()
|
2019-07-10 09:25:58 +00:00
|
|
|
|
2019-08-27 13:21:03 +00:00
|
|
|
with {:ok, %Activity{} = activity} <- handle_user_activity(user, params) do
|
2018-12-29 17:01:15 +00:00
|
|
|
conn
|
2019-08-27 13:21:03 +00:00
|
|
|
|> put_status(:created)
|
|
|
|
|> put_resp_header("location", activity.data["id"])
|
|
|
|
|> json(activity.data)
|
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json(message)
|
2018-12-29 17:01:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-27 13:21:03 +00:00
|
|
|
def update_outbox(%{assigns: %{user: user}} = conn, %{"nickname" => nickname} = _) do
|
|
|
|
err =
|
|
|
|
dgettext("errors", "can't update outbox of %{nickname} as %{as_nickname}",
|
|
|
|
nickname: nickname,
|
|
|
|
as_nickname: user.nickname
|
|
|
|
)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(err)
|
|
|
|
end
|
|
|
|
|
2018-06-03 17:58:59 +00:00
|
|
|
def errors(conn, {:error, :not_found}) do
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:not_found)
|
|
|
|
|> json(dgettext("errors", "Not found"))
|
2018-06-03 17:58:59 +00:00
|
|
|
end
|
|
|
|
|
2018-02-15 19:00:43 +00:00
|
|
|
def errors(conn, _e) do
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:internal_server_error)
|
|
|
|
|> json(dgettext("errors", "error"))
|
2018-02-15 19:00:43 +00:00
|
|
|
end
|
2019-01-29 10:12:28 +00:00
|
|
|
|
|
|
|
defp set_requester_reachable(%Plug.Conn{} = conn, _) do
|
|
|
|
with actor <- conn.params["actor"],
|
|
|
|
true <- is_binary(actor) do
|
|
|
|
Pleroma.Instances.set_reachable(actor)
|
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
end
|
2019-07-12 17:54:20 +00:00
|
|
|
|
|
|
|
defp ensure_user_keys_present_and_maybe_refresh_for_user(user, for_user) do
|
|
|
|
{:ok, new_user} = User.ensure_keys_present(user)
|
|
|
|
|
|
|
|
for_user =
|
|
|
|
if new_user != user and match?(%User{}, for_user) do
|
|
|
|
User.get_cached_by_nickname(for_user.nickname)
|
|
|
|
else
|
|
|
|
for_user
|
|
|
|
end
|
|
|
|
|
|
|
|
{new_user, for_user}
|
|
|
|
end
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|