2019-07-23 13:49:22 +02:00
|
|
|
defmodule Mobilizon.Service.Admin.ActionLogService do
|
|
|
|
@moduledoc """
|
2019-09-22 16:26:23 +02:00
|
|
|
Module to handle action log creations.
|
2019-07-23 13:49:22 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
alias Mobilizon.Actors.Actor
|
|
|
|
alias Mobilizon.Admin
|
|
|
|
alias Mobilizon.Admin.ActionLog
|
2019-09-22 16:26:23 +02:00
|
|
|
alias Mobilizon.Users
|
|
|
|
alias Mobilizon.Users.User
|
2019-07-23 13:49:22 +02:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Log an admin action
|
|
|
|
"""
|
|
|
|
@spec log_action(Actor.t(), String.t(), String.t()) :: {:ok, ActionLog.t()}
|
|
|
|
def log_action(%Actor{user_id: user_id, id: actor_id}, action, target) do
|
|
|
|
with %User{role: role} <- Users.get_user!(user_id),
|
|
|
|
{:role, true} <- {:role, role in [:administrator, :moderator]},
|
|
|
|
{:ok, %ActionLog{} = create_action_log} <-
|
|
|
|
Admin.create_action_log(%{
|
|
|
|
"actor_id" => actor_id,
|
|
|
|
"target_type" => to_string(target.__struct__),
|
|
|
|
"target_id" => target.id,
|
|
|
|
"action" => action,
|
2019-09-09 09:31:08 +02:00
|
|
|
"changes" => stringify_struct(target)
|
2019-07-23 13:49:22 +02:00
|
|
|
}) do
|
|
|
|
{:ok, create_action_log}
|
|
|
|
end
|
|
|
|
end
|
2019-09-09 09:31:08 +02:00
|
|
|
|
|
|
|
defp stringify_struct(%_{} = struct) do
|
|
|
|
association_fields = struct.__struct__.__schema__(:associations)
|
|
|
|
|
|
|
|
struct
|
|
|
|
|> Map.from_struct()
|
|
|
|
|> Map.drop(association_fields ++ [:__meta__])
|
|
|
|
end
|
|
|
|
|
|
|
|
defp stringify_struct(struct), do: struct
|
2019-07-23 13:49:22 +02:00
|
|
|
end
|