1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.AdminAPI.RelayController do
6 use Pleroma.Web, :controller
8 alias Pleroma.ModerationLog
9 alias Pleroma.Web.ActivityPub.Relay
10 alias Pleroma.Web.Plugs.OAuthScopesPlug
14 plug(Pleroma.Web.ApiSpec.CastAndValidate)
18 %{scopes: ["admin:write:follows"]}
19 when action in [:follow, :unfollow]
22 plug(OAuthScopesPlug, %{scopes: ["admin:read"]} when action == :index)
24 action_fallback(Pleroma.Web.AdminAPI.FallbackController)
26 defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.Admin.RelayOperation
28 def index(conn, _params) do
29 with {:ok, list} <- Relay.list() do
30 json(conn, %{relays: list})
34 def follow(%{assigns: %{user: admin}, body_params: %{relay_url: target}} = conn, _) do
35 with {:ok, _message} <- Relay.follow(target) do
36 ModerationLog.insert_log(%{action: "relay_follow", actor: admin, target: target})
38 json(conn, %{actor: target, followed_back: target in Relay.following()})
47 def unfollow(%{assigns: %{user: admin}, body_params: %{relay_url: target} = params} = conn, _) do
48 with {:ok, _message} <- Relay.unfollow(target, %{force: params[:force]}) do
49 ModerationLog.insert_log(%{action: "relay_unfollow", actor: admin, target: target})