2020-01-26 20:34:25 +01:00
|
|
|
defmodule Mobilizon.GraphQL.Resolvers.Admin do
|
2019-07-23 13:49:22 +02:00
|
|
|
@moduledoc """
|
2019-09-22 16:26:23 +02:00
|
|
|
Handles the report-related GraphQL calls.
|
2019-07-23 13:49:22 +02:00
|
|
|
"""
|
2019-09-22 16:26:23 +02:00
|
|
|
|
2019-07-23 13:49:22 +02:00
|
|
|
import Mobilizon.Users.Guards
|
2019-09-22 16:26:23 +02:00
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
alias Mobilizon.{Actors, Admin, Config, Events}
|
2019-12-03 11:29:51 +01:00
|
|
|
alias Mobilizon.Actors.Actor
|
2019-12-20 13:04:34 +01:00
|
|
|
alias Mobilizon.Admin.{ActionLog, Setting}
|
|
|
|
alias Mobilizon.Config
|
2020-02-18 08:57:00 +01:00
|
|
|
alias Mobilizon.Conversations.Comment
|
|
|
|
alias Mobilizon.Events.Event
|
2019-12-20 13:04:34 +01:00
|
|
|
alias Mobilizon.Federation.ActivityPub.Relay
|
2019-09-22 16:26:23 +02:00
|
|
|
alias Mobilizon.Reports.{Note, Report}
|
2020-01-22 02:14:42 +01:00
|
|
|
alias Mobilizon.Service.Statistics
|
2019-12-03 11:29:51 +01:00
|
|
|
alias Mobilizon.Storage.Page
|
2020-01-28 20:15:59 +01:00
|
|
|
alias Mobilizon.Users.User
|
2020-06-11 19:13:21 +02:00
|
|
|
require Logger
|
2020-01-22 02:14:42 +01:00
|
|
|
|
2019-09-22 13:41:24 +02:00
|
|
|
def list_action_logs(
|
|
|
|
_parent,
|
|
|
|
%{page: page, limit: limit},
|
|
|
|
%{context: %{current_user: %User{role: role}}}
|
|
|
|
)
|
2019-07-23 13:49:22 +02:00
|
|
|
when is_moderator(role) do
|
|
|
|
with action_logs <- Mobilizon.Admin.list_action_logs(page, limit) do
|
|
|
|
action_logs =
|
2019-09-22 13:41:24 +02:00
|
|
|
action_logs
|
|
|
|
|> Enum.map(fn %ActionLog{
|
|
|
|
target_type: target_type,
|
|
|
|
action: action,
|
|
|
|
actor: actor,
|
|
|
|
id: id,
|
|
|
|
inserted_at: inserted_at
|
|
|
|
} = action_log ->
|
2019-09-09 09:31:08 +02:00
|
|
|
with data when is_map(data) <-
|
|
|
|
transform_action_log(String.to_existing_atom(target_type), action, action_log) do
|
2019-09-22 13:41:24 +02:00
|
|
|
Map.merge(data, %{actor: actor, id: id, inserted_at: inserted_at})
|
2019-09-09 09:31:08 +02:00
|
|
|
end
|
2019-07-23 13:49:22 +02:00
|
|
|
end)
|
2019-09-09 09:31:08 +02:00
|
|
|
|> Enum.filter(& &1)
|
2019-07-23 13:49:22 +02:00
|
|
|
|
|
|
|
{:ok, action_logs}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def list_action_logs(_parent, _args, _resolution) do
|
|
|
|
{:error, "You need to be logged-in and a moderator to list action logs"}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp transform_action_log(
|
2019-09-09 09:31:08 +02:00
|
|
|
Report,
|
|
|
|
:update,
|
2019-07-23 13:49:22 +02:00
|
|
|
%ActionLog{} = action_log
|
|
|
|
) do
|
2019-09-09 09:31:08 +02:00
|
|
|
with %Report{} = report <- Mobilizon.Reports.get_report(action_log.target_id) do
|
|
|
|
action =
|
|
|
|
case action_log do
|
|
|
|
%ActionLog{changes: %{"status" => "closed"}} -> :report_update_closed
|
|
|
|
%ActionLog{changes: %{"status" => "open"}} -> :report_update_opened
|
|
|
|
%ActionLog{changes: %{"status" => "resolved"}} -> :report_update_resolved
|
|
|
|
end
|
|
|
|
|
2019-07-23 13:49:22 +02:00
|
|
|
%{
|
2019-09-09 09:31:08 +02:00
|
|
|
action: action,
|
2019-07-23 13:49:22 +02:00
|
|
|
object: report
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
defp transform_action_log(Note, :create, %ActionLog{changes: changes}) do
|
2019-07-23 13:49:22 +02:00
|
|
|
%{
|
2019-09-09 09:31:08 +02:00
|
|
|
action: :note_creation,
|
2019-07-23 13:49:22 +02:00
|
|
|
object: convert_changes_to_struct(Note, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
defp transform_action_log(Note, :delete, %ActionLog{changes: changes}) do
|
2019-07-23 13:49:22 +02:00
|
|
|
%{
|
2019-09-09 09:31:08 +02:00
|
|
|
action: :note_deletion,
|
2019-07-23 13:49:22 +02:00
|
|
|
object: convert_changes_to_struct(Note, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
defp transform_action_log(Event, :delete, %ActionLog{changes: changes}) do
|
2019-09-09 09:31:08 +02:00
|
|
|
%{
|
|
|
|
action: :event_deletion,
|
|
|
|
object: convert_changes_to_struct(Event, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
defp transform_action_log(Comment, :delete, %ActionLog{changes: changes}) do
|
2019-11-15 18:36:47 +01:00
|
|
|
%{
|
|
|
|
action: :comment_deletion,
|
|
|
|
object: convert_changes_to_struct(Comment, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-06-11 19:13:21 +02:00
|
|
|
defp transform_action_log(Actor, :suspend, %ActionLog{changes: changes}) do
|
|
|
|
%{
|
|
|
|
action: :actor_suspension,
|
|
|
|
object: convert_changes_to_struct(Actor, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp transform_action_log(Actor, :unsuspend, %ActionLog{changes: changes}) do
|
|
|
|
%{
|
|
|
|
action: :actor_unsuspension,
|
|
|
|
object: convert_changes_to_struct(Actor, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-06-15 19:41:11 +02:00
|
|
|
defp transform_action_log(User, :delete, %ActionLog{changes: changes}) do
|
|
|
|
%{
|
|
|
|
action: :user_deletion,
|
|
|
|
object: convert_changes_to_struct(User, changes)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-07-23 13:49:22 +02:00
|
|
|
# Changes are stored as %{"key" => "value"} so we need to convert them back as struct
|
2019-09-09 09:31:08 +02:00
|
|
|
defp convert_changes_to_struct(struct, %{"report_id" => _report_id} = changes) do
|
|
|
|
with data <- for({key, val} <- changes, into: %{}, do: {String.to_atom(key), val}),
|
|
|
|
data <- Map.put(data, :report, Mobilizon.Reports.get_report(data.report_id)) do
|
|
|
|
struct(struct, data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-23 13:49:22 +02:00
|
|
|
defp convert_changes_to_struct(struct, changes) do
|
2019-09-09 09:31:08 +02:00
|
|
|
with data <- for({key, val} <- changes, into: %{}, do: {String.to_atom(key), val}) do
|
|
|
|
struct(struct, data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
def get_dashboard(_parent, _args, %{context: %{current_user: %User{role: role}}})
|
2019-09-09 09:31:08 +02:00
|
|
|
when is_admin(role) do
|
|
|
|
last_public_event_published =
|
|
|
|
case Events.list_events(1, 1, :inserted_at, :desc) do
|
|
|
|
[event | _] -> event
|
|
|
|
_ -> nil
|
|
|
|
end
|
|
|
|
|
|
|
|
{:ok,
|
|
|
|
%{
|
|
|
|
number_of_users: Statistics.get_cached_value(:local_users),
|
|
|
|
number_of_events: Statistics.get_cached_value(:local_events),
|
|
|
|
number_of_comments: Statistics.get_cached_value(:local_comments),
|
|
|
|
number_of_reports: Mobilizon.Reports.count_opened_reports(),
|
|
|
|
last_public_event_published: last_public_event_published
|
|
|
|
}}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_dashboard(_parent, _args, _resolution) do
|
|
|
|
{:error, "You need to be logged-in and an administrator to access dashboard statistics"}
|
2019-07-23 13:49:22 +02:00
|
|
|
end
|
2019-12-03 11:29:51 +01:00
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
def get_settings(_parent, _args, %{
|
|
|
|
context: %{current_user: %User{role: role}}
|
|
|
|
})
|
|
|
|
when is_admin(role) do
|
|
|
|
{:ok,
|
|
|
|
%{
|
|
|
|
instance_description: Config.instance_description(),
|
2020-06-19 19:27:10 +02:00
|
|
|
instance_long_description: Config.instance_long_description(),
|
2019-12-20 13:04:34 +01:00
|
|
|
instance_name: Config.instance_name(),
|
|
|
|
registrations_open: Config.instance_registrations_open?(),
|
2020-06-19 19:27:10 +02:00
|
|
|
contact: Config.contact(),
|
2019-12-20 13:04:34 +01:00
|
|
|
instance_terms: Config.instance_terms(),
|
|
|
|
instance_terms_type: Config.instance_terms_type(),
|
2020-06-15 11:01:49 +02:00
|
|
|
instance_terms_url: Config.instance_terms_url(),
|
2020-06-19 19:27:10 +02:00
|
|
|
instance_privacy_policy: Config.instance_privacy(),
|
|
|
|
instance_privacy_policy_type: Config.instance_privacy_type(),
|
|
|
|
instance_privacy_policy_url: Config.instance_privacy_url(),
|
2020-06-15 11:01:49 +02:00
|
|
|
instance_rules: Config.instance_rules()
|
2019-12-20 13:04:34 +01:00
|
|
|
}}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_settings(_parent, _args, _resolution) do
|
|
|
|
{:error, "You need to be logged-in and an administrator to access admin settings"}
|
|
|
|
end
|
|
|
|
|
|
|
|
def save_settings(_parent, args, %{
|
|
|
|
context: %{current_user: %User{role: role}}
|
|
|
|
})
|
|
|
|
when is_admin(role) do
|
|
|
|
with {:ok, res} <- Admin.save_settings("instance", args) do
|
|
|
|
res =
|
2020-06-09 17:41:08 +02:00
|
|
|
res
|
|
|
|
|> Enum.map(fn {key, %Setting{value: value}} ->
|
|
|
|
case value do
|
|
|
|
"true" -> {key, true}
|
|
|
|
"false" -> {key, false}
|
|
|
|
value -> {key, value}
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|> Enum.into(%{})
|
2019-12-20 13:04:34 +01:00
|
|
|
|
|
|
|
Config.clear_config_cache()
|
|
|
|
|
|
|
|
{:ok, res}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def save_settings(_parent, _args, _resolution) do
|
|
|
|
{:error, "You need to be logged-in and an administrator to save admin settings"}
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
def list_relay_followers(
|
|
|
|
_parent,
|
|
|
|
%{page: page, limit: limit},
|
|
|
|
%{context: %{current_user: %User{role: role}}}
|
|
|
|
)
|
2019-12-03 11:29:51 +01:00
|
|
|
when is_admin(role) do
|
|
|
|
with %Actor{} = relay_actor <- Relay.get_actor() do
|
|
|
|
%Page{} =
|
|
|
|
page = Actors.list_external_followers_for_actor_paginated(relay_actor, page, limit)
|
|
|
|
|
|
|
|
{:ok, page}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
def list_relay_followings(
|
|
|
|
_parent,
|
|
|
|
%{page: page, limit: limit},
|
|
|
|
%{context: %{current_user: %User{role: role}}}
|
|
|
|
)
|
2019-12-03 11:29:51 +01:00
|
|
|
when is_admin(role) do
|
|
|
|
with %Actor{} = relay_actor <- Relay.get_actor() do
|
|
|
|
%Page{} =
|
|
|
|
page = Actors.list_external_followings_for_actor_paginated(relay_actor, page, limit)
|
|
|
|
|
|
|
|
{:ok, page}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_relay(_parent, %{address: address}, %{context: %{current_user: %User{role: role}}})
|
|
|
|
when is_admin(role) do
|
|
|
|
case Relay.follow(address) do
|
|
|
|
{:ok, _activity, follow} ->
|
|
|
|
{:ok, follow}
|
|
|
|
|
|
|
|
{:error, {:error, err}} when is_bitstring(err) ->
|
|
|
|
{:error, err}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_relay(_parent, %{address: address}, %{context: %{current_user: %User{role: role}}})
|
|
|
|
when is_admin(role) do
|
|
|
|
case Relay.unfollow(address) do
|
|
|
|
{:ok, _activity, follow} ->
|
|
|
|
{:ok, follow}
|
|
|
|
|
|
|
|
{:error, {:error, err}} when is_bitstring(err) ->
|
|
|
|
{:error, err}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
def accept_subscription(
|
|
|
|
_parent,
|
|
|
|
%{address: address},
|
|
|
|
%{context: %{current_user: %User{role: role}}}
|
|
|
|
)
|
2019-12-03 11:29:51 +01:00
|
|
|
when is_admin(role) do
|
|
|
|
case Relay.accept(address) do
|
|
|
|
{:ok, _activity, follow} ->
|
|
|
|
{:ok, follow}
|
|
|
|
|
|
|
|
{:error, {:error, err}} when is_bitstring(err) ->
|
|
|
|
{:error, err}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
def reject_subscription(
|
|
|
|
_parent,
|
|
|
|
%{address: address},
|
|
|
|
%{context: %{current_user: %User{role: role}}}
|
|
|
|
)
|
2019-12-03 11:29:51 +01:00
|
|
|
when is_admin(role) do
|
|
|
|
case Relay.reject(address) do
|
|
|
|
{:ok, _activity, follow} ->
|
|
|
|
{:ok, follow}
|
|
|
|
|
|
|
|
{:error, {:error, err}} when is_bitstring(err) ->
|
|
|
|
{:error, err}
|
|
|
|
end
|
|
|
|
end
|
2019-07-23 13:49:22 +02:00
|
|
|
end
|