mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
e84fecb7e9
* Add logging of admin actions * Update brakeman whitelist * Log creates, updates and destroys with history of changes * i18n: Update Polish translation (#5782) Signed-off-by: Marcin Mikołajczak <me@m4sk.in> * Split admin navigation into moderation and administration * Redesign audit log page * 🇵🇱 (#5795) * Add color coding to audit log * Change dismiss->resolve, log all outcomes of report as resolve * Update terminology (e-mail blacklist) (#5796) * Update terminology (e-mail blacklist) imho looks better * Update en.yml * Fix code style issues * i18n-tasks normalize
97 lines
2.4 KiB
Ruby
97 lines
2.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class AccountsController < BaseController
|
|
before_action :set_account, only: [:show, :subscribe, :unsubscribe, :redownload, :enable, :disable, :memorialize]
|
|
before_action :require_remote_account!, only: [:subscribe, :unsubscribe, :redownload]
|
|
before_action :require_local_account!, only: [:enable, :disable, :memorialize]
|
|
|
|
def index
|
|
authorize :account, :index?
|
|
@accounts = filtered_accounts.page(params[:page])
|
|
end
|
|
|
|
def show
|
|
authorize @account, :show?
|
|
@account_moderation_note = current_account.account_moderation_notes.new(target_account: @account)
|
|
@moderation_notes = @account.targeted_moderation_notes.latest
|
|
end
|
|
|
|
def subscribe
|
|
authorize @account, :subscribe?
|
|
Pubsubhubbub::SubscribeWorker.perform_async(@account.id)
|
|
redirect_to admin_account_path(@account.id)
|
|
end
|
|
|
|
def unsubscribe
|
|
authorize @account, :unsubscribe?
|
|
Pubsubhubbub::UnsubscribeWorker.perform_async(@account.id)
|
|
redirect_to admin_account_path(@account.id)
|
|
end
|
|
|
|
def memorialize
|
|
authorize @account, :memorialize?
|
|
@account.memorialize!
|
|
log_action :memorialize, @account
|
|
redirect_to admin_account_path(@account.id)
|
|
end
|
|
|
|
def enable
|
|
authorize @account.user, :enable?
|
|
@account.user.enable!
|
|
log_action :enable, @account.user
|
|
redirect_to admin_account_path(@account.id)
|
|
end
|
|
|
|
def disable
|
|
authorize @account.user, :disable?
|
|
@account.user.disable!
|
|
log_action :disable, @account.user
|
|
redirect_to admin_account_path(@account.id)
|
|
end
|
|
|
|
def redownload
|
|
authorize @account, :redownload?
|
|
|
|
@account.reset_avatar!
|
|
@account.reset_header!
|
|
@account.save!
|
|
|
|
redirect_to admin_account_path(@account.id)
|
|
end
|
|
|
|
private
|
|
|
|
def set_account
|
|
@account = Account.find(params[:id])
|
|
end
|
|
|
|
def require_remote_account!
|
|
redirect_to admin_account_path(@account.id) if @account.local?
|
|
end
|
|
|
|
def require_local_account!
|
|
redirect_to admin_account_path(@account.id) unless @account.local? && @account.user.present?
|
|
end
|
|
|
|
def filtered_accounts
|
|
AccountFilter.new(filter_params).results
|
|
end
|
|
|
|
def filter_params
|
|
params.permit(
|
|
:local,
|
|
:remote,
|
|
:by_domain,
|
|
:silenced,
|
|
:recent,
|
|
:suspended,
|
|
:username,
|
|
:display_name,
|
|
:email,
|
|
:ip
|
|
)
|
|
end
|
|
end
|
|
end
|