about summary refs log tree commit diff
path: root/app/controllers/admin/reports_controller.rb
blob: 67d57e4eb5adbf8adadc3c7f4e370303af5f0018 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

class Admin::ReportsController < ApplicationController
  before_action :require_admin!
  before_action :set_report, except: [:index]

  layout 'admin'

  def index
    @reports = Report.includes(:account, :target_account).paginate(page: params[:page], per_page: 40)
    @reports = params[:action_taken].present? ? @reports.resolved : @reports.unresolved
  end

  def show
    @statuses = Status.where(id: @report.status_ids)
  end

  def resolve
    @report.update(action_taken: true)
    redirect_to admin_report_path(@report)
  end

  def suspend
    Admin::SuspensionWorker.perform_async(@report.target_account.id)
    @report.update(action_taken: true)
    redirect_to admin_report_path(@report)
  end

  def silence
    @report.target_account.update(silenced: true)
    @report.update(action_taken: true)
    redirect_to admin_report_path(@report)
  end

  def remove
    RemovalWorker.perform_async(params[:status_id])
    redirect_to admin_report_path(@report)
  end

  private

  def set_report
    @report = Report.find(params[:id])
  end
end