2017-02-15 17:28:10 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-10 12:27:03 -07:00
|
|
|
module Admin
|
|
|
|
class ReportsController < BaseController
|
|
|
|
before_action :set_report, except: [:index]
|
|
|
|
|
|
|
|
def index
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize :report, :index?
|
2017-04-14 02:10:28 -07:00
|
|
|
@reports = filtered_reports.page(params[:page])
|
2017-04-10 12:27:03 -07:00
|
|
|
end
|
|
|
|
|
2017-07-18 07:38:22 -07:00
|
|
|
def show
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize @report, :show?
|
2018-04-19 17:28:48 -07:00
|
|
|
|
|
|
|
@report_note = @report.notes.new
|
|
|
|
@report_notes = (@report.notes.latest + @report.history).sort_by(&:created_at)
|
|
|
|
@form = Form::StatusBatch.new
|
2017-07-18 07:38:22 -07:00
|
|
|
end
|
2017-04-10 12:27:03 -07:00
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
def update
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize @report, :update?
|
2017-04-14 02:10:28 -07:00
|
|
|
process_report
|
2018-04-02 13:04:14 -07:00
|
|
|
|
|
|
|
if @report.action_taken?
|
|
|
|
redirect_to admin_reports_path, notice: I18n.t('admin.reports.resolved_msg')
|
|
|
|
else
|
|
|
|
redirect_to admin_report_path(@report)
|
|
|
|
end
|
2017-04-10 12:27:03 -07:00
|
|
|
end
|
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
private
|
|
|
|
|
|
|
|
def process_report
|
|
|
|
case params[:outcome].to_s
|
2018-04-02 13:04:14 -07:00
|
|
|
when 'assign_to_self'
|
|
|
|
@report.update!(assigned_account_id: current_account.id)
|
|
|
|
log_action :assigned_to_self, @report
|
|
|
|
when 'unassign'
|
|
|
|
@report.update!(assigned_account_id: nil)
|
|
|
|
log_action :unassigned, @report
|
|
|
|
when 'reopen'
|
2018-04-10 11:27:59 -07:00
|
|
|
@report.unresolve!
|
2018-04-02 13:04:14 -07:00
|
|
|
log_action :reopen, @report
|
2017-04-14 02:10:28 -07:00
|
|
|
when 'resolve'
|
2018-04-10 11:27:59 -07:00
|
|
|
@report.resolve!(current_account)
|
2017-11-23 17:05:53 -08:00
|
|
|
log_action :resolve, @report
|
2017-04-14 02:10:28 -07:00
|
|
|
when 'silence'
|
2018-08-22 02:53:41 -07:00
|
|
|
@report.resolve!(current_account)
|
2017-11-23 17:05:53 -08:00
|
|
|
@report.target_account.update!(silenced: true)
|
2018-04-10 11:27:59 -07:00
|
|
|
|
2017-11-23 17:05:53 -08:00
|
|
|
log_action :resolve, @report
|
|
|
|
log_action :silence, @report.target_account
|
2018-04-10 11:27:59 -07:00
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
resolve_all_target_account_reports
|
|
|
|
else
|
|
|
|
raise ActiveRecord::RecordNotFound
|
|
|
|
end
|
2018-04-10 11:27:59 -07:00
|
|
|
@report.reload
|
2017-04-10 12:27:03 -07:00
|
|
|
end
|
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
def resolve_all_target_account_reports
|
2018-04-10 11:27:59 -07:00
|
|
|
unresolved_reports_for_target_account.update_all(action_taken: true, action_taken_by_account_id: current_account.id)
|
2017-04-10 12:27:03 -07:00
|
|
|
end
|
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
def unresolved_reports_for_target_account
|
|
|
|
Report.where(
|
|
|
|
target_account: @report.target_account
|
|
|
|
).unresolved
|
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_reports
|
2017-05-16 03:10:09 -07:00
|
|
|
ReportFilter.new(filter_params).results.order(id: :desc).includes(
|
2017-04-14 02:10:28 -07:00
|
|
|
:account,
|
|
|
|
:target_account
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2017-04-18 10:36:18 -07:00
|
|
|
def filter_params
|
|
|
|
params.permit(
|
|
|
|
:account_id,
|
|
|
|
:resolved,
|
|
|
|
:target_account_id
|
|
|
|
)
|
2017-04-14 02:10:28 -07:00
|
|
|
end
|
2017-04-10 12:27:03 -07:00
|
|
|
|
|
|
|
def set_report
|
|
|
|
@report = Report.find(params[:id])
|
|
|
|
end
|
2017-02-16 15:42:52 -08:00
|
|
|
end
|
2017-02-15 17:28:10 -08:00
|
|
|
end
|