2020-01-26 19:34:25 +00:00
|
|
|
defmodule Mobilizon.GraphQL.Schema.AdminType do
|
2019-07-23 11:49:22 +00:00
|
|
|
@moduledoc """
|
2019-09-22 14:26:23 +00:00
|
|
|
Schema representation for ActionLog.
|
2019-07-23 11:49:22 +00:00
|
|
|
"""
|
2019-09-22 14:26:23 +00:00
|
|
|
|
2019-07-23 11:49:22 +00:00
|
|
|
use Absinthe.Schema.Notation
|
2019-09-22 14:26:23 +00:00
|
|
|
|
2019-11-15 17:36:47 +00:00
|
|
|
alias Mobilizon.Events.{Event, Comment}
|
2019-09-22 14:26:23 +00:00
|
|
|
alias Mobilizon.Reports.{Note, Report}
|
|
|
|
|
2020-01-26 19:34:25 +00:00
|
|
|
alias Mobilizon.GraphQL.Resolvers.Admin
|
2019-07-23 11:49:22 +00:00
|
|
|
|
|
|
|
@desc "An action log"
|
|
|
|
object :action_log do
|
|
|
|
field(:id, :id, description: "Internal ID for this comment")
|
|
|
|
field(:actor, :actor, description: "The actor that acted")
|
|
|
|
field(:object, :action_log_object, description: "The object that was acted upon")
|
2019-09-09 07:31:08 +00:00
|
|
|
field(:action, :action_log_action, description: "The action that was done")
|
|
|
|
field(:inserted_at, :datetime, description: "The time when the action was performed")
|
|
|
|
end
|
|
|
|
|
|
|
|
enum :action_log_action do
|
|
|
|
value(:report_update_closed)
|
|
|
|
value(:report_update_opened)
|
|
|
|
value(:report_update_resolved)
|
|
|
|
value(:note_creation)
|
|
|
|
value(:note_deletion)
|
|
|
|
value(:event_deletion)
|
2019-11-15 17:36:47 +00:00
|
|
|
value(:comment_deletion)
|
2019-09-09 07:31:08 +00:00
|
|
|
value(:event_update)
|
2019-07-23 11:49:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@desc "The objects that can be in an action log"
|
|
|
|
interface :action_log_object do
|
|
|
|
field(:id, :id, description: "Internal ID for this object")
|
|
|
|
|
|
|
|
resolve_type(fn
|
|
|
|
%Report{}, _ ->
|
|
|
|
:report
|
|
|
|
|
|
|
|
%Note{}, _ ->
|
|
|
|
:report_note
|
|
|
|
|
2019-09-09 07:31:08 +00:00
|
|
|
%Event{}, _ ->
|
|
|
|
:event
|
|
|
|
|
2019-11-15 17:36:47 +00:00
|
|
|
%Comment{}, _ ->
|
|
|
|
:comment
|
|
|
|
|
2019-07-23 11:49:22 +00:00
|
|
|
_, _ ->
|
|
|
|
nil
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-09-09 07:31:08 +00:00
|
|
|
object :dashboard do
|
|
|
|
field(:last_public_event_published, :event, description: "Last public event publish")
|
|
|
|
field(:number_of_users, :integer, description: "The number of local users")
|
|
|
|
field(:number_of_events, :integer, description: "The number of local events")
|
|
|
|
field(:number_of_comments, :integer, description: "The number of local comments")
|
|
|
|
field(:number_of_reports, :integer, description: "The number of current opened reports")
|
|
|
|
end
|
|
|
|
|
2019-07-23 11:49:22 +00:00
|
|
|
object :admin_queries do
|
|
|
|
@desc "Get the list of action logs"
|
|
|
|
field :action_logs, type: list_of(:action_log) do
|
|
|
|
arg(:page, :integer, default_value: 1)
|
|
|
|
arg(:limit, :integer, default_value: 10)
|
|
|
|
resolve(&Admin.list_action_logs/3)
|
|
|
|
end
|
2019-09-09 07:31:08 +00:00
|
|
|
|
|
|
|
field :dashboard, type: :dashboard do
|
|
|
|
resolve(&Admin.get_dashboard/3)
|
|
|
|
end
|
2019-12-03 10:29:51 +00:00
|
|
|
|
|
|
|
field :relay_followers, type: :paginated_follower_list do
|
|
|
|
arg(:page, :integer, default_value: 1)
|
|
|
|
arg(:limit, :integer, default_value: 10)
|
|
|
|
resolve(&Admin.list_relay_followers/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
field :relay_followings, type: :paginated_follower_list do
|
|
|
|
arg(:page, :integer, default_value: 1)
|
|
|
|
arg(:limit, :integer, default_value: 10)
|
|
|
|
arg(:order_by, :string, default_value: :updated_at)
|
|
|
|
arg(:direction, :string, default_value: :desc)
|
|
|
|
resolve(&Admin.list_relay_followings/3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
object :admin_mutations do
|
|
|
|
@desc "Add a relay subscription"
|
|
|
|
field :add_relay, type: :follower do
|
|
|
|
arg(:address, non_null(:string))
|
|
|
|
|
|
|
|
resolve(&Admin.create_relay/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Delete a relay subscription"
|
|
|
|
field :remove_relay, type: :follower do
|
|
|
|
arg(:address, non_null(:string))
|
|
|
|
|
|
|
|
resolve(&Admin.remove_relay/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Accept a relay subscription"
|
|
|
|
field :accept_relay, type: :follower do
|
|
|
|
arg(:address, non_null(:string))
|
|
|
|
|
|
|
|
resolve(&Admin.accept_subscription/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Reject a relay subscription"
|
|
|
|
field :reject_relay, type: :follower do
|
|
|
|
arg(:address, non_null(:string))
|
|
|
|
|
|
|
|
resolve(&Admin.reject_subscription/3)
|
|
|
|
end
|
2019-07-23 11:49:22 +00:00
|
|
|
end
|
|
|
|
end
|