5fbaf42cad
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
25 lines
520 B
Elixir
25 lines
520 B
Elixir
defmodule Mix.Tasks.Mobilizon.Toot do
|
|
@moduledoc """
|
|
Creates a bot from a source
|
|
"""
|
|
|
|
use Mix.Task
|
|
require Logger
|
|
|
|
@shortdoc "Toot to an user"
|
|
def run([from, content]) do
|
|
Mix.Task.run("app.start")
|
|
|
|
case MobilizonWeb.API.Comments.create_comment(from, content) do
|
|
{:ok, _, _} ->
|
|
Mix.shell().info("Tooted")
|
|
|
|
{:local_actor, _, _} ->
|
|
Mix.shell().error("Failed to toot.\nActor #{from} doesn't exist")
|
|
|
|
_ ->
|
|
Mix.shell().error("Failed to toot.")
|
|
end
|
|
end
|
|
end
|