2017-07-18 14:38:22 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class StatusesController < BaseController
|
|
|
|
before_action :set_account
|
2022-01-17 08:41:33 +00:00
|
|
|
before_action :set_statuses
|
2017-07-18 14:38:22 +00:00
|
|
|
|
2017-08-24 02:03:52 +00:00
|
|
|
PER_PAGE = 20
|
2017-07-18 14:38:22 +00:00
|
|
|
|
|
|
|
def index
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize :status, :index?
|
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
@status_batch_action = Admin::StatusBatchAction.new
|
2019-01-04 12:10:43 +00:00
|
|
|
end
|
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
def batch
|
|
|
|
@status_batch_action = Admin::StatusBatchAction.new(admin_status_batch_action_params.merge(current_account: current_account, report_id: params[:report_id], type: action_from_button))
|
|
|
|
@status_batch_action.save!
|
2018-08-16 18:02:52 +00:00
|
|
|
rescue ActionController::ParameterMissing
|
|
|
|
flash[:alert] = I18n.t('admin.statuses.no_status_selected')
|
2022-01-17 08:41:33 +00:00
|
|
|
ensure
|
|
|
|
redirect_to after_create_redirect_path
|
2017-07-18 14:38:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
def admin_status_batch_action_params
|
|
|
|
params.require(:admin_status_batch_action).permit(status_ids: [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_create_redirect_path
|
|
|
|
if @status_batch_action.report_id.present?
|
|
|
|
admin_report_path(@status_batch_action.report_id)
|
|
|
|
else
|
|
|
|
admin_account_statuses_path(params[:account_id], current_params)
|
|
|
|
end
|
2017-07-18 14:38:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:account_id])
|
|
|
|
end
|
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
def set_statuses
|
|
|
|
@statuses = Admin::StatusFilter.new(@account, filter_params).results.preload(:application, :preloadable_poll, :media_attachments, active_mentions: :account, reblog: [:account, :application, :preloadable_poll, :media_attachments, active_mentions: :account]).page(params[:page]).per(PER_PAGE)
|
|
|
|
end
|
2017-11-11 19:23:33 +00:00
|
|
|
|
2022-01-17 08:41:33 +00:00
|
|
|
def filter_params
|
|
|
|
params.slice(*Admin::StatusFilter::KEYS).permit(*Admin::StatusFilter::KEYS)
|
2017-07-18 14:38:22 +00:00
|
|
|
end
|
2018-05-05 21:06:29 +00:00
|
|
|
|
|
|
|
def action_from_button
|
2022-01-17 08:41:33 +00:00
|
|
|
if params[:report]
|
|
|
|
'report'
|
|
|
|
elsif params[:remove_from_report]
|
|
|
|
'remove_from_report'
|
2018-05-05 21:06:29 +00:00
|
|
|
elsif params[:delete]
|
|
|
|
'delete'
|
|
|
|
end
|
|
|
|
end
|
2017-07-18 14:38:22 +00:00
|
|
|
end
|
|
|
|
end
|