2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-10-12 04:26:58 +00:00
|
|
|
defmodule Pleroma.Web.AdminAPI.AdminAPIController do
|
2018-10-02 16:38:16 +00:00
|
|
|
use Pleroma.Web, :controller
|
2019-09-29 08:17:38 +00:00
|
|
|
|
|
|
|
import Pleroma.Web.ControllerHelper, only: [json_response: 3]
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
alias Pleroma.Activity
|
2020-02-08 09:55:37 +00:00
|
|
|
alias Pleroma.Config
|
2020-01-16 05:50:27 +00:00
|
|
|
alias Pleroma.ConfigDB
|
2019-08-25 19:39:37 +00:00
|
|
|
alias Pleroma.ModerationLog
|
2019-09-15 15:22:08 +00:00
|
|
|
alias Pleroma.Plugs.OAuthScopesPlug
|
2019-12-03 14:54:07 +00:00
|
|
|
alias Pleroma.ReportNote
|
2020-01-09 19:18:55 +00:00
|
|
|
alias Pleroma.Stats
|
2018-12-18 10:13:57 +00:00
|
|
|
alias Pleroma.User
|
2019-04-07 13:59:53 +00:00
|
|
|
alias Pleroma.UserInviteToken
|
2019-05-16 19:09:18 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-10-02 17:03:05 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
2019-10-07 12:01:18 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-03-13 03:13:28 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.AccountView
|
2019-06-14 15:45:05 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.ConfigView
|
2019-08-25 19:39:37 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.ModerationLogView
|
2019-09-23 22:33:59 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.Report
|
2019-05-16 19:09:18 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.ReportView
|
2019-03-26 22:51:59 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.Search
|
2019-05-16 19:09:18 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-09-22 13:36:59 +00:00
|
|
|
alias Pleroma.Web.Endpoint
|
2019-05-16 19:09:18 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2019-09-22 13:36:59 +00:00
|
|
|
alias Pleroma.Web.Router
|
2019-04-06 13:25:19 +00:00
|
|
|
|
2018-10-02 16:38:16 +00:00
|
|
|
require Logger
|
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
@descriptions_json Pleroma.Docs.JSON.compile()
|
|
|
|
@users_page_size 50
|
|
|
|
|
2019-09-15 15:22:08 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["read:accounts"], admin: true}
|
2020-01-31 18:07:46 +00:00
|
|
|
when action in [:list_users, :user_show, :right_get, :show_user_credentials]
|
2019-09-15 15:22:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["write:accounts"], admin: true}
|
2019-09-15 15:22:08 +00:00
|
|
|
when action in [
|
|
|
|
:get_password_reset,
|
|
|
|
:user_delete,
|
|
|
|
:users_create,
|
|
|
|
:user_toggle_activation,
|
2019-10-10 21:24:31 +00:00
|
|
|
:user_activate,
|
|
|
|
:user_deactivate,
|
2019-09-15 15:22:08 +00:00
|
|
|
:tag_users,
|
|
|
|
:untag_users,
|
|
|
|
:right_add,
|
2020-01-31 18:07:46 +00:00
|
|
|
:right_delete,
|
|
|
|
:update_user_credentials
|
2019-09-15 15:22:08 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-01-15 09:11:23 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:invites"], admin: true} when action == :invites)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:invites"], admin: true}
|
|
|
|
when action in [:create_invite_token, :revoke_invite, :email_invite]
|
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:follows"], admin: true}
|
|
|
|
when action in [:user_follow, :user_unfollow, :relay_follow, :relay_unfollow]
|
|
|
|
)
|
|
|
|
|
2019-09-17 19:19:39 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["read:reports"], admin: true}
|
2019-12-05 21:25:44 +00:00
|
|
|
when action in [:list_reports, :report_show]
|
2019-09-17 19:19:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["write:reports"], admin: true}
|
2019-12-24 17:45:46 +00:00
|
|
|
when action in [:reports_update]
|
2019-09-17 19:19:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["read:statuses"], admin: true}
|
2019-12-05 21:25:44 +00:00
|
|
|
when action == :list_user_statuses
|
2019-09-17 19:19:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["write:statuses"], admin: true}
|
2019-09-17 19:19:39 +00:00
|
|
|
when action in [:status_update, :status_delete]
|
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["read"], admin: true}
|
2020-01-09 19:18:55 +00:00
|
|
|
when action in [:config_show, :list_log, :stats]
|
2019-09-17 19:19:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-06 17:33:47 +00:00
|
|
|
%{scopes: ["write"], admin: true}
|
2020-01-15 09:11:23 +00:00
|
|
|
when action == :config_update
|
2019-09-17 19:19:39 +00:00
|
|
|
)
|
|
|
|
|
2018-10-02 16:38:16 +00:00
|
|
|
action_fallback(:errors)
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def user_delete(%{assigns: %{user: admin}} = conn, %{"nickname" => nickname}) do
|
|
|
|
user = User.get_cached_by_nickname(nickname)
|
|
|
|
User.delete(user)
|
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
2019-10-15 15:33:29 +00:00
|
|
|
subject: [user],
|
2019-08-25 19:39:37 +00:00
|
|
|
action: "delete"
|
|
|
|
})
|
2018-10-02 17:03:05 +00:00
|
|
|
|
|
|
|
conn
|
2018-11-02 07:15:09 +00:00
|
|
|
|> json(nickname)
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2019-10-15 15:33:29 +00:00
|
|
|
def user_delete(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames}) do
|
|
|
|
users = nicknames |> Enum.map(&User.get_cached_by_nickname/1)
|
|
|
|
User.delete(users)
|
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: users,
|
|
|
|
action: "delete"
|
|
|
|
})
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> json(nicknames)
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def user_follow(%{assigns: %{user: admin}} = conn, %{
|
|
|
|
"follower" => follower_nick,
|
|
|
|
"followed" => followed_nick
|
|
|
|
}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = follower <- User.get_cached_by_nickname(follower_nick),
|
|
|
|
%User{} = followed <- User.get_cached_by_nickname(followed_nick) do
|
2018-12-16 15:41:56 +00:00
|
|
|
User.follow(follower, followed)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
followed: followed,
|
|
|
|
follower: follower,
|
|
|
|
action: "follow"
|
|
|
|
})
|
2018-12-16 15:41:56 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> json("ok")
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def user_unfollow(%{assigns: %{user: admin}} = conn, %{
|
|
|
|
"follower" => follower_nick,
|
|
|
|
"followed" => followed_nick
|
|
|
|
}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = follower <- User.get_cached_by_nickname(follower_nick),
|
|
|
|
%User{} = followed <- User.get_cached_by_nickname(followed_nick) do
|
2018-12-16 15:41:56 +00:00
|
|
|
User.unfollow(follower, followed)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
followed: followed,
|
|
|
|
follower: follower,
|
|
|
|
action: "unfollow"
|
|
|
|
})
|
2018-12-16 15:41:56 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> json("ok")
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def users_create(%{assigns: %{user: admin}} = conn, %{"users" => users}) do
|
2019-06-01 05:32:53 +00:00
|
|
|
changesets =
|
2019-05-17 06:35:31 +00:00
|
|
|
Enum.map(users, fn %{"nickname" => nickname, "email" => email, "password" => password} ->
|
|
|
|
user_data = %{
|
|
|
|
nickname: nickname,
|
|
|
|
name: nickname,
|
|
|
|
email: email,
|
|
|
|
password: password,
|
|
|
|
password_confirmation: password,
|
|
|
|
bio: "."
|
|
|
|
}
|
|
|
|
|
2019-06-01 05:32:53 +00:00
|
|
|
User.register_changeset(%User{}, user_data, need_confirmation: false)
|
|
|
|
end)
|
|
|
|
|> Enum.reduce(Ecto.Multi.new(), fn changeset, multi ->
|
|
|
|
Ecto.Multi.insert(multi, Ecto.UUID.generate(), changeset)
|
2019-05-17 06:35:31 +00:00
|
|
|
end)
|
2018-10-02 17:03:05 +00:00
|
|
|
|
2019-06-01 05:32:53 +00:00
|
|
|
case Pleroma.Repo.transaction(changesets) do
|
|
|
|
{:ok, users} ->
|
|
|
|
res =
|
|
|
|
users
|
|
|
|
|> Map.values()
|
|
|
|
|> Enum.map(fn user ->
|
|
|
|
{:ok, user} = User.post_register_action(user)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
2019-06-01 05:32:53 +00:00
|
|
|
user
|
|
|
|
end)
|
|
|
|
|> Enum.map(&AccountView.render("created.json", %{user: &1}))
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subjects: Map.values(users),
|
|
|
|
action: "create"
|
|
|
|
})
|
|
|
|
|
2019-06-01 05:32:53 +00:00
|
|
|
conn
|
|
|
|
|> json(res)
|
|
|
|
|
|
|
|
{:error, id, changeset, _} ->
|
|
|
|
res =
|
|
|
|
Enum.map(changesets.operations, fn
|
|
|
|
{current_id, {:changeset, _current_changeset, _}} when current_id == id ->
|
|
|
|
AccountView.render("create-error.json", %{changeset: changeset})
|
|
|
|
|
|
|
|
{_, {:changeset, current_changeset, _}} ->
|
|
|
|
AccountView.render("create-error.json", %{changeset: current_changeset})
|
|
|
|
end)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_status(:conflict)
|
|
|
|
|> json(res)
|
|
|
|
end
|
2018-11-02 07:15:09 +00:00
|
|
|
end
|
|
|
|
|
2019-03-27 18:19:00 +00:00
|
|
|
def user_show(conn, %{"nickname" => nickname}) do
|
2019-07-05 16:33:53 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(nickname) do
|
2019-03-27 18:19:00 +00:00
|
|
|
conn
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("show.json", %{user: user})
|
2019-03-27 18:19:00 +00:00
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
2019-11-14 14:44:07 +00:00
|
|
|
|
|
|
|
def list_instance_statuses(conn, %{"instance" => instance} = params) do
|
2020-02-26 11:47:19 +00:00
|
|
|
with_reblogs = params["with_reblogs"] == "true" || params["with_reblogs"] == true
|
2019-11-14 14:44:07 +00:00
|
|
|
{page, page_size} = page_params(params)
|
|
|
|
|
|
|
|
activities =
|
2020-02-10 11:32:38 +00:00
|
|
|
ActivityPub.fetch_statuses(nil, %{
|
2019-11-14 14:44:07 +00:00
|
|
|
"instance" => instance,
|
|
|
|
"limit" => page_size,
|
2020-02-26 11:47:19 +00:00
|
|
|
"offset" => (page - 1) * page_size,
|
|
|
|
"exclude_reblogs" => !with_reblogs && "true"
|
2019-11-14 14:44:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
conn
|
2019-12-11 15:57:36 +00:00
|
|
|
|> put_view(Pleroma.Web.AdminAPI.StatusView)
|
2019-11-14 14:44:07 +00:00
|
|
|
|> render("index.json", %{activities: activities, as: :activity})
|
|
|
|
end
|
2019-03-27 18:19:00 +00:00
|
|
|
|
2019-07-13 21:37:19 +00:00
|
|
|
def list_user_statuses(conn, %{"nickname" => nickname} = params) do
|
2020-02-26 11:47:19 +00:00
|
|
|
with_reblogs = params["with_reblogs"] == "true" || params["with_reblogs"] == true
|
2019-07-23 22:50:09 +00:00
|
|
|
godmode = params["godmode"] == "true" || params["godmode"] == true
|
|
|
|
|
2019-07-13 21:37:19 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(nickname) do
|
|
|
|
{_, page_size} = page_params(params)
|
|
|
|
|
|
|
|
activities =
|
|
|
|
ActivityPub.fetch_user_activities(user, nil, %{
|
2019-07-23 22:50:09 +00:00
|
|
|
"limit" => page_size,
|
2020-02-26 11:47:19 +00:00
|
|
|
"godmode" => godmode,
|
|
|
|
"exclude_reblogs" => !with_reblogs && "true"
|
2019-07-13 21:37:19 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
conn
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, as: :activity})
|
2019-07-13 21:37:19 +00:00
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def user_toggle_activation(%{assigns: %{user: admin}} = conn, %{"nickname" => nickname}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
user = User.get_cached_by_nickname(nickname)
|
2019-02-26 21:13:38 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
{:ok, updated_user} = User.deactivate(user, !user.deactivated)
|
2019-02-26 21:13:38 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
action = if user.deactivated, do: "activate", else: "deactivate"
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
2019-10-10 21:24:31 +00:00
|
|
|
subject: [user],
|
2019-08-25 19:39:37 +00:00
|
|
|
action: action
|
|
|
|
})
|
|
|
|
|
2019-02-26 21:13:38 +00:00
|
|
|
conn
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("show.json", %{user: updated_user})
|
2019-02-26 21:13:38 +00:00
|
|
|
end
|
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
def user_activate(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames}) do
|
|
|
|
users = Enum.map(nicknames, &User.get_cached_by_nickname/1)
|
|
|
|
{:ok, updated_users} = User.deactivate(users, false)
|
2019-02-26 21:13:38 +00:00
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: users,
|
|
|
|
action: "activate"
|
|
|
|
})
|
2019-02-26 21:13:38 +00:00
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("index.json", %{users: Keyword.values(updated_users)})
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_deactivate(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames}) do
|
|
|
|
users = Enum.map(nicknames, &User.get_cached_by_nickname/1)
|
|
|
|
{:ok, updated_users} = User.deactivate(users, true)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
2019-10-09 14:03:54 +00:00
|
|
|
subject: users,
|
|
|
|
action: "deactivate"
|
2019-08-25 19:39:37 +00:00
|
|
|
})
|
|
|
|
|
2019-02-26 21:13:38 +00:00
|
|
|
conn
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(AccountView)
|
2019-10-09 14:03:54 +00:00
|
|
|
|> render("index.json", %{users: Keyword.values(updated_users)})
|
2019-02-26 21:13:38 +00:00
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def tag_users(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames, "tags" => tags}) do
|
|
|
|
with {:ok, _} <- User.tag(nicknames, tags) do
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
nicknames: nicknames,
|
|
|
|
tags: tags,
|
|
|
|
action: "tag"
|
|
|
|
})
|
|
|
|
|
|
|
|
json_response(conn, :no_content, "")
|
|
|
|
end
|
2018-12-06 17:06:50 +00:00
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def untag_users(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames, "tags" => tags}) do
|
|
|
|
with {:ok, _} <- User.untag(nicknames, tags) do
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
nicknames: nicknames,
|
|
|
|
tags: tags,
|
|
|
|
action: "untag"
|
|
|
|
})
|
|
|
|
|
|
|
|
json_response(conn, :no_content, "")
|
|
|
|
end
|
2018-12-06 17:06:50 +00:00
|
|
|
end
|
|
|
|
|
2019-03-26 22:51:59 +00:00
|
|
|
def list_users(conn, params) do
|
2019-03-02 14:21:18 +00:00
|
|
|
{page, page_size} = page_params(params)
|
2019-03-26 22:51:59 +00:00
|
|
|
filters = maybe_parse_filters(params["filters"])
|
|
|
|
|
|
|
|
search_params = %{
|
|
|
|
query: params["query"],
|
|
|
|
page: page,
|
2019-05-08 14:34:36 +00:00
|
|
|
page_size: page_size,
|
|
|
|
tags: params["tags"],
|
|
|
|
name: params["name"],
|
|
|
|
email: params["email"]
|
2019-03-26 22:51:59 +00:00
|
|
|
}
|
2019-02-28 16:04:47 +00:00
|
|
|
|
2019-03-26 22:51:59 +00:00
|
|
|
with {:ok, users, count} <- Search.user(Map.merge(search_params, filters)),
|
2019-11-19 11:14:02 +00:00
|
|
|
{:ok, users, count} <- filter_service_users(users, count),
|
2019-03-02 14:21:18 +00:00
|
|
|
do:
|
|
|
|
conn
|
|
|
|
|> json(
|
|
|
|
AccountView.render("index.json",
|
|
|
|
users: users,
|
|
|
|
count: count,
|
|
|
|
page_size: page_size
|
|
|
|
)
|
|
|
|
)
|
2019-02-28 16:04:47 +00:00
|
|
|
end
|
|
|
|
|
2019-11-19 11:14:02 +00:00
|
|
|
defp filter_service_users(users, count) do
|
|
|
|
filtered_users = Enum.reject(users, &service_user?/1)
|
|
|
|
count = if Enum.any?(users, &service_user?/1), do: length(filtered_users), else: count
|
2019-10-30 23:26:02 +00:00
|
|
|
|
2019-10-31 12:34:49 +00:00
|
|
|
{:ok, filtered_users, count}
|
|
|
|
end
|
|
|
|
|
2019-11-19 11:14:02 +00:00
|
|
|
defp service_user?(user) do
|
|
|
|
String.match?(user.ap_id, ~r/.*\/relay$/) or
|
|
|
|
String.match?(user.ap_id, ~r/.*\/internal\/fetch$/)
|
2019-10-30 23:26:02 +00:00
|
|
|
end
|
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@filters ~w(local external active deactivated is_admin is_moderator)
|
2019-03-26 22:51:59 +00:00
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec maybe_parse_filters(String.t()) :: %{required(String.t()) => true} | %{}
|
2019-03-26 22:51:59 +00:00
|
|
|
defp maybe_parse_filters(filters) when is_nil(filters) or filters == "", do: %{}
|
|
|
|
|
|
|
|
defp maybe_parse_filters(filters) do
|
|
|
|
filters
|
|
|
|
|> String.split(",")
|
|
|
|
|> Enum.filter(&Enum.member?(@filters, &1))
|
|
|
|
|> Enum.map(&String.to_atom(&1))
|
|
|
|
|> Enum.into(%{}, &{&1, true})
|
|
|
|
end
|
|
|
|
|
2019-10-11 12:58:45 +00:00
|
|
|
def right_add_multiple(%{assigns: %{user: admin}} = conn, %{
|
2019-08-25 19:39:37 +00:00
|
|
|
"permission_group" => permission_group,
|
2019-10-09 14:03:54 +00:00
|
|
|
"nicknames" => nicknames
|
2019-08-25 19:39:37 +00:00
|
|
|
})
|
2018-11-10 14:16:19 +00:00
|
|
|
when permission_group in ["moderator", "admin"] do
|
2019-10-20 19:29:56 +00:00
|
|
|
update = %{:"is_#{permission_group}" => true}
|
2018-11-02 07:15:09 +00:00
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
users = nicknames |> Enum.map(&User.get_cached_by_nickname/1)
|
|
|
|
|
2019-10-20 19:29:56 +00:00
|
|
|
for u <- users, do: User.admin_api_update(u, update)
|
2018-12-01 08:03:16 +00:00
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "grant",
|
|
|
|
actor: admin,
|
2019-10-09 14:03:54 +00:00
|
|
|
subject: users,
|
2019-08-25 19:39:37 +00:00
|
|
|
permission: permission_group
|
|
|
|
})
|
|
|
|
|
2019-10-20 19:29:56 +00:00
|
|
|
json(conn, update)
|
2018-12-09 09:12:48 +00:00
|
|
|
end
|
|
|
|
|
2019-10-11 12:58:45 +00:00
|
|
|
def right_add_multiple(conn, _) do
|
|
|
|
render_error(conn, :not_found, "No such permission_group")
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def right_add(%{assigns: %{user: admin}} = conn, %{
|
|
|
|
"permission_group" => permission_group,
|
|
|
|
"nickname" => nickname
|
|
|
|
})
|
2018-11-10 14:16:19 +00:00
|
|
|
when permission_group in ["moderator", "admin"] do
|
2019-10-16 18:59:21 +00:00
|
|
|
fields = %{:"is_#{permission_group}" => true}
|
2018-11-02 07:15:09 +00:00
|
|
|
|
2019-09-24 12:50:07 +00:00
|
|
|
{:ok, user} =
|
|
|
|
nickname
|
|
|
|
|> User.get_cached_by_nickname()
|
2019-10-16 18:59:21 +00:00
|
|
|
|> User.admin_api_update(fields)
|
2018-12-01 08:03:16 +00:00
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "grant",
|
|
|
|
actor: admin,
|
2019-10-11 12:58:45 +00:00
|
|
|
subject: [user],
|
2019-08-25 19:39:37 +00:00
|
|
|
permission: permission_group
|
|
|
|
})
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
json(conn, fields)
|
2018-12-09 09:12:48 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def right_add(conn, _) do
|
2019-07-10 09:25:58 +00:00
|
|
|
render_error(conn, :not_found, "No such permission_group")
|
2018-11-02 07:15:09 +00:00
|
|
|
end
|
|
|
|
|
2018-11-02 07:19:56 +00:00
|
|
|
def right_get(conn, %{"nickname" => nickname}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
user = User.get_cached_by_nickname(nickname)
|
2018-11-02 07:19:56 +00:00
|
|
|
|
|
|
|
conn
|
2018-12-01 08:03:16 +00:00
|
|
|
|> json(%{
|
2019-10-16 18:59:21 +00:00
|
|
|
is_moderator: user.is_moderator,
|
|
|
|
is_admin: user.is_admin
|
2018-12-01 08:03:16 +00:00
|
|
|
})
|
2018-11-02 07:19:56 +00:00
|
|
|
end
|
|
|
|
|
2019-10-11 12:58:45 +00:00
|
|
|
def right_delete_multiple(
|
2019-10-09 14:03:54 +00:00
|
|
|
%{assigns: %{user: %{nickname: admin_nickname} = admin}} = conn,
|
2018-11-10 13:42:34 +00:00
|
|
|
%{
|
2018-11-10 14:16:19 +00:00
|
|
|
"permission_group" => permission_group,
|
2019-10-09 14:03:54 +00:00
|
|
|
"nicknames" => nicknames
|
2018-11-10 13:42:34 +00:00
|
|
|
}
|
|
|
|
)
|
2018-11-10 14:16:19 +00:00
|
|
|
when permission_group in ["moderator", "admin"] do
|
2019-10-09 14:03:54 +00:00
|
|
|
with false <- Enum.member?(nicknames, admin_nickname) do
|
2019-10-20 19:29:56 +00:00
|
|
|
update = %{:"is_#{permission_group}" => false}
|
2018-11-02 07:15:09 +00:00
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
users = nicknames |> Enum.map(&User.get_cached_by_nickname/1)
|
2018-12-01 08:03:16 +00:00
|
|
|
|
2019-10-20 19:29:56 +00:00
|
|
|
for u <- users, do: User.admin_api_update(u, update)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
2019-10-09 14:03:54 +00:00
|
|
|
action: "revoke",
|
2019-08-25 19:39:37 +00:00
|
|
|
actor: admin,
|
2019-10-09 14:03:54 +00:00
|
|
|
subject: users,
|
|
|
|
permission: permission_group
|
2019-08-25 19:39:37 +00:00
|
|
|
})
|
|
|
|
|
2019-10-20 19:29:56 +00:00
|
|
|
json(conn, update)
|
2019-10-09 14:03:54 +00:00
|
|
|
else
|
|
|
|
_ -> render_error(conn, :forbidden, "You can't revoke your own admin/moderator status.")
|
2019-08-25 19:39:37 +00:00
|
|
|
end
|
2019-02-19 15:40:57 +00:00
|
|
|
end
|
|
|
|
|
2019-10-11 12:58:45 +00:00
|
|
|
def right_delete_multiple(conn, _) do
|
2019-10-09 14:03:54 +00:00
|
|
|
render_error(conn, :not_found, "No such permission_group")
|
2019-09-24 12:50:07 +00:00
|
|
|
end
|
|
|
|
|
2018-11-10 13:42:34 +00:00
|
|
|
def right_delete(
|
2019-09-24 12:50:07 +00:00
|
|
|
%{assigns: %{user: admin}} = conn,
|
2018-11-10 13:42:34 +00:00
|
|
|
%{
|
2018-11-10 14:16:19 +00:00
|
|
|
"permission_group" => permission_group,
|
2018-11-10 13:42:34 +00:00
|
|
|
"nickname" => nickname
|
|
|
|
}
|
|
|
|
)
|
2018-11-10 14:16:19 +00:00
|
|
|
when permission_group in ["moderator", "admin"] do
|
2019-10-16 18:59:21 +00:00
|
|
|
fields = %{:"is_#{permission_group}" => false}
|
2018-11-02 07:15:09 +00:00
|
|
|
|
2019-09-24 12:50:07 +00:00
|
|
|
{:ok, user} =
|
|
|
|
nickname
|
|
|
|
|> User.get_cached_by_nickname()
|
2019-10-16 18:59:21 +00:00
|
|
|
|> User.admin_api_update(fields)
|
2018-12-01 08:03:16 +00:00
|
|
|
|
2019-09-24 12:50:07 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "revoke",
|
|
|
|
actor: admin,
|
2019-10-11 12:58:45 +00:00
|
|
|
subject: [user],
|
2019-09-24 12:50:07 +00:00
|
|
|
permission: permission_group
|
|
|
|
})
|
2019-08-25 19:39:37 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
json(conn, fields)
|
2018-11-02 07:15:09 +00:00
|
|
|
end
|
|
|
|
|
2019-10-11 12:58:45 +00:00
|
|
|
def right_delete(%{assigns: %{user: %{nickname: nickname}}} = conn, %{"nickname" => nickname}) do
|
|
|
|
render_error(conn, :forbidden, "You can't revoke your own admin status.")
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2019-10-11 16:12:29 +00:00
|
|
|
def relay_list(conn, _params) do
|
|
|
|
with {:ok, list} <- Relay.list() do
|
|
|
|
json(conn, %{relays: list})
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
2019-10-20 19:29:56 +00:00
|
|
|
end
|
|
|
|
end
|
2019-10-11 16:12:29 +00:00
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def relay_follow(%{assigns: %{user: admin}} = conn, %{"relay_url" => target}) do
|
2018-12-09 09:12:48 +00:00
|
|
|
with {:ok, _message} <- Relay.follow(target) do
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "relay_follow",
|
|
|
|
actor: admin,
|
|
|
|
target: target
|
|
|
|
})
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
json(conn, target)
|
2018-11-10 13:55:49 +00:00
|
|
|
else
|
2018-12-09 09:12:48 +00:00
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
|
|
|
|> json(target)
|
2018-11-10 13:55:49 +00:00
|
|
|
end
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def relay_unfollow(%{assigns: %{user: admin}} = conn, %{"relay_url" => target}) do
|
2018-12-09 09:12:48 +00:00
|
|
|
with {:ok, _message} <- Relay.unfollow(target) do
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "relay_unfollow",
|
|
|
|
actor: admin,
|
|
|
|
target: target
|
|
|
|
})
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
json(conn, target)
|
2018-11-10 13:55:49 +00:00
|
|
|
else
|
2018-12-09 09:12:48 +00:00
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
|
|
|
|> json(target)
|
2018-11-10 13:55:49 +00:00
|
|
|
end
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2018-12-13 15:23:05 +00:00
|
|
|
@doc "Sends registration invite via email"
|
|
|
|
def email_invite(%{assigns: %{user: user}} = conn, %{"email" => email} = params) do
|
2020-04-01 17:26:33 +00:00
|
|
|
with {_, false} <- {:registrations_open, Config.get([:instance, :registrations_open])},
|
|
|
|
{_, true} <- {:invites_enabled, Config.get([:instance, :invites_enabled])},
|
2019-04-06 13:25:19 +00:00
|
|
|
{:ok, invite_token} <- UserInviteToken.create_invite(),
|
2018-12-13 15:23:05 +00:00
|
|
|
email <-
|
2019-04-10 04:14:37 +00:00
|
|
|
Pleroma.Emails.UserEmail.user_invitation_email(
|
|
|
|
user,
|
|
|
|
invite_token,
|
|
|
|
email,
|
|
|
|
params["name"]
|
|
|
|
),
|
2019-04-10 04:05:05 +00:00
|
|
|
{:ok, _} <- Pleroma.Emails.Mailer.deliver(email) do
|
2018-12-13 15:23:05 +00:00
|
|
|
json_response(conn, :no_content, "")
|
2020-04-01 17:26:33 +00:00
|
|
|
else
|
|
|
|
{:registrations_open, _} ->
|
|
|
|
errors(
|
|
|
|
conn,
|
2020-04-09 10:17:31 +00:00
|
|
|
{:error, "To send invites you need to set the `registrations_open` option to false."}
|
2020-04-01 17:26:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
{:invites_enabled, _} ->
|
|
|
|
errors(
|
|
|
|
conn,
|
2020-04-09 10:28:54 +00:00
|
|
|
{:error, "To send invites you need to set the `invites_enabled` option to true."}
|
2020-04-01 17:26:33 +00:00
|
|
|
)
|
2018-12-13 15:23:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-13 05:07:29 +00:00
|
|
|
@doc "Create an account registration invite token"
|
|
|
|
def create_invite_token(conn, params) do
|
2019-09-06 14:14:31 +00:00
|
|
|
opts = %{}
|
2019-04-06 13:25:19 +00:00
|
|
|
|
2019-09-06 14:14:31 +00:00
|
|
|
opts =
|
|
|
|
if params["max_use"],
|
|
|
|
do: Map.put(opts, :max_use, params["max_use"]),
|
|
|
|
else: opts
|
|
|
|
|
|
|
|
opts =
|
|
|
|
if params["expires_at"],
|
|
|
|
do: Map.put(opts, :expires_at, params["expires_at"]),
|
|
|
|
else: opts
|
|
|
|
|
|
|
|
{:ok, invite} = UserInviteToken.create_invite(opts)
|
|
|
|
|
|
|
|
json(conn, AccountView.render("invite.json", %{invite: invite}))
|
2019-04-06 13:25:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Get list of created invites"
|
2019-04-07 12:48:52 +00:00
|
|
|
def invites(conn, _params) do
|
2019-04-06 13:25:19 +00:00
|
|
|
invites = UserInviteToken.list_invites()
|
|
|
|
|
|
|
|
conn
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("invites.json", %{invites: invites})
|
2019-04-06 13:25:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Revokes invite by token"
|
2019-04-07 12:48:52 +00:00
|
|
|
def revoke_invite(conn, %{"token" => token}) do
|
2019-07-22 02:43:15 +00:00
|
|
|
with {:ok, invite} <- UserInviteToken.find_by_token(token),
|
|
|
|
{:ok, updated_invite} = UserInviteToken.update_invite(invite, %{used: true}) do
|
|
|
|
conn
|
2019-09-23 22:33:59 +00:00
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("invite.json", %{invite: updated_invite})
|
2019-07-22 02:43:15 +00:00
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
|
|
|
end
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
@doc "Get a password reset token (base64 string) for given nickname"
|
2018-10-12 04:28:20 +00:00
|
|
|
def get_password_reset(conn, %{"nickname" => nickname}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
(%User{local: true} = user) = User.get_cached_by_nickname(nickname)
|
2018-10-02 17:03:05 +00:00
|
|
|
{:ok, token} = Pleroma.PasswordResetToken.create_token(user)
|
|
|
|
|
|
|
|
conn
|
2019-09-17 20:09:08 +00:00
|
|
|
|> json(%{
|
|
|
|
token: token.token,
|
2019-09-22 13:36:59 +00:00
|
|
|
link: Router.Helpers.reset_password_url(Endpoint, :reset, token.token)
|
2019-09-17 20:09:08 +00:00
|
|
|
})
|
2018-10-12 04:28:20 +00:00
|
|
|
end
|
|
|
|
|
2019-09-22 13:08:07 +00:00
|
|
|
@doc "Force password reset for a given user"
|
2019-11-01 15:45:47 +00:00
|
|
|
def force_password_reset(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames}) do
|
|
|
|
users = nicknames |> Enum.map(&User.get_cached_by_nickname/1)
|
2019-09-22 13:08:07 +00:00
|
|
|
|
2020-01-20 10:53:14 +00:00
|
|
|
Enum.each(users, &User.force_password_reset_async/1)
|
2019-11-01 15:45:47 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: users,
|
|
|
|
action: "force_password_reset"
|
|
|
|
})
|
2019-09-22 13:08:07 +00:00
|
|
|
|
|
|
|
json_response(conn, :no_content, "")
|
2018-10-12 04:28:20 +00:00
|
|
|
end
|
|
|
|
|
2020-01-31 18:07:46 +00:00
|
|
|
@doc "Show a given user's credentials"
|
|
|
|
def show_user_credentials(%{assigns: %{user: admin}} = conn, %{"nickname" => nickname}) do
|
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(nickname) do
|
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("credentials.json", %{user: user, for: admin})
|
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Updates a given user"
|
|
|
|
def update_user_credentials(
|
|
|
|
%{assigns: %{user: admin}} = conn,
|
|
|
|
%{"nickname" => nickname} = params
|
|
|
|
) do
|
2020-01-28 06:47:59 +00:00
|
|
|
with {_, user} <- {:user, User.get_cached_by_nickname(nickname)},
|
|
|
|
{:ok, _user} <-
|
2020-01-31 18:07:46 +00:00
|
|
|
User.update_as_admin(user, params) do
|
2020-01-28 06:47:59 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: [user],
|
2020-01-31 18:07:46 +00:00
|
|
|
action: "updated_users"
|
2020-01-28 06:47:59 +00:00
|
|
|
})
|
|
|
|
|
2020-01-31 18:07:46 +00:00
|
|
|
if params["password"] do
|
|
|
|
User.force_password_reset_async(user)
|
|
|
|
end
|
2020-01-28 06:47:59 +00:00
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: [user],
|
|
|
|
action: "force_password_reset"
|
|
|
|
})
|
|
|
|
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:error, changeset} ->
|
|
|
|
{_, {error, _}} = Enum.at(changeset.errors, 0)
|
|
|
|
json(conn, %{error: "New password #{error}."})
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
json(conn, %{error: "Unable to change password."})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
def list_reports(conn, params) do
|
2019-09-24 22:25:42 +00:00
|
|
|
{page, page_size} = page_params(params)
|
|
|
|
|
2019-12-03 14:54:07 +00:00
|
|
|
reports = Utils.get_reports(params, page, page_size)
|
|
|
|
|
2019-10-07 12:01:18 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ReportView)
|
2019-12-03 14:54:07 +00:00
|
|
|
|> render("index.json", %{reports: reports})
|
2019-10-07 12:01:18 +00:00
|
|
|
end
|
2019-05-16 19:09:18 +00:00
|
|
|
|
|
|
|
def report_show(conn, %{"id" => id}) do
|
|
|
|
with %Activity{} = report <- Activity.get_by_id(id) do
|
|
|
|
conn
|
|
|
|
|> put_view(ReportView)
|
2019-09-23 22:33:59 +00:00
|
|
|
|> render("show.json", Report.extract_report_info(report))
|
2019-05-16 19:09:18 +00:00
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-04 16:00:58 +00:00
|
|
|
def reports_update(%{assigns: %{user: admin}} = conn, %{"reports" => reports}) do
|
|
|
|
result =
|
|
|
|
reports
|
|
|
|
|> Enum.map(fn report ->
|
|
|
|
with {:ok, activity} <- CommonAPI.update_report_state(report["id"], report["state"]) do
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "report_update",
|
|
|
|
actor: admin,
|
|
|
|
subject: activity
|
|
|
|
})
|
|
|
|
|
|
|
|
activity
|
|
|
|
else
|
|
|
|
{:error, message} -> %{id: report["id"], error: message}
|
|
|
|
end
|
|
|
|
end)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
2019-10-04 16:00:58 +00:00
|
|
|
case Enum.any?(result, &Map.has_key?(&1, :error)) do
|
|
|
|
true -> json_response(conn, :bad_request, result)
|
|
|
|
false -> json_response(conn, :no_content, "")
|
2019-05-16 19:09:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-03 14:54:07 +00:00
|
|
|
def report_notes_create(%{assigns: %{user: user}} = conn, %{
|
2019-12-08 08:27:23 +00:00
|
|
|
"id" => report_id,
|
2019-12-03 14:54:07 +00:00
|
|
|
"content" => content
|
|
|
|
}) do
|
2019-12-08 08:27:23 +00:00
|
|
|
with {:ok, _} <- ReportNote.create(user.id, report_id, content) do
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
2019-12-08 08:27:23 +00:00
|
|
|
action: "report_note",
|
2019-08-25 19:39:37 +00:00
|
|
|
actor: user,
|
2019-12-08 08:27:23 +00:00
|
|
|
subject: Activity.get_by_id(report_id),
|
2019-12-03 14:54:07 +00:00
|
|
|
text: content
|
2019-08-25 19:39:37 +00:00
|
|
|
})
|
|
|
|
|
2019-12-03 14:54:07 +00:00
|
|
|
json_response(conn, :no_content, "")
|
2019-05-16 19:09:18 +00:00
|
|
|
else
|
2019-12-03 14:54:07 +00:00
|
|
|
_ -> json_response(conn, :bad_request, "")
|
2019-05-16 19:09:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-08 08:27:23 +00:00
|
|
|
def report_notes_delete(%{assigns: %{user: user}} = conn, %{
|
|
|
|
"id" => note_id,
|
|
|
|
"report_id" => report_id
|
|
|
|
}) do
|
|
|
|
with {:ok, note} <- ReportNote.destroy(note_id) do
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "report_note_delete",
|
|
|
|
actor: user,
|
|
|
|
subject: Activity.get_by_id(report_id),
|
|
|
|
text: note.content
|
|
|
|
})
|
|
|
|
|
|
|
|
json_response(conn, :no_content, "")
|
|
|
|
else
|
|
|
|
_ -> json_response(conn, :bad_request, "")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-05 12:01:45 +00:00
|
|
|
def list_statuses(%{assigns: %{user: _admin}} = conn, params) do
|
2020-02-10 11:32:38 +00:00
|
|
|
godmode = params["godmode"] == "true" || params["godmode"] == true
|
|
|
|
local_only = params["local_only"] == "true" || params["local_only"] == true
|
2020-03-02 13:47:30 +00:00
|
|
|
with_reblogs = params["with_reblogs"] == "true" || params["with_reblogs"] == true
|
2020-02-10 11:32:38 +00:00
|
|
|
{page, page_size} = page_params(params)
|
|
|
|
|
|
|
|
activities =
|
2020-03-05 12:01:45 +00:00
|
|
|
ActivityPub.fetch_statuses(nil, %{
|
2020-02-10 11:32:38 +00:00
|
|
|
"godmode" => godmode,
|
|
|
|
"local_only" => local_only,
|
|
|
|
"limit" => page_size,
|
2020-03-02 13:47:30 +00:00
|
|
|
"offset" => (page - 1) * page_size,
|
|
|
|
"exclude_reblogs" => !with_reblogs && "true"
|
2020-02-10 11:32:38 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(Pleroma.Web.AdminAPI.StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, as: :activity})
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def status_update(%{assigns: %{user: admin}} = conn, %{"id" => id} = params) do
|
2019-05-16 19:09:18 +00:00
|
|
|
with {:ok, activity} <- CommonAPI.update_activity_scope(id, params) do
|
2019-08-25 19:39:37 +00:00
|
|
|
{:ok, sensitive} = Ecto.Type.cast(:boolean, params["sensitive"])
|
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "status_update",
|
|
|
|
actor: admin,
|
|
|
|
subject: activity,
|
|
|
|
sensitive: sensitive,
|
|
|
|
visibility: params["visibility"]
|
|
|
|
})
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
2019-09-09 14:49:02 +00:00
|
|
|
|> render("show.json", %{activity: activity})
|
2019-05-16 19:09:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def status_delete(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
with {:ok, %Activity{}} <- CommonAPI.delete(id, user) do
|
2019-08-25 19:39:37 +00:00
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
action: "status_delete",
|
|
|
|
actor: user,
|
|
|
|
subject_id: id
|
|
|
|
})
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-25 19:39:37 +00:00
|
|
|
def list_log(conn, params) do
|
|
|
|
{page, page_size} = page_params(params)
|
|
|
|
|
2019-08-27 17:48:16 +00:00
|
|
|
log =
|
|
|
|
ModerationLog.get_all(%{
|
|
|
|
page: page,
|
|
|
|
page_size: page_size,
|
|
|
|
start_date: params["start_date"],
|
2019-08-30 21:57:15 +00:00
|
|
|
end_date: params["end_date"],
|
|
|
|
user_id: params["user_id"],
|
|
|
|
search: params["search"]
|
2019-08-27 17:48:16 +00:00
|
|
|
})
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(ModerationLogView)
|
|
|
|
|> render("index.json", %{log: log})
|
|
|
|
end
|
|
|
|
|
2019-09-29 08:17:38 +00:00
|
|
|
def config_descriptions(conn, _params) do
|
|
|
|
conn
|
|
|
|
|> Plug.Conn.put_resp_content_type("application/json")
|
|
|
|
|> Plug.Conn.send_resp(200, @descriptions_json)
|
|
|
|
end
|
|
|
|
|
2020-01-17 08:45:44 +00:00
|
|
|
def config_show(conn, %{"only_db" => true}) do
|
2020-01-10 16:34:19 +00:00
|
|
|
with :ok <- configurable_from_database(conn) do
|
2020-01-16 05:50:27 +00:00
|
|
|
configs = Pleroma.Repo.all(ConfigDB)
|
2019-09-29 08:17:38 +00:00
|
|
|
|
2020-02-05 14:06:01 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ConfigView)
|
|
|
|
|> render("index.json", %{configs: configs})
|
2019-12-06 14:50:53 +00:00
|
|
|
end
|
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
|
2020-01-17 08:45:44 +00:00
|
|
|
def config_show(conn, _params) do
|
|
|
|
with :ok <- configurable_from_database(conn) do
|
|
|
|
configs = ConfigDB.get_all_as_keyword()
|
|
|
|
|
2020-02-05 14:06:01 +00:00
|
|
|
merged =
|
2020-03-11 13:25:53 +00:00
|
|
|
Config.Holder.default_config()
|
2020-02-05 14:06:01 +00:00
|
|
|
|> ConfigDB.merge(configs)
|
|
|
|
|> Enum.map(fn {group, values} ->
|
|
|
|
Enum.map(values, fn {key, value} ->
|
|
|
|
db =
|
|
|
|
if configs[group][key] do
|
|
|
|
ConfigDB.get_db_keys(configs[group][key], key)
|
|
|
|
end
|
|
|
|
|
|
|
|
db_value = configs[group][key]
|
|
|
|
|
|
|
|
merged_value =
|
|
|
|
if !is_nil(db_value) and Keyword.keyword?(db_value) and
|
|
|
|
ConfigDB.sub_key_full_update?(group, key, Keyword.keys(db_value)) do
|
|
|
|
ConfigDB.merge_group(group, key, value, db_value)
|
|
|
|
else
|
|
|
|
value
|
|
|
|
end
|
|
|
|
|
|
|
|
setting = %{
|
|
|
|
group: ConfigDB.convert(group),
|
|
|
|
key: ConfigDB.convert(key),
|
|
|
|
value: ConfigDB.convert(merged_value)
|
|
|
|
}
|
|
|
|
|
|
|
|
if db, do: Map.put(setting, :db, db), else: setting
|
2020-01-17 08:45:44 +00:00
|
|
|
end)
|
2020-02-05 14:06:01 +00:00
|
|
|
end)
|
|
|
|
|> List.flatten()
|
2020-01-17 08:45:44 +00:00
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
response = %{configs: merged}
|
|
|
|
|
|
|
|
response =
|
|
|
|
if Restarter.Pleroma.need_reboot?() do
|
|
|
|
Map.put(response, :need_reboot, true)
|
|
|
|
else
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
json(conn, response)
|
2020-01-17 08:45:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-06 14:50:53 +00:00
|
|
|
def config_update(conn, %{"configs" => configs}) do
|
2020-01-10 16:34:19 +00:00
|
|
|
with :ok <- configurable_from_database(conn) do
|
2020-01-22 12:14:11 +00:00
|
|
|
{_errors, results} =
|
2019-12-06 14:50:53 +00:00
|
|
|
Enum.map(configs, fn
|
2019-12-26 07:05:30 +00:00
|
|
|
%{"group" => group, "key" => key, "delete" => true} = params ->
|
2020-01-22 12:14:11 +00:00
|
|
|
ConfigDB.delete(%{group: group, key: key, subkeys: params["subkeys"]})
|
2019-12-06 14:50:53 +00:00
|
|
|
|
|
|
|
%{"group" => group, "key" => key, "value" => value} ->
|
2020-01-22 12:14:11 +00:00
|
|
|
ConfigDB.update_or_create(%{group: group, key: key, value: value})
|
2019-12-06 14:50:53 +00:00
|
|
|
end)
|
2020-01-22 12:14:11 +00:00
|
|
|
|> Enum.split_with(fn result -> elem(result, 0) == :error end)
|
|
|
|
|
|
|
|
{deleted, updated} =
|
|
|
|
results
|
|
|
|
|> Enum.map(fn {:ok, config} ->
|
2020-01-17 15:08:45 +00:00
|
|
|
Map.put(config, :db, ConfigDB.get_db_keys(config))
|
|
|
|
end)
|
2020-01-22 12:14:11 +00:00
|
|
|
|> Enum.split_with(fn config ->
|
|
|
|
Ecto.get_meta(config, :state) == :deleted
|
|
|
|
end)
|
2019-12-06 14:50:53 +00:00
|
|
|
|
2020-02-08 09:55:37 +00:00
|
|
|
Config.TransferTask.load_and_update_env(deleted, false)
|
2020-01-25 15:42:04 +00:00
|
|
|
|
|
|
|
need_reboot? =
|
2020-02-08 09:55:37 +00:00
|
|
|
Restarter.Pleroma.need_reboot?() ||
|
|
|
|
Enum.any?(updated, fn config ->
|
|
|
|
group = ConfigDB.from_string(config.group)
|
|
|
|
key = ConfigDB.from_string(config.key)
|
|
|
|
value = ConfigDB.from_binary(config.value)
|
|
|
|
Config.TransferTask.pleroma_need_restart?(group, key, value)
|
|
|
|
end)
|
2019-12-06 14:50:53 +00:00
|
|
|
|
2020-01-25 15:42:04 +00:00
|
|
|
response = %{configs: updated}
|
|
|
|
|
|
|
|
response =
|
2020-02-08 09:55:37 +00:00
|
|
|
if need_reboot? do
|
|
|
|
Restarter.Pleroma.need_reboot()
|
|
|
|
Map.put(response, :need_reboot, need_reboot?)
|
|
|
|
else
|
|
|
|
response
|
|
|
|
end
|
2019-12-06 14:50:53 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(ConfigView)
|
2020-01-25 15:42:04 +00:00
|
|
|
|> render("index.json", response)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def restart(conn, _params) do
|
|
|
|
with :ok <- configurable_from_database(conn) do
|
2020-02-08 09:55:37 +00:00
|
|
|
Restarter.Pleroma.restart(Config.get(:env), 50)
|
2020-01-25 15:42:04 +00:00
|
|
|
|
|
|
|
json(conn, %{})
|
2019-12-06 14:50:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-10 16:34:19 +00:00
|
|
|
defp configurable_from_database(conn) do
|
2020-02-08 09:55:37 +00:00
|
|
|
if Config.get(:configurable_from_database) do
|
2019-12-06 14:50:53 +00:00
|
|
|
:ok
|
|
|
|
else
|
2020-01-10 16:49:40 +00:00
|
|
|
errors(
|
|
|
|
conn,
|
|
|
|
{:error, "To use this endpoint you need to enable configuration from database."}
|
|
|
|
)
|
2019-12-06 14:50:53 +00:00
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
end
|
|
|
|
|
2019-09-12 17:38:57 +00:00
|
|
|
def reload_emoji(conn, _params) do
|
|
|
|
Pleroma.Emoji.reload()
|
|
|
|
|
|
|
|
conn |> json("ok")
|
|
|
|
end
|
|
|
|
|
2019-11-19 11:14:02 +00:00
|
|
|
def confirm_email(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames}) do
|
|
|
|
users = nicknames |> Enum.map(&User.get_cached_by_nickname/1)
|
|
|
|
|
|
|
|
User.toggle_confirmation(users)
|
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: users,
|
|
|
|
action: "confirm_email"
|
|
|
|
})
|
|
|
|
|
|
|
|
conn |> json("")
|
|
|
|
end
|
|
|
|
|
|
|
|
def resend_confirmation_email(%{assigns: %{user: admin}} = conn, %{"nicknames" => nicknames}) do
|
|
|
|
users = nicknames |> Enum.map(&User.get_cached_by_nickname/1)
|
|
|
|
|
|
|
|
User.try_send_confirmation_email(users)
|
|
|
|
|
|
|
|
ModerationLog.insert_log(%{
|
|
|
|
actor: admin,
|
|
|
|
subject: users,
|
|
|
|
action: "resend_confirmation_email"
|
|
|
|
})
|
|
|
|
|
|
|
|
conn |> json("")
|
|
|
|
end
|
|
|
|
|
2020-01-09 19:18:55 +00:00
|
|
|
def stats(conn, _) do
|
|
|
|
count = Stats.get_status_visibility_count()
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> json(%{"status_visibility" => count})
|
|
|
|
end
|
|
|
|
|
2019-03-27 18:19:00 +00:00
|
|
|
def errors(conn, {:error, :not_found}) do
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:not_found)
|
|
|
|
|> json(dgettext("errors", "Not found"))
|
2019-03-27 18:19:00 +00:00
|
|
|
end
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
def errors(conn, {:error, reason}) do
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:bad_request)
|
2019-05-16 19:09:18 +00:00
|
|
|
|> json(reason)
|
|
|
|
end
|
|
|
|
|
2018-10-12 04:28:20 +00:00
|
|
|
def errors(conn, {:param_cast, _}) do
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json(dgettext("errors", "Invalid parameters"))
|
2018-10-12 04:28:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def errors(conn, _) do
|
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:internal_server_error)
|
|
|
|
|> json(dgettext("errors", "Something went wrong"))
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
2019-03-02 14:21:18 +00:00
|
|
|
|
|
|
|
defp page_params(params) do
|
|
|
|
{get_page(params["page"]), get_page_size(params["page_size"])}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_page(page_string) when is_nil(page_string), do: 1
|
|
|
|
|
|
|
|
defp get_page(page_string) do
|
|
|
|
case Integer.parse(page_string) do
|
|
|
|
{page, _} -> page
|
|
|
|
:error -> 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_page_size(page_size_string) when is_nil(page_size_string), do: @users_page_size
|
|
|
|
|
|
|
|
defp get_page_size(page_size_string) do
|
|
|
|
case Integer.parse(page_size_string) do
|
|
|
|
{page_size, _} -> page_size
|
|
|
|
:error -> @users_page_size
|
|
|
|
end
|
|
|
|
end
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|