2018-08-06 07:14:16 +00:00
|
|
|
defmodule Mix.Tasks.RelayUnfollow do
|
|
|
|
use Mix.Task
|
|
|
|
require Logger
|
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
|
|
|
|
2018-11-08 14:28:50 +00:00
|
|
|
@moduledoc """
|
2018-11-08 14:21:09 +00:00
|
|
|
Unfollows a remote relay
|
|
|
|
|
|
|
|
Usage: ``mix relay_follow <relay_url>``
|
|
|
|
|
|
|
|
Example: ``mix relay_follow https://example.org/relay``
|
|
|
|
"""
|
2018-08-06 07:14:16 +00:00
|
|
|
def run([target]) do
|
|
|
|
Mix.Task.run("app.start")
|
|
|
|
|
2018-11-10 14:31:37 +00:00
|
|
|
{status, message} = Relay.unfollow(target)
|
|
|
|
|
|
|
|
if :ok == status do
|
2018-11-10 14:08:03 +00:00
|
|
|
# put this task to sleep to allow the genserver to push out the messages
|
|
|
|
:timer.sleep(500)
|
|
|
|
else
|
2018-11-10 14:31:37 +00:00
|
|
|
Mix.puts("Error: #{inspect(message)}")
|
2018-11-10 14:08:03 +00:00
|
|
|
end
|
2018-08-06 07:14:16 +00:00
|
|
|
end
|
|
|
|
end
|