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!
|
|
|
|
|
2020-04-05 14:40:08 +02:00
|
|
|
override_rate_limit_headers :create, family: :reports
|
|
|
|
|
2017-02-14 20:59:26 +01:00
|
|
|
def create
|
2018-02-28 06:54:55 +01:00
|
|
|
@report = ReportService.new.call(
|
|
|
|
current_account,
|
|
|
|
reported_account,
|
2022-03-02 18:57:08 +01:00
|
|
|
report_params
|
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_account
|
|
|
|
Account.find(report_params[:account_id])
|
|
|
|
end
|
|
|
|
|
2017-04-04 01:33:34 +02:00
|
|
|
def report_params
|
2022-02-10 00:10:16 +01:00
|
|
|
params.permit(:account_id, :comment, :category, :forward, status_ids: [], rule_ids: [])
|
2017-04-04 01:33:34 +02:00
|
|
|
end
|
2017-02-14 20:59:26 +01:00
|
|
|
end
|