2020-10-12 17:00:50 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-12 17:00:50 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
defmodule Pleroma.ModerationLog do
|
|
|
|
use Ecto.Schema
|
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.ModerationLog
|
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
import Ecto.Query
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
@type t :: %__MODULE__{}
|
|
|
|
@type log_subject :: Activity.t() | User.t() | list(User.t())
|
|
|
|
@type log_params :: %{
|
|
|
|
required(:actor) => User.t(),
|
|
|
|
required(:action) => String.t(),
|
|
|
|
optional(:subject) => log_subject(),
|
|
|
|
optional(:subject_actor) => User.t(),
|
|
|
|
optional(:subject_id) => String.t(),
|
|
|
|
optional(:subjects) => list(User.t()),
|
|
|
|
optional(:permission) => String.t(),
|
|
|
|
optional(:text) => String.t(),
|
|
|
|
optional(:sensitive) => String.t(),
|
|
|
|
optional(:visibility) => String.t(),
|
|
|
|
optional(:followed) => User.t(),
|
|
|
|
optional(:follower) => User.t(),
|
|
|
|
optional(:nicknames) => list(String.t()),
|
|
|
|
optional(:tags) => list(String.t()),
|
|
|
|
optional(:target) => String.t()
|
|
|
|
}
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
schema "moderation_log" do
|
|
|
|
field(:data, :map)
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-08-27 17:48:16 +00:00
|
|
|
def get_all(params) do
|
2019-09-01 18:23:30 +00:00
|
|
|
base_query =
|
|
|
|
get_all_query()
|
|
|
|
|> maybe_filter_by_date(params)
|
|
|
|
|> maybe_filter_by_user(params)
|
|
|
|
|> maybe_filter_by_search(params)
|
|
|
|
|
|
|
|
query_with_pagination = base_query |> paginate_query(params)
|
|
|
|
|
|
|
|
%{
|
|
|
|
items: Repo.all(query_with_pagination),
|
|
|
|
count: Repo.aggregate(base_query, :count, :id)
|
|
|
|
}
|
2019-08-27 17:48:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_filter_by_date(query, %{start_date: nil, end_date: nil}), do: query
|
|
|
|
|
|
|
|
defp maybe_filter_by_date(query, %{start_date: start_date, end_date: nil}) do
|
|
|
|
from(q in query,
|
|
|
|
where: q.inserted_at >= ^parse_datetime(start_date)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_filter_by_date(query, %{start_date: nil, end_date: end_date}) do
|
|
|
|
from(q in query,
|
|
|
|
where: q.inserted_at <= ^parse_datetime(end_date)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_filter_by_date(query, %{start_date: start_date, end_date: end_date}) do
|
|
|
|
from(q in query,
|
|
|
|
where: q.inserted_at >= ^parse_datetime(start_date),
|
|
|
|
where: q.inserted_at <= ^parse_datetime(end_date)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-08-30 21:57:15 +00:00
|
|
|
defp maybe_filter_by_user(query, %{user_id: nil}), do: query
|
|
|
|
|
|
|
|
defp maybe_filter_by_user(query, %{user_id: user_id}) do
|
|
|
|
from(q in query,
|
|
|
|
where: fragment("(?)->'actor'->>'id' = ?", q.data, ^user_id)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_filter_by_search(query, %{search: search}) when is_nil(search) or search == "",
|
|
|
|
do: query
|
|
|
|
|
|
|
|
defp maybe_filter_by_search(query, %{search: search}) do
|
|
|
|
from(q in query,
|
|
|
|
where: fragment("(?)->>'message' ILIKE ?", q.data, ^"%#{search}%")
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-01 18:23:30 +00:00
|
|
|
defp paginate_query(query, %{page: page, page_size: page_size}) do
|
|
|
|
from(q in query,
|
2019-08-25 19:39:37 +00:00
|
|
|
limit: ^page_size,
|
|
|
|
offset: ^((page - 1) * page_size)
|
|
|
|
)
|
2019-08-27 17:48:16 +00:00
|
|
|
end
|
|
|
|
|
2019-09-01 18:23:30 +00:00
|
|
|
defp get_all_query do
|
|
|
|
from(q in __MODULE__,
|
|
|
|
order_by: [desc: q.inserted_at]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-08-27 17:48:16 +00:00
|
|
|
defp parse_datetime(datetime) do
|
|
|
|
{:ok, parsed_datetime, _} = DateTime.from_iso8601(datetime)
|
|
|
|
|
|
|
|
parsed_datetime
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
defp prepare_log_data(%{actor: actor, action: action} = attrs) do
|
|
|
|
%{
|
|
|
|
"actor" => user_to_map(actor),
|
|
|
|
"action" => action,
|
|
|
|
"message" => ""
|
2019-08-30 21:57:15 +00:00
|
|
|
}
|
2020-11-25 13:44:11 +00:00
|
|
|
|> Pleroma.Maps.put_if_present("subject_actor", user_to_map(attrs[:subject_actor]))
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
defp prepare_log_data(attrs), do: attrs
|
|
|
|
|
|
|
|
@spec insert_log(log_params()) :: {:ok, ModerationLog} | {:error, any}
|
|
|
|
def insert_log(%{actor: %User{}, subject: subjects, permission: permission} = attrs) do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{"subject" => user_to_map(subjects), "permission" => permission})
|
|
|
|
|
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
def insert_log(%{actor: %User{}, action: action, subject: %Activity{} = subject} = attrs)
|
|
|
|
when action in ["report_note_delete", "report_update", "report_note"] do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Pleroma.Maps.put_if_present("text", attrs[:text])
|
|
|
|
|> Map.merge(%{"subject" => report_to_map(subject)})
|
|
|
|
|
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-12-08 08:27:23 +00:00
|
|
|
end
|
|
|
|
|
2020-11-19 19:13:45 +00:00
|
|
|
def insert_log(
|
|
|
|
%{
|
2020-11-25 13:44:11 +00:00
|
|
|
actor: %User{},
|
|
|
|
action: action,
|
2020-11-19 19:13:45 +00:00
|
|
|
subject: %Activity{} = subject,
|
2020-11-25 13:44:11 +00:00
|
|
|
sensitive: sensitive,
|
|
|
|
visibility: visibility
|
2020-11-19 19:13:45 +00:00
|
|
|
} = attrs
|
2020-11-25 13:44:11 +00:00
|
|
|
)
|
|
|
|
when action == "status_update" do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{
|
2019-08-30 21:57:15 +00:00
|
|
|
"subject" => status_to_map(subject),
|
|
|
|
"sensitive" => sensitive,
|
2020-11-25 13:44:11 +00:00
|
|
|
"visibility" => visibility
|
|
|
|
})
|
2019-08-25 19:39:37 +00:00
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
def insert_log(%{actor: %User{}, action: action, subject_id: subject_id} = attrs)
|
|
|
|
when action == "status_delete" do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{"subject_id" => subject_id})
|
|
|
|
|
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
def insert_log(%{actor: %User{}, subject: subject, action: _action} = attrs) do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{"subject" => user_to_map(subject)})
|
2019-08-25 19:39:37 +00:00
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
def insert_log(%{actor: %User{}, subjects: subjects, action: _action} = attrs) do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{"subjects" => user_to_map(subjects)})
|
|
|
|
|
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
def insert_log(
|
|
|
|
%{
|
|
|
|
actor: %User{},
|
|
|
|
followed: %User{} = followed,
|
|
|
|
follower: %User{} = follower,
|
|
|
|
action: action
|
|
|
|
} = attrs
|
|
|
|
)
|
|
|
|
when action in ["unfollow", "follow"] do
|
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{"followed" => user_to_map(followed), "follower" => user_to_map(follower)})
|
|
|
|
|
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def insert_log(%{
|
|
|
|
actor: %User{} = actor,
|
|
|
|
nicknames: nicknames,
|
|
|
|
tags: tags,
|
|
|
|
action: action
|
|
|
|
}) do
|
2019-08-30 21:57:15 +00:00
|
|
|
%ModerationLog{
|
2019-08-25 19:39:37 +00:00
|
|
|
data: %{
|
2019-08-30 21:57:15 +00:00
|
|
|
"actor" => user_to_map(actor),
|
|
|
|
"nicknames" => nicknames,
|
|
|
|
"tags" => tags,
|
|
|
|
"action" => action,
|
|
|
|
"message" => ""
|
2019-08-25 19:39:37 +00:00
|
|
|
}
|
2019-08-30 21:57:15 +00:00
|
|
|
}
|
|
|
|
|> insert_log_entry_with_message()
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
def insert_log(%{actor: %User{}, action: action, target: target} = attrs)
|
2019-08-25 19:39:37 +00:00
|
|
|
when action in ["relay_follow", "relay_unfollow"] do
|
2020-11-25 13:44:11 +00:00
|
|
|
data =
|
|
|
|
attrs
|
|
|
|
|> prepare_log_data
|
|
|
|
|> Map.merge(%{"target" => target})
|
|
|
|
|
|
|
|
insert_log_entry_with_message(%ModerationLog{data: data})
|
2019-08-30 21:57:15 +00:00
|
|
|
end
|
|
|
|
|
2020-09-01 00:56:05 +00:00
|
|
|
def insert_log(%{actor: %User{} = actor, action: "chat_message_delete", subject_id: subject_id}) do
|
|
|
|
%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor.nickname},
|
|
|
|
"action" => "chat_message_delete",
|
|
|
|
"subject_id" => subject_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|> insert_log_entry_with_message()
|
|
|
|
end
|
|
|
|
|
2019-08-30 21:57:15 +00:00
|
|
|
@spec insert_log_entry_with_message(ModerationLog) :: {:ok, ModerationLog} | {:error, any}
|
|
|
|
defp insert_log_entry_with_message(entry) do
|
|
|
|
entry.data["message"]
|
|
|
|
|> put_in(get_log_entry_message(entry))
|
|
|
|
|> Repo.insert()
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
defp user_to_map(users) when is_list(users) do
|
2020-11-19 19:13:45 +00:00
|
|
|
Enum.map(users, &user_to_map/1)
|
2019-10-09 14:03:54 +00:00
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
defp user_to_map(%User{} = user) do
|
|
|
|
user
|
|
|
|
|> Map.take([:id, :nickname])
|
2019-08-30 21:57:15 +00:00
|
|
|
|> Map.new(fn {k, v} -> {Atom.to_string(k), v} end)
|
|
|
|
|> Map.put("type", "user")
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-19 19:13:45 +00:00
|
|
|
defp user_to_map(_), do: nil
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
defp report_to_map(%Activity{} = report) do
|
2020-11-25 13:44:11 +00:00
|
|
|
%{"type" => "report", "id" => report.id, "state" => report.data["state"]}
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp status_to_map(%Activity{} = status) do
|
2020-11-25 13:44:11 +00:00
|
|
|
%{"type" => "status", "id" => status.id}
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 13:44:11 +00:00
|
|
|
@spec get_log_entry_message(ModerationLog.t()) :: String.t()
|
2019-08-25 19:39:37 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => action,
|
|
|
|
"followed" => %{"nickname" => followed_nickname},
|
|
|
|
"follower" => %{"nickname" => follower_nickname}
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} made @#{follower_nickname} #{action} @#{followed_nickname}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "delete",
|
2019-10-15 15:33:29 +00:00
|
|
|
"subject" => subjects
|
2019-08-25 19:39:37 +00:00
|
|
|
}
|
|
|
|
}) do
|
2019-10-15 15:33:29 +00:00
|
|
|
"@#{actor_nickname} deleted users: #{users_to_nicknames_string(subjects)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "create",
|
|
|
|
"subjects" => subjects
|
|
|
|
}
|
|
|
|
}) do
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} created users: #{users_to_nicknames_string(subjects)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "activate",
|
2019-10-09 14:03:54 +00:00
|
|
|
"subject" => users
|
2019-08-25 19:39:37 +00:00
|
|
|
}
|
|
|
|
}) do
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} activated users: #{users_to_nicknames_string(users)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "deactivate",
|
2019-10-09 14:03:54 +00:00
|
|
|
"subject" => users
|
2019-08-25 19:39:37 +00:00
|
|
|
}
|
|
|
|
}) do
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} deactivated users: #{users_to_nicknames_string(users)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-07-14 23:02:44 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "approve",
|
|
|
|
"subject" => users
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} approved users: #{users_to_nicknames_string(users)}"
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"nicknames" => nicknames,
|
|
|
|
"tags" => tags,
|
|
|
|
"action" => "tag"
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
tags_string = tags |> Enum.join(", ")
|
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} added tags: #{tags_string} to users: #{nicknames_to_string(nicknames)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"nicknames" => nicknames,
|
|
|
|
"tags" => tags,
|
|
|
|
"action" => "untag"
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
tags_string = tags |> Enum.join(", ")
|
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} removed tags: #{tags_string} from users: #{nicknames_to_string(nicknames)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "grant",
|
2019-10-09 14:03:54 +00:00
|
|
|
"subject" => users,
|
2019-08-25 19:39:37 +00:00
|
|
|
"permission" => permission
|
|
|
|
}
|
|
|
|
}) do
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} made #{users_to_nicknames_string(users)} #{permission}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "revoke",
|
2019-10-09 14:03:54 +00:00
|
|
|
"subject" => users,
|
2019-08-25 19:39:37 +00:00
|
|
|
"permission" => permission
|
|
|
|
}
|
|
|
|
}) do
|
2019-10-09 14:03:54 +00:00
|
|
|
"@#{actor_nickname} revoked #{permission} role from #{users_to_nicknames_string(users)}"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "relay_follow",
|
|
|
|
"target" => target
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} followed relay: #{target}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "relay_unfollow",
|
|
|
|
"target" => target
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} unfollowed relay: #{target}"
|
|
|
|
end
|
|
|
|
|
2020-11-19 19:13:45 +00:00
|
|
|
def get_log_entry_message(
|
|
|
|
%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "report_update",
|
|
|
|
"subject" => %{"id" => subject_id, "state" => state, "type" => "report"}
|
|
|
|
}
|
|
|
|
} = log
|
|
|
|
) do
|
|
|
|
"@#{actor_nickname} updated report ##{subject_id}" <>
|
|
|
|
subject_actor_nickname(log, " (on user ", ")") <>
|
|
|
|
" with '#{state}' state"
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
2020-11-19 19:13:45 +00:00
|
|
|
def get_log_entry_message(
|
|
|
|
%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "report_note",
|
|
|
|
"subject" => %{"id" => subject_id, "type" => "report"},
|
|
|
|
"text" => text
|
|
|
|
}
|
|
|
|
} = log
|
|
|
|
) do
|
|
|
|
"@#{actor_nickname} added note '#{text}' to report ##{subject_id}" <>
|
|
|
|
subject_actor_nickname(log, " on user ")
|
2019-12-08 08:27:23 +00:00
|
|
|
end
|
|
|
|
|
2020-11-19 19:13:45 +00:00
|
|
|
def get_log_entry_message(
|
|
|
|
%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "report_note_delete",
|
|
|
|
"subject" => %{"id" => subject_id, "type" => "report"},
|
|
|
|
"text" => text
|
|
|
|
}
|
|
|
|
} = log
|
|
|
|
) do
|
|
|
|
"@#{actor_nickname} deleted note '#{text}' from report ##{subject_id}" <>
|
|
|
|
subject_actor_nickname(log, " on user ")
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "status_update",
|
|
|
|
"subject" => %{"id" => subject_id, "type" => "status"},
|
|
|
|
"sensitive" => nil,
|
|
|
|
"visibility" => visibility
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} updated status ##{subject_id}, set visibility: '#{visibility}'"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "status_update",
|
|
|
|
"subject" => %{"id" => subject_id, "type" => "status"},
|
|
|
|
"sensitive" => sensitive,
|
|
|
|
"visibility" => nil
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} updated status ##{subject_id}, set sensitive: '#{sensitive}'"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "status_update",
|
|
|
|
"subject" => %{"id" => subject_id, "type" => "status"},
|
|
|
|
"sensitive" => sensitive,
|
|
|
|
"visibility" => visibility
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} updated status ##{subject_id}, set sensitive: '#{sensitive}', visibility: '#{
|
|
|
|
visibility
|
|
|
|
}'"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "status_delete",
|
|
|
|
"subject_id" => subject_id
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} deleted status ##{subject_id}"
|
|
|
|
end
|
2019-10-09 14:03:54 +00:00
|
|
|
|
2019-11-01 15:45:47 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "force_password_reset",
|
|
|
|
"subject" => subjects
|
|
|
|
}
|
|
|
|
}) do
|
2019-11-19 11:14:02 +00:00
|
|
|
"@#{actor_nickname} forced password reset for users: #{users_to_nicknames_string(subjects)}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "confirm_email",
|
|
|
|
"subject" => subjects
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} confirmed email for users: #{users_to_nicknames_string(subjects)}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "resend_confirmation_email",
|
|
|
|
"subject" => subjects
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} re-sent confirmation email for users: #{
|
|
|
|
users_to_nicknames_string(subjects)
|
|
|
|
}"
|
2019-11-01 15:45:47 +00:00
|
|
|
end
|
|
|
|
|
2020-01-28 06:47:59 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
2020-01-31 18:07:46 +00:00
|
|
|
"action" => "updated_users",
|
2020-01-28 06:47:59 +00:00
|
|
|
"subject" => subjects
|
|
|
|
}
|
|
|
|
}) do
|
2020-01-31 18:07:46 +00:00
|
|
|
"@#{actor_nickname} updated users: #{users_to_nicknames_string(subjects)}"
|
2020-01-28 06:47:59 +00:00
|
|
|
end
|
|
|
|
|
2020-09-01 00:56:05 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "chat_message_delete",
|
|
|
|
"subject_id" => subject_id
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} deleted chat message ##{subject_id}"
|
|
|
|
end
|
|
|
|
|
2020-09-26 19:16:56 +00:00
|
|
|
def get_log_entry_message(%ModerationLog{
|
|
|
|
data: %{
|
|
|
|
"actor" => %{"nickname" => actor_nickname},
|
|
|
|
"action" => "create_backup",
|
|
|
|
"subject" => %{"nickname" => user_nickname}
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
"@#{actor_nickname} requested account backup for @#{user_nickname}"
|
|
|
|
end
|
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
defp nicknames_to_string(nicknames) do
|
|
|
|
nicknames
|
|
|
|
|> Enum.map(&"@#{&1}")
|
|
|
|
|> Enum.join(", ")
|
|
|
|
end
|
|
|
|
|
|
|
|
defp users_to_nicknames_string(users) do
|
|
|
|
users
|
|
|
|
|> Enum.map(&"@#{&1["nickname"]}")
|
|
|
|
|> Enum.join(", ")
|
|
|
|
end
|
2020-11-19 19:13:45 +00:00
|
|
|
|
|
|
|
defp subject_actor_nickname(%ModerationLog{data: data}, prefix_msg, postfix_msg \\ "") do
|
|
|
|
case data do
|
|
|
|
%{"subject_actor" => %{"nickname" => subject_actor}} ->
|
|
|
|
[prefix_msg, "@#{subject_actor}", postfix_msg]
|
|
|
|
|> Enum.reject(&(&1 == ""))
|
|
|
|
|> Enum.join()
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
""
|
|
|
|
end
|
|
|
|
end
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|