2018-12-23 20:05:55 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-05 17:11:59 +00:00
|
|
|
defmodule Mix.Tasks.Pleroma.Relay do
|
|
|
|
use Mix.Task
|
2019-06-19 23:05:19 +00:00
|
|
|
import Mix.Pleroma
|
2019-08-03 23:17:17 +00:00
|
|
|
alias Pleroma.User
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
2018-12-05 17:11:59 +00:00
|
|
|
|
|
|
|
@shortdoc "Manages remote relays"
|
|
|
|
@moduledoc """
|
|
|
|
Manages remote relays
|
|
|
|
|
|
|
|
## Follow a remote relay
|
|
|
|
|
2018-12-07 08:41:01 +00:00
|
|
|
``mix pleroma.relay follow <relay_url>``
|
2018-12-05 17:11:59 +00:00
|
|
|
|
|
|
|
Example: ``mix pleroma.relay follow https://example.org/relay``
|
2018-12-05 18:12:23 +00:00
|
|
|
|
2018-12-05 17:11:59 +00:00
|
|
|
## Unfollow a remote relay
|
2018-12-05 18:12:23 +00:00
|
|
|
|
2018-12-05 17:11:59 +00:00
|
|
|
``mix pleroma.relay unfollow <relay_url>``
|
|
|
|
|
|
|
|
Example: ``mix pleroma.relay unfollow https://example.org/relay``
|
2019-08-03 23:17:17 +00:00
|
|
|
|
|
|
|
## List relay subscriptions
|
|
|
|
|
|
|
|
``mix pleroma.relay list``
|
2018-12-05 17:11:59 +00:00
|
|
|
"""
|
|
|
|
def run(["follow", target]) do
|
2019-06-19 23:05:19 +00:00
|
|
|
start_pleroma()
|
2018-12-06 17:01:28 +00:00
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
with {:ok, _activity} <- Relay.follow(target) do
|
2018-12-05 17:11:59 +00:00
|
|
|
# put this task to sleep to allow the genserver to push out the messages
|
|
|
|
:timer.sleep(500)
|
|
|
|
else
|
2019-06-19 23:05:19 +00:00
|
|
|
{:error, e} -> shell_error("Error while following #{target}: #{inspect(e)}")
|
2018-12-05 17:11:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run(["unfollow", target]) do
|
2019-06-19 23:05:19 +00:00
|
|
|
start_pleroma()
|
2018-12-05 17:11:59 +00:00
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
with {:ok, _activity} <- Relay.unfollow(target) do
|
2018-12-05 17:11:59 +00:00
|
|
|
# put this task to sleep to allow the genserver to push out the messages
|
|
|
|
:timer.sleep(500)
|
|
|
|
else
|
2019-06-19 23:05:19 +00:00
|
|
|
{:error, e} -> shell_error("Error while following #{target}: #{inspect(e)}")
|
2018-12-05 17:11:59 +00:00
|
|
|
end
|
|
|
|
end
|
2019-08-03 23:17:17 +00:00
|
|
|
|
|
|
|
def run(["list"]) do
|
|
|
|
start_pleroma()
|
|
|
|
|
2019-08-19 10:31:56 +00:00
|
|
|
with %User{following: following} = _user <- Relay.get_actor() do
|
|
|
|
following
|
|
|
|
|> Enum.map(fn entry -> URI.parse(entry).host end)
|
|
|
|
|> Enum.uniq()
|
|
|
|
|> Enum.each(&shell_info(&1))
|
2019-08-03 23:17:17 +00:00
|
|
|
else
|
|
|
|
e -> shell_error("Error while fetching relay subscription list: #{inspect(e)}")
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 17:11:59 +00:00
|
|
|
end
|