2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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
|
2019-09-12 18:37:36 +00:00
|
|
|
alias Pleroma.Delivery
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Object
|
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
|
2020-04-24 11:59:48 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Pipeline
|
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
|
2020-05-07 19:52:45 +00:00
|
|
|
alias Pleroma.Web.ControllerHelper
|
2020-05-22 14:15:29 +00:00
|
|
|
alias Pleroma.Web.Endpoint
|
2018-02-21 07:51:03 +00:00
|
|
|
alias Pleroma.Web.Federator
|
2020-06-24 10:07:47 +00:00
|
|
|
alias Pleroma.Web.Plugs.EnsureAuthenticatedPlug
|
|
|
|
alias Pleroma.Web.Plugs.FederatingPlug
|
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
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
@federating_only_actions [:internal_fetch, :relay, :relay_following, :relay_followers]
|
2020-03-03 19:22:02 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
plug(FederatingPlug when action in @federating_only_actions)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
EnsureAuthenticatedPlug,
|
2020-04-30 15:19:51 +00:00
|
|
|
[unless_func: &FederatingPlug.federating?/1] when action not in @federating_only_actions
|
2020-03-09 17:51:44 +00:00
|
|
|
)
|
|
|
|
|
2020-05-02 15:28:04 +00:00
|
|
|
# Note: :following and :followers must be served even without authentication (as via :api)
|
2020-03-09 17:51:44 +00:00
|
|
|
plug(
|
|
|
|
EnsureAuthenticatedPlug
|
2020-05-02 15:28:04 +00:00
|
|
|
when action in [:read_inbox, :update_outbox, :whoami, :upload_media]
|
2020-03-09 17:51:44 +00:00
|
|
|
)
|
2020-03-03 19:22:02 +00:00
|
|
|
|
2020-06-16 13:11:45 +00:00
|
|
|
plug(Majic.Plug, [pool: Pleroma.MajicPool] when action in [:upload_media])
|
|
|
|
|
2019-09-12 18:37:36 +00:00
|
|
|
plug(
|
2020-06-24 08:08:43 +00:00
|
|
|
Pleroma.Web.Plugs.Cache,
|
2019-09-13 10:09:46 +00:00
|
|
|
[query_params: false, tracking_fun: &__MODULE__.track_object_fetch/2]
|
2019-09-12 18:37:36 +00:00
|
|
|
when action in [:activity, :object]
|
|
|
|
)
|
|
|
|
|
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])
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
defp 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
|
2022-08-26 16:30:43 +00:00
|
|
|
with %User{local: true} = user <- User.get_cached_by_nickname(nickname) 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")
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("user.json", %{user: user})
|
2018-06-08 04:23:30 +00:00
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
2019-11-25 14:19:33 +00:00
|
|
|
%{local: false} -> {:error, :not_found}
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-21 16:45:42 +00:00
|
|
|
def object(%{assigns: assigns} = conn, _) do
|
2020-05-22 14:15:29 +00:00
|
|
|
with ap_id <- Endpoint.url() <> conn.request_path,
|
2018-05-30 18:00:27 +00:00
|
|
|
%Object{} = object <- Object.get_cached_by_ap_id(ap_id),
|
2021-01-21 16:45:42 +00:00
|
|
|
user <- Map.get(assigns, :user, nil),
|
|
|
|
{_, true} <- {:visible?, Visibility.visible_for_user?(object, user)} do
|
2018-02-24 11:49:56 +00:00
|
|
|
conn
|
2022-06-22 15:25:05 +00:00
|
|
|
|> maybe_skip_cache(user)
|
2019-09-12 18:37:36 +00:00
|
|
|
|> assign(:tracking_fun_data, object.id)
|
2019-09-09 18:53:08 +00:00
|
|
|
|> set_cache_ttl_for(object)
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-09-09 18:53:08 +00:00
|
|
|
|> put_view(ObjectView)
|
|
|
|
|> render("object.json", object: object)
|
2018-05-30 18:00:27 +00:00
|
|
|
else
|
2021-01-21 16:45:42 +00:00
|
|
|
{:visible?, false} -> {:error, :not_found}
|
|
|
|
nil -> {:error, :not_found}
|
2017-12-11 17:21:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-13 15:25:15 +00:00
|
|
|
def track_object_fetch(conn, nil), do: conn
|
|
|
|
|
2019-09-12 18:37:36 +00:00
|
|
|
def track_object_fetch(conn, object_id) do
|
2019-09-13 10:09:56 +00:00
|
|
|
with %{assigns: %{user: %User{id: user_id}}} <- conn do
|
|
|
|
Delivery.create(object_id, user_id)
|
2019-09-12 18:37:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2021-01-21 16:45:42 +00:00
|
|
|
def activity(%{assigns: assigns} = conn, _) do
|
2020-05-22 15:06:12 +00:00
|
|
|
with ap_id <- Endpoint.url() <> conn.request_path,
|
2019-01-08 22:22:15 +00:00
|
|
|
%Activity{} = activity <- Activity.normalize(ap_id),
|
2021-01-21 16:45:42 +00:00
|
|
|
{_, true} <- {:local?, activity.local},
|
|
|
|
user <- Map.get(assigns, :user, nil),
|
|
|
|
{_, true} <- {:visible?, Visibility.visible_for_user?(activity, user)} do
|
2019-01-08 22:22:15 +00:00
|
|
|
conn
|
2022-06-22 15:25:05 +00:00
|
|
|
|> maybe_skip_cache(user)
|
2019-09-12 18:37:36 +00:00
|
|
|
|> maybe_set_tracking_data(activity)
|
2019-09-09 18:53:08 +00:00
|
|
|
|> set_cache_ttl_for(activity)
|
2019-08-24 14:17:17 +00:00
|
|
|
|> put_resp_content_type("application/activity+json")
|
2019-09-09 18:53:08 +00:00
|
|
|
|> put_view(ObjectView)
|
|
|
|
|> render("object.json", object: activity)
|
2019-01-08 22:22:15 +00:00
|
|
|
else
|
2021-01-21 16:45:42 +00:00
|
|
|
{:visible?, false} -> {:error, :not_found}
|
|
|
|
{:local?, false} -> {:error, :not_found}
|
2019-09-09 18:53:08 +00:00
|
|
|
nil -> {:error, :not_found}
|
2019-01-08 22:22:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-12 18:37:36 +00:00
|
|
|
defp maybe_set_tracking_data(conn, %Activity{data: %{"type" => "Create"}} = activity) do
|
2021-01-04 12:38:31 +00:00
|
|
|
object_id = Object.normalize(activity, fetch: false).id
|
2019-09-12 18:37:36 +00:00
|
|
|
assign(conn, :tracking_fun_data, object_id)
|
|
|
|
end
|
|
|
|
|
2019-09-13 15:23:03 +00:00
|
|
|
defp maybe_set_tracking_data(conn, _activity), do: conn
|
2019-09-12 18:37:36 +00:00
|
|
|
|
2019-09-09 18:53:08 +00:00
|
|
|
defp set_cache_ttl_for(conn, %Activity{object: object}) do
|
|
|
|
set_cache_ttl_for(conn, object)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp set_cache_ttl_for(conn, entity) do
|
|
|
|
ttl =
|
|
|
|
case entity do
|
|
|
|
%Object{data: %{"type" => "Question"}} ->
|
|
|
|
Pleroma.Config.get([:web_cache_ttl, :activity_pub_question])
|
|
|
|
|
|
|
|
%Object{} ->
|
|
|
|
Pleroma.Config.get([:web_cache_ttl, :activity_pub])
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
assign(conn, :cache_ttl, ttl)
|
|
|
|
end
|
|
|
|
|
2022-06-22 15:25:05 +00:00
|
|
|
def maybe_skip_cache(conn, user) do
|
|
|
|
if user do
|
|
|
|
conn
|
|
|
|
|> assign(:skip_cache, true)
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-22 03:57:55 +00:00
|
|
|
# GET /relay/following
|
2020-03-09 17:51:44 +00:00
|
|
|
def relay_following(conn, _params) do
|
|
|
|
with %{halted: false} = conn <- FederatingPlug.call(conn, []) do
|
2020-03-05 18:19:21 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/activity+json")
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("following.json", %{user: Relay.get_actor()})
|
|
|
|
end
|
2019-08-22 03:57:55 +00:00
|
|
|
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
|
|
|
{:show_follows, true} <-
|
2019-10-16 18:59:21 +00:00
|
|
|
{:show_follows, (for_user && for_user == user) || !user.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-09-23 22:33:59 +00:00
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("following.json", %{user: user, page: page, for: for_user})
|
2019-07-12 17:54:20 +00:00
|
|
|
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
|
2022-08-26 16:30:43 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) 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-09-23 22:33:59 +00:00
|
|
|
|> put_view(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
|
2020-03-09 17:51:44 +00:00
|
|
|
def relay_followers(conn, _params) do
|
|
|
|
with %{halted: false} = conn <- FederatingPlug.call(conn, []) do
|
2020-03-05 18:19:21 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/activity+json")
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("followers.json", %{user: Relay.get_actor()})
|
|
|
|
end
|
2019-08-22 03:57:55 +00:00
|
|
|
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
|
|
|
{:show_followers, true} <-
|
2019-10-16 18:59:21 +00:00
|
|
|
{:show_followers, (for_user && for_user == user) || !user.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-09-23 22:33:59 +00:00
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("followers.json", %{user: user, page: page, for: for_user})
|
2019-07-12 17:54:20 +00:00
|
|
|
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
|
2022-08-26 16:30:43 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) 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-09-23 22:33:59 +00:00
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("followers.json", %{user: user, for: for_user})
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
def outbox(
|
|
|
|
%{assigns: %{user: for_user}} = conn,
|
|
|
|
%{"nickname" => nickname, "page" => page?} = params
|
|
|
|
)
|
2019-09-25 12:59:04 +00:00
|
|
|
when page? in [true, "true"] do
|
2022-08-26 16:30:43 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
2020-05-08 01:05:56 +00:00
|
|
|
# "include_poll_votes" is a hack because postgres generates inefficient
|
|
|
|
# queries when filtering by 'Answer', poll votes will be hidden by the
|
|
|
|
# visibility filter in this case anyway
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.drop(["nickname", "page"])
|
|
|
|
|> Map.put("include_poll_votes", true)
|
2020-06-05 19:18:29 +00:00
|
|
|
|> Map.new(fn {k, v} -> {String.to_existing_atom(k), v} end)
|
2020-05-08 01:05:56 +00:00
|
|
|
|
|
|
|
activities = ActivityPub.fetch_user_activities(user, for_user, params)
|
2019-09-25 13:20:48 +00:00
|
|
|
|
2019-09-25 12:59:04 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/activity+json")
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("activity_collection_page.json", %{
|
|
|
|
activities: activities,
|
2020-05-08 01:05:56 +00:00
|
|
|
pagination: ControllerHelper.get_pagination_fields(conn, activities),
|
2019-09-25 12:59:04 +00:00
|
|
|
iri: "#{user.ap_id}/outbox"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def outbox(conn, %{"nickname" => nickname}) do
|
2022-08-26 16:30:43 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) 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")
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(UserView)
|
2019-09-25 12:59:04 +00:00
|
|
|
|> render("activity_collection.json", %{iri: "#{user.ap_id}/outbox"})
|
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
|
|
|
|
2021-11-09 23:37:27 +00:00
|
|
|
def inbox(%{assigns: %{valid_signature: false}} = conn, _params) do
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json("Invalid HTTP Signature")
|
|
|
|
end
|
|
|
|
|
|
|
|
def inbox(conn, _params) do
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json("error, missing HTTP Signature")
|
|
|
|
end
|
|
|
|
|
2019-07-17 16:22:57 +00:00
|
|
|
defp represent_service_actor(%User{} = user, conn) do
|
2022-08-26 16:30:43 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/activity+json")
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("user.json", %{user: user})
|
2018-08-06 06:11:51 +00:00
|
|
|
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-09-23 16:54:23 +00:00
|
|
|
@doc "Returns the authenticated user's ActivityPub User object or a 404 Not Found if non-authenticated"
|
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-09-23 22:33:59 +00:00
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("user.json", %{user: user})
|
2019-02-04 22:58:29 +00:00
|
|
|
end
|
|
|
|
|
2019-09-09 18:11:57 +00:00
|
|
|
def read_inbox(
|
2020-03-03 19:22:02 +00:00
|
|
|
%{assigns: %{user: %User{nickname: nickname} = user}} = conn,
|
2019-09-25 12:59:04 +00:00
|
|
|
%{"nickname" => nickname, "page" => page?} = params
|
|
|
|
)
|
|
|
|
when page? in [true, "true"] do
|
2020-05-08 01:05:56 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.drop(["nickname", "page"])
|
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|> Map.put("user", user)
|
2020-06-05 19:18:29 +00:00
|
|
|
|> Map.new(fn {k, v} -> {String.to_existing_atom(k), v} end)
|
2020-05-08 01:05:56 +00:00
|
|
|
|
2019-09-25 13:26:47 +00:00
|
|
|
activities =
|
2020-05-08 01:05:56 +00:00
|
|
|
[user.ap_id | User.following(user)]
|
|
|
|
|> ActivityPub.fetch_activities(params)
|
|
|
|
|> Enum.reverse()
|
2019-09-25 13:26:47 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/activity+json")
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("activity_collection_page.json", %{
|
|
|
|
activities: activities,
|
2020-05-08 01:05:56 +00:00
|
|
|
pagination: ControllerHelper.get_pagination_fields(conn, activities),
|
2019-09-25 13:26:47 +00:00
|
|
|
iri: "#{user.ap_id}/inbox"
|
|
|
|
})
|
2019-09-25 12:59:04 +00:00
|
|
|
end
|
|
|
|
|
2020-03-03 19:22:02 +00:00
|
|
|
def read_inbox(%{assigns: %{user: %User{nickname: nickname} = user}} = conn, %{
|
2019-09-25 12:59:04 +00:00
|
|
|
"nickname" => nickname
|
|
|
|
}) do
|
2022-08-26 16:30:43 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/activity+json")
|
|
|
|
|> put_view(UserView)
|
|
|
|
|> render("activity_collection.json", %{iri: "#{user.ap_id}/inbox"})
|
2019-09-09 18:11:57 +00:00
|
|
|
end
|
2019-07-10 09:25:58 +00:00
|
|
|
|
2020-03-03 19:22:02 +00:00
|
|
|
def read_inbox(%{assigns: %{user: %User{nickname: as_nickname}}} = conn, %{
|
2019-09-09 18:11:57 +00:00
|
|
|
"nickname" => nickname
|
|
|
|
}) do
|
|
|
|
err =
|
|
|
|
dgettext("errors", "can't read inbox of %{nickname} as %{as_nickname}",
|
|
|
|
nickname: nickname,
|
|
|
|
as_nickname: as_nickname
|
|
|
|
)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(err)
|
2018-12-29 17:01:15 +00:00
|
|
|
end
|
|
|
|
|
2020-09-18 12:22:27 +00:00
|
|
|
defp fix_user_message(%User{ap_id: actor}, %{"type" => "Create", "object" => object} = activity)
|
|
|
|
when is_map(object) do
|
|
|
|
length =
|
|
|
|
[object["content"], object["summary"], object["name"]]
|
|
|
|
|> Enum.filter(&is_binary(&1))
|
|
|
|
|> Enum.join("")
|
|
|
|
|> String.length()
|
2020-07-07 05:06:29 +00:00
|
|
|
|
2020-09-18 12:22:27 +00:00
|
|
|
limit = Pleroma.Config.get([:instance, :limit])
|
|
|
|
|
|
|
|
if length < limit do
|
2020-07-07 05:06:29 +00:00
|
|
|
object =
|
|
|
|
object
|
2020-09-18 12:22:27 +00:00
|
|
|
|> Transmogrifier.strip_internal_fields()
|
|
|
|
|> Map.put("attributedTo", actor)
|
|
|
|
|> Map.put("actor", actor)
|
|
|
|
|> Map.put("id", Utils.generate_object_id())
|
2019-01-01 21:16:46 +00:00
|
|
|
|
2020-09-18 12:22:27 +00:00
|
|
|
{:ok, Map.put(activity, "object", object)}
|
2019-01-01 22:19:40 +00:00
|
|
|
else
|
2020-09-18 12:22:27 +00:00
|
|
|
{:error,
|
|
|
|
dgettext(
|
|
|
|
"errors",
|
|
|
|
"Character limit (%{limit} characters) exceeded, contains %{length} characters",
|
|
|
|
limit: limit,
|
|
|
|
length: length
|
|
|
|
)}
|
2019-01-01 22:19:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-18 12:22:27 +00:00
|
|
|
defp fix_user_message(
|
|
|
|
%User{ap_id: actor} = user,
|
|
|
|
%{"type" => "Delete", "object" => object} = activity
|
|
|
|
) do
|
|
|
|
with {_, %Object{data: object_data}} <- {:normalize, Object.normalize(object, fetch: false)},
|
|
|
|
{_, true} <- {:permission, user.is_moderator || actor == object_data["actor"]} do
|
2019-01-08 18:22:26 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
2020-09-18 12:22:27 +00:00
|
|
|
{:normalize, _} ->
|
|
|
|
{:error, "No such object found"}
|
|
|
|
|
|
|
|
{:permission, _} ->
|
|
|
|
{:forbidden, "You can't delete this object"}
|
2019-01-08 18:22:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-18 12:22:27 +00:00
|
|
|
defp fix_user_message(%User{}, activity) do
|
|
|
|
{:ok, activity}
|
2019-01-01 21:16:46 +00:00
|
|
|
end
|
|
|
|
|
2018-12-29 17:22:40 +00:00
|
|
|
def update_outbox(
|
2020-09-18 12:22:27 +00:00
|
|
|
%{assigns: %{user: %User{nickname: nickname, ap_id: actor} = 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
|
|
|
params =
|
|
|
|
params
|
2020-09-18 12:22:27 +00:00
|
|
|
|> Map.drop(["nickname"])
|
|
|
|
|> Map.put("id", Utils.generate_activity_id())
|
2019-08-27 13:21:03 +00:00
|
|
|
|> Map.put("actor", actor)
|
2019-07-10 09:25:58 +00:00
|
|
|
|
2020-09-18 12:22:27 +00:00
|
|
|
with {:ok, params} <- fix_user_message(user, params),
|
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(params, local: true),
|
|
|
|
%Activity{data: activity_data} <- Activity.normalize(activity) do
|
2018-12-29 17:01:15 +00:00
|
|
|
conn
|
2019-08-27 13:21:03 +00:00
|
|
|
|> put_status(:created)
|
2020-09-18 12:22:27 +00:00
|
|
|
|> put_resp_header("location", activity_data["id"])
|
|
|
|
|> json(activity_data)
|
2019-08-27 13:21:03 +00:00
|
|
|
else
|
2020-09-18 12:22:27 +00:00
|
|
|
{:forbidden, message} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(message)
|
|
|
|
|
2019-08-27 13:21:03 +00:00
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json(message)
|
2020-09-18 12:22:27 +00:00
|
|
|
|
|
|
|
e ->
|
|
|
|
Logger.warn(fn -> "AP C2S: #{inspect(e)}" end)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json("Bad Request")
|
2018-12-29 17:01:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-03 19:22:02 +00:00
|
|
|
def update_outbox(%{assigns: %{user: %User{} = user}} = conn, %{"nickname" => nickname}) do
|
2019-08-27 13:21:03 +00:00
|
|
|
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
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
defp errors(conn, {:error, :not_found}) do
|
2018-06-03 17:58:59 +00:00
|
|
|
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
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
defp errors(conn, _e) do
|
2018-02-15 19:00:43 +00:00
|
|
|
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
|
|
|
|
2020-03-03 19:22:02 +00:00
|
|
|
def upload_media(%{assigns: %{user: %User{} = user}} = conn, %{"file" => file} = data) do
|
2019-09-23 17:16:36 +00:00
|
|
|
with {:ok, object} <-
|
|
|
|
ActivityPub.upload(
|
|
|
|
file,
|
|
|
|
actor: User.ap_id(user),
|
|
|
|
description: Map.get(data, "description")
|
|
|
|
) do
|
|
|
|
Logger.debug(inspect(object))
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_status(:created)
|
|
|
|
|> json(object.data)
|
|
|
|
end
|
|
|
|
end
|
2021-02-03 13:09:28 +00:00
|
|
|
|
|
|
|
def pinned(conn, %{"nickname" => nickname}) do
|
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nickname) do
|
|
|
|
conn
|
|
|
|
|> put_resp_header("content-type", "application/activity+json")
|
|
|
|
|> json(UserView.render("featured.json", %{user: user}))
|
|
|
|
end
|
|
|
|
end
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|