2017-02-15 20:28:10 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-10 15:27:03 -04:00
|
|
|
module Admin
|
|
|
|
class ReportsController < BaseController
|
|
|
|
before_action :set_report, except: [:index]
|
|
|
|
|
|
|
|
def index
|
2017-11-11 14:23:33 -05:00
|
|
|
authorize :report, :index?
|
2017-04-14 05:10:28 -04:00
|
|
|
@reports = filtered_reports.page(params[:page])
|
2017-04-10 15:27:03 -04:00
|
|
|
end
|
|
|
|
|
2017-07-18 10:38:22 -04:00
|
|
|
def show
|
2017-11-11 14:23:33 -05:00
|
|
|
authorize @report, :show?
|
2017-07-18 10:38:22 -04:00
|
|
|
@form = Form::StatusBatch.new
|
|
|
|
end
|
2017-04-10 15:27:03 -04:00
|
|
|
|
2017-04-14 05:10:28 -04:00
|
|
|
def update
|
2017-11-11 14:23:33 -05:00
|
|
|
authorize @report, :update?
|
2017-04-14 05:10:28 -04:00
|
|
|
process_report
|
2017-04-10 15:27:03 -04:00
|
|
|
redirect_to admin_report_path(@report)
|
|
|
|
end
|
|
|
|
|
2017-04-14 05:10:28 -04: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 15:27:03 -04:00
|
|
|
end
|
|
|
|
|
2017-04-14 05:10:28 -04:00
|
|
|
def action_taken_by_current_attributes
|
|
|
|
{ action_taken: true, action_taken_by_account_id: current_account.id }
|
2017-04-10 15:27:03 -04:00
|
|
|
end
|
|
|
|
|
2017-04-14 05:10:28 -04:00
|
|
|
def resolve_all_target_account_reports
|
|
|
|
unresolved_reports_for_target_account.update_all(
|
|
|
|
action_taken_by_current_attributes
|
|
|
|
)
|
2017-04-10 15:27:03 -04:00
|
|
|
end
|
|
|
|
|
2017-04-14 05:10:28 -04:00
|
|
|
def unresolved_reports_for_target_account
|
|
|
|
Report.where(
|
|
|
|
target_account: @report.target_account
|
|
|
|
).unresolved
|
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_reports
|
2017-05-16 06:10:09 -04:00
|
|
|
ReportFilter.new(filter_params).results.order(id: :desc).includes(
|
2017-04-14 05:10:28 -04:00
|
|
|
:account,
|
|
|
|
:target_account
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2017-04-18 13:36:18 -04:00
|
|
|
def filter_params
|
|
|
|
params.permit(
|
|
|
|
:account_id,
|
|
|
|
:resolved,
|
|
|
|
:target_account_id
|
|
|
|
)
|
2017-04-14 05:10:28 -04:00
|
|
|
end
|
2017-04-10 15:27:03 -04:00
|
|
|
|
|
|
|
def set_report
|
|
|
|
@report = Report.find(params[:id])
|
|
|
|
end
|
2017-02-16 18:42:52 -05:00
|
|
|
end
|
2017-02-15 20:28:10 -05:00
|
|
|
end
|