2017-02-16 02:28:10 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-10 21:27:03 +02:00
|
|
|
module Admin
|
|
|
|
class ReportsController < BaseController
|
|
|
|
before_action :set_report, except: [:index]
|
|
|
|
|
|
|
|
def index
|
2017-04-14 11:10:28 +02:00
|
|
|
@reports = filtered_reports.page(params[:page])
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
def show; end
|
2017-04-10 21:27:03 +02:00
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
def update
|
|
|
|
process_report
|
2017-04-10 21:27:03 +02:00
|
|
|
redirect_to admin_report_path(@report)
|
|
|
|
end
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def process_report
|
|
|
|
case params[:outcome].to_s
|
|
|
|
when 'resolve'
|
|
|
|
@report.update(action_taken_by_current_attributes)
|
|
|
|
when 'suspend'
|
|
|
|
Admin::SuspensionWorker.perform_async(@report.target_account.id)
|
|
|
|
resolve_all_target_account_reports
|
|
|
|
when 'silence'
|
|
|
|
@report.target_account.update(silenced: true)
|
|
|
|
resolve_all_target_account_reports
|
|
|
|
else
|
|
|
|
raise ActiveRecord::RecordNotFound
|
|
|
|
end
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
def action_taken_by_current_attributes
|
|
|
|
{ action_taken: true, action_taken_by_account_id: current_account.id }
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
def resolve_all_target_account_reports
|
|
|
|
unresolved_reports_for_target_account.update_all(
|
|
|
|
action_taken_by_current_attributes
|
|
|
|
)
|
2017-04-10 21:27:03 +02:00
|
|
|
end
|
|
|
|
|
2017-04-14 11:10:28 +02:00
|
|
|
def unresolved_reports_for_target_account
|
|
|
|
Report.where(
|
|
|
|
target_account: @report.target_account
|
|
|
|
).unresolved
|
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_reports
|
2017-04-18 19:36:18 +02:00
|
|
|
ReportFilter.new(filter_params).results.order('id desc').includes(
|
2017-04-14 11:10:28 +02:00
|
|
|
:account,
|
|
|
|
:target_account
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2017-04-18 19:36:18 +02:00
|
|
|
def filter_params
|
|
|
|
params.permit(
|
|
|
|
:account_id,
|
|
|
|
:resolved,
|
|
|
|
:target_account_id
|
|
|
|
)
|
2017-04-14 11:10:28 +02:00
|
|
|
end
|
2017-04-10 21:27:03 +02:00
|
|
|
|
|
|
|
def set_report
|
|
|
|
@report = Report.find(params[:id])
|
|
|
|
end
|
2017-02-17 00:42:52 +01:00
|
|
|
end
|
2017-02-16 02:28:10 +01:00
|
|
|
end
|