summaryrefslogtreecommitdiff
path: root/app/controllers/admin/spam_logs_controller.rb
blob: 984ae736697c2a56af4702f142f42efeb5f5f03d (plain)
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
# frozen_string_literal: true

class Admin::SpamLogsController < Admin::ApplicationController
  feature_category :instance_resiliency

  # rubocop: disable CodeReuse/ActiveRecord
  def index
    @spam_logs = SpamLog.includes(:user).order(id: :desc).page(params[:page])
  end
  # rubocop: enable CodeReuse/ActiveRecord

  def destroy
    spam_log = SpamLog.find(params[:id])

    if params[:remove_user]
      spam_log.remove_user(deleted_by: current_user)
      redirect_to admin_spam_logs_path,
                  status: :found,
                  notice: format(_('User %{username} was successfully removed.'), username: spam_log.user.username)
    else
      spam_log.destroy
      head :ok
    end
  end

  def mark_as_ham
    spam_log = SpamLog.find(params[:id])

    if Spam::HamService.new(spam_log).execute
      redirect_to admin_spam_logs_path, notice: _('Spam log successfully submitted as ham.')
    else
      redirect_to admin_spam_logs_path, alert: _('Error with Akismet. Please check the logs for more info.')
    end
  end
end