1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Tasks.Pleroma.Relay do
8 alias Pleroma.Web.ActivityPub.Relay
10 @shortdoc "Manages remote relays"
11 @moduledoc File.read!("docs/administration/CLI_tasks/relay.md")
13 def run(["follow", target]) do
16 with {:ok, _activity} <- Relay.follow(target) do
17 # put this task to sleep to allow the genserver to push out the messages
20 {:error, e} -> shell_error("Error while following #{target}: #{inspect(e)}")
24 def run(["unfollow", target]) do
27 with {:ok, _activity} <- Relay.unfollow(target) do
28 # put this task to sleep to allow the genserver to push out the messages
31 {:error, e} -> shell_error("Error while following #{target}: #{inspect(e)}")
38 with {:ok, list} <- Relay.list() do
39 Enum.each(list, &print_relay_url/1)
41 {:error, e} -> shell_error("Error while fetching relay subscription list: #{inspect(e)}")
45 defp print_relay_url(%{followed_back: false} = relay) do
46 shell_info("#{relay.actor} - no Accept received (relay didn't follow back)")
49 defp print_relay_url(relay), do: shell_info(relay.actor)