mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-09 15:56:05 +01:00
92 lines
2.4 KiB
Ruby
92 lines
2.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class ReportsController < BaseController
|
|
before_action :set_report, except: [:index, :batch]
|
|
|
|
def index
|
|
authorize :report, :index?
|
|
@reports = filtered_reports.page(params[:page])
|
|
@form = Form::ReportBatch.new
|
|
end
|
|
|
|
def batch
|
|
authorize :report, :index?
|
|
|
|
@form = Form::ReportBatch.new(form_report_batch_params)
|
|
@form.current_account = current_account
|
|
@form.action = action_from_button
|
|
@form.select_all_matching = params[:select_all_matching]
|
|
@form.query = filtered_reports
|
|
@form.save
|
|
rescue ActionController::ParameterMissing
|
|
flash[:alert] = I18n.t('admin.reports.no_report_selected')
|
|
ensure
|
|
redirect_to admin_reports_path(filter_params)
|
|
end
|
|
|
|
def show
|
|
authorize @report, :show?
|
|
|
|
@report_note = @report.notes.new
|
|
@report_notes = @report.notes.chronological.includes(:account)
|
|
@action_logs = @report.history.includes(:target)
|
|
@form = Admin::StatusBatchAction.new
|
|
@statuses = @report.statuses.with_includes
|
|
end
|
|
|
|
def assign_to_self
|
|
authorize @report, :update?
|
|
@report.update!(assigned_account_id: current_account.id)
|
|
log_action :assigned_to_self, @report
|
|
redirect_to admin_report_path(@report)
|
|
end
|
|
|
|
def unassign
|
|
authorize @report, :update?
|
|
@report.update!(assigned_account_id: nil)
|
|
log_action :unassigned, @report
|
|
redirect_to admin_report_path(@report)
|
|
end
|
|
|
|
def reopen
|
|
authorize @report, :update?
|
|
@report.unresolve!
|
|
log_action :reopen, @report
|
|
redirect_to admin_report_path(@report)
|
|
end
|
|
|
|
def resolve
|
|
authorize @report, :update?
|
|
@report.resolve!(current_account)
|
|
log_action :resolve, @report
|
|
redirect_to admin_reports_path, notice: I18n.t('admin.reports.resolved_msg')
|
|
end
|
|
|
|
private
|
|
|
|
def filtered_reports
|
|
ReportFilter.new(filter_params).results.order(id: :desc).includes(:account, :target_account)
|
|
end
|
|
|
|
def filter_params
|
|
params.slice(*ReportFilter::KEYS).permit(*ReportFilter::KEYS)
|
|
end
|
|
|
|
def set_report
|
|
@report = Report.find(params[:id])
|
|
end
|
|
|
|
def form_report_batch_params
|
|
params.require(:form_report_batch).permit(:action, report_ids: [])
|
|
end
|
|
|
|
def action_from_button
|
|
if params[:resolve]
|
|
'resolve'
|
|
elsif params[:assign_to_self]
|
|
'assign_to_self'
|
|
end
|
|
end
|
|
end
|
|
end
|