2019-06-20 00:52:34 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Admin::AccountsController < Api::BaseController
|
|
|
|
include Authorization
|
|
|
|
include AccountableConcern
|
|
|
|
|
|
|
|
LIMIT = 100
|
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
before_action -> { authorize_if_got_token! :'admin:read', :'admin:read:accounts' }, only: [:index, :show]
|
|
|
|
before_action -> { authorize_if_got_token! :'admin:write', :'admin:write:accounts' }, except: [:index, :show]
|
2019-06-20 00:52:34 +00:00
|
|
|
before_action :set_accounts, only: :index
|
|
|
|
before_action :set_account, except: :index
|
|
|
|
before_action :require_local_account!, only: [:enable, :approve, :reject]
|
|
|
|
|
2022-07-05 00:41:40 +00:00
|
|
|
after_action :verify_authorized
|
2019-06-20 00:52:34 +00:00
|
|
|
after_action :insert_pagination_headers, only: :index
|
|
|
|
|
|
|
|
FILTER_PARAMS = %i(
|
|
|
|
local
|
|
|
|
remote
|
|
|
|
by_domain
|
|
|
|
active
|
|
|
|
pending
|
|
|
|
disabled
|
2020-11-04 19:45:01 +00:00
|
|
|
sensitized
|
2019-06-20 00:52:34 +00:00
|
|
|
silenced
|
|
|
|
suspended
|
|
|
|
username
|
|
|
|
display_name
|
|
|
|
email
|
|
|
|
ip
|
|
|
|
staff
|
|
|
|
).freeze
|
|
|
|
|
|
|
|
PAGINATION_PARAMS = (%i(limit) + FILTER_PARAMS).freeze
|
|
|
|
|
|
|
|
def index
|
|
|
|
authorize :account, :index?
|
|
|
|
render json: @accounts, each_serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
authorize @account, :show?
|
|
|
|
render json: @account, serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
def enable
|
|
|
|
authorize @account.user, :enable?
|
|
|
|
@account.user.enable!
|
|
|
|
log_action :enable, @account.user
|
|
|
|
render json: @account, serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
def approve
|
|
|
|
authorize @account.user, :approve?
|
|
|
|
@account.user.approve!
|
|
|
|
render json: @account, serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject
|
|
|
|
authorize @account.user, :reject?
|
2020-09-15 12:37:58 +00:00
|
|
|
DeleteAccountService.new.call(@account, reserve_email: false, reserve_username: false)
|
2022-10-30 00:43:57 +00:00
|
|
|
render_empty
|
2020-09-15 12:37:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
authorize @account, :destroy?
|
|
|
|
Admin::AccountDeletionWorker.perform_async(@account.id)
|
2022-10-30 00:43:57 +00:00
|
|
|
render_empty
|
2019-06-20 00:52:34 +00:00
|
|
|
end
|
|
|
|
|
2020-11-04 19:45:01 +00:00
|
|
|
def unsensitive
|
|
|
|
authorize @account, :unsensitive?
|
|
|
|
@account.unsensitize!
|
|
|
|
log_action :unsensitive, @account
|
|
|
|
render json: @account, serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
2019-06-20 00:52:34 +00:00
|
|
|
def unsilence
|
|
|
|
authorize @account, :unsilence?
|
|
|
|
@account.unsilence!
|
|
|
|
log_action :unsilence, @account
|
|
|
|
render json: @account, serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsuspend
|
|
|
|
authorize @account, :unsuspend?
|
|
|
|
@account.unsuspend!
|
2020-09-15 12:37:58 +00:00
|
|
|
Admin::UnsuspensionWorker.perform_async(@account.id)
|
2019-06-20 00:52:34 +00:00
|
|
|
log_action :unsuspend, @account
|
|
|
|
render json: @account, serializer: REST::Admin::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_accounts
|
2022-01-16 12:23:50 +00:00
|
|
|
@accounts = filtered_accounts.order(id: :desc).includes(user: [:invite_request, :invite, :ips]).to_a_paginated_by_id(limit_param(LIMIT), params_slice(:max_id, :since_id, :min_id))
|
2019-06-20 00:52:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_accounts
|
2022-03-28 21:57:38 +00:00
|
|
|
AccountFilter.new(translated_filter_params).results
|
2019-06-20 00:52:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def filter_params
|
|
|
|
params.permit(*FILTER_PARAMS)
|
|
|
|
end
|
|
|
|
|
2022-03-28 21:57:38 +00:00
|
|
|
def translated_filter_params
|
|
|
|
translated_params = { origin: 'local', status: 'active' }.merge(filter_params.slice(*AccountFilter::KEYS))
|
|
|
|
|
|
|
|
translated_params[:origin] = 'remote' if params[:remote].present?
|
|
|
|
|
|
|
|
%i(active pending disabled silenced suspended).each do |status|
|
|
|
|
translated_params[:status] = status.to_s if params[status].present?
|
|
|
|
end
|
|
|
|
|
2022-07-05 00:41:40 +00:00
|
|
|
if params[:staff].present?
|
|
|
|
translated_params[:role_ids] = UserRole.that_can(:manage_reports).map(&:id)
|
|
|
|
end
|
2022-03-28 21:57:38 +00:00
|
|
|
|
|
|
|
translated_params
|
|
|
|
end
|
|
|
|
|
2019-06-20 00:52:34 +00:00
|
|
|
def insert_pagination_headers
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
|
|
|
api_v1_admin_accounts_url(pagination_params(max_id: pagination_max_id)) if records_continue?
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
|
|
|
api_v1_admin_accounts_url(pagination_params(min_id: pagination_since_id)) unless @accounts.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_max_id
|
|
|
|
@accounts.last.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_since_id
|
|
|
|
@accounts.first.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def records_continue?
|
|
|
|
@accounts.size == limit_param(LIMIT)
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_params(core_params)
|
|
|
|
params.slice(*PAGINATION_PARAMS).permit(*PAGINATION_PARAMS).merge(core_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def require_local_account!
|
|
|
|
forbidden unless @account.local? && @account.user.present?
|
|
|
|
end
|
|
|
|
end
|