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(true) do
39 list |> Enum.each(&shell_info(&1))
41 {:error, e} -> shell_error("Error while fetching relay subscription list: #{inspect(e)}")