defmodule MobilizonWeb.Resolvers.Comment do
  @moduledoc """
  Handles the comment-related GraphQL calls.
  """

  alias Mobilizon.Events.Comment
  alias Mobilizon.Service.ActivityPub.Activity
  alias Mobilizon.Users.User

  alias MobilizonWeb.API.Comments

  require Logger

  def create_comment(_parent, %{text: comment, actor_username: username}, %{
        context: %{current_user: %User{} = _user}
      }) do
    with {:ok, %Activity{data: %{"object" => %{"type" => "Note"} = _object}},
          %Comment{} = comment} <-
           Comments.create_comment(username, comment) do
      {:ok, comment}
    end
  end

  def create_comment(_parent, _args, %{}) do
    {:error, "You are not allowed to create a comment if not connected"}
  end
end