Move uploads task docs to a separate file
[akkoma] / lib / mix / tasks / pleroma / relay.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Mix.Tasks.Pleroma.Relay do
6 use Mix.Task
7 import Mix.Pleroma
8 alias Pleroma.User
9 alias Pleroma.Web.ActivityPub.Relay
10
11 @shortdoc "Manages remote relays"
12
13 def run(["follow", target]) do
14 start_pleroma()
15
16 with {:ok, _activity} <- Relay.follow(target) do
17 # put this task to sleep to allow the genserver to push out the messages
18 :timer.sleep(500)
19 else
20 {:error, e} -> shell_error("Error while following #{target}: #{inspect(e)}")
21 end
22 end
23
24 def run(["unfollow", target]) do
25 start_pleroma()
26
27 with {:ok, _activity} <- Relay.unfollow(target) do
28 # put this task to sleep to allow the genserver to push out the messages
29 :timer.sleep(500)
30 else
31 {:error, e} -> shell_error("Error while following #{target}: #{inspect(e)}")
32 end
33 end
34
35 def run(["list"]) do
36 start_pleroma()
37
38 with %User{following: following} = _user <- Relay.get_actor() do
39 following
40 |> Enum.map(fn entry -> URI.parse(entry).host end)
41 |> Enum.uniq()
42 |> Enum.each(&shell_info(&1))
43 else
44 e -> shell_error("Error while fetching relay subscription list: #{inspect(e)}")
45 end
46 end
47 end