8d943f950f
Little fixes and tests Signed-off-by: Thomas Citharel <tcit@tcit.fr>
21 lines
497 B
Elixir
21 lines
497 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")
|
|
|
|
with {:ok, _} <- MobilizonWeb.API.Comments.create_comment(from, content) do
|
|
Mix.shell().info("Tooted")
|
|
else
|
|
{:local_actor, _} -> Mix.shell().error("Failed to toot.\nActor #{from} doesn't exist")
|
|
_ -> Mix.shell().error("Failed to toot.")
|
|
end
|
|
end
|
|
end
|