2017-02-14 20:59:26 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::ReportsController < Api::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:reports' }, only: [:create]
|
2017-02-14 20:59:26 +01:00
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def create
|
2018-02-28 06:54:55 +01:00
|
|
|
@report = ReportService.new.call(
|
|
|
|
current_account,
|
|
|
|
reported_account,
|
2017-05-31 03:13:31 +02:00
|
|
|
status_ids: reported_status_ids,
|
2018-02-28 06:54:55 +01:00
|
|
|
comment: report_params[:comment],
|
|
|
|
forward: report_params[:forward]
|
2017-05-31 03:13:31 +02:00
|
|
|
)
|
2017-06-27 00:04:00 +02:00
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @report, serializer: REST::ReportSerializer
|
2017-02-14 20:59:26 +01:00
|
|
|
end
|
2017-04-04 01:33:34 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-31 03:13:31 +02:00
|
|
|
def reported_status_ids
|
2018-10-07 19:45:40 +02:00
|
|
|
reported_account.statuses.find(status_ids).pluck(:id)
|
2017-05-31 03:13:31 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def status_ids
|
|
|
|
Array(report_params[:status_ids])
|
|
|
|
end
|
|
|
|
|
|
|
|
def reported_account
|
|
|
|
Account.find(report_params[:account_id])
|
|
|
|
end
|
|
|
|
|
2017-04-04 01:33:34 +02:00
|
|
|
def report_params
|
2018-02-28 06:54:55 +01:00
|
|
|
params.permit(:account_id, :comment, :forward, status_ids: [])
|
2017-04-04 01:33:34 +02:00
|
|
|
end
|
2017-02-14 20:59:26 +01:00
|
|
|
end
|