2020-05-22 13:52:26 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-05-22 13:52:26 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.AdminAPI.RelayController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.ModerationLog
|
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
2020-06-24 10:07:47 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
2020-05-22 13:52:26 +00:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2021-02-17 18:37:23 +00:00
|
|
|
%{scopes: ["admin:write:follows"]}
|
2020-05-22 13:52:26 +00:00
|
|
|
when action in [:follow, :unfollow]
|
|
|
|
)
|
|
|
|
|
2021-02-17 18:37:23 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["admin:read"]} when action == :index)
|
2020-05-22 13:52:26 +00:00
|
|
|
|
|
|
|
action_fallback(Pleroma.Web.AdminAPI.FallbackController)
|
|
|
|
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.Admin.RelayOperation
|
|
|
|
|
|
|
|
def index(conn, _params) do
|
|
|
|
with {:ok, list} <- Relay.list() do
|
|
|
|
json(conn, %{relays: list})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def follow(%{assigns: %{user: admin}, body_params: %{relay_url: target}} = conn, _) do
|
|
|
|
with {:ok, _message} <- Relay.follow(target) do
|
2020-09-28 06:16:42 +00:00
|
|
|
ModerationLog.insert_log(%{action: "relay_follow", actor: admin, target: target})
|
2020-05-22 13:52:26 +00:00
|
|
|
|
2020-08-18 15:21:34 +00:00
|
|
|
json(conn, %{actor: target, followed_back: target in Relay.following()})
|
2020-05-22 13:52:26 +00:00
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
|
|
|
|> json(target)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-28 06:16:42 +00:00
|
|
|
def unfollow(%{assigns: %{user: admin}, body_params: %{relay_url: target} = params} = conn, _) do
|
|
|
|
with {:ok, _message} <- Relay.unfollow(target, %{force: params[:force]}) do
|
|
|
|
ModerationLog.insert_log(%{action: "relay_unfollow", actor: admin, target: target})
|
2020-05-22 13:52:26 +00:00
|
|
|
|
|
|
|
json(conn, target)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
|
|
|
|> json(target)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|