2017-02-15 06:59:26 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::ReportsController < Api::BaseController
|
2018-07-06 02:31:35 +10:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:reports' }, only: [:create]
|
2017-02-15 06:59:26 +11:00
|
|
|
before_action :require_user!
|
|
|
|
|
2020-04-05 22:40:08 +10:00
|
|
|
override_rate_limit_headers :create, family: :reports
|
|
|
|
|
2017-02-15 06:59:26 +11:00
|
|
|
def create
|
2018-02-28 16:54:55 +11:00
|
|
|
@report = ReportService.new.call(
|
|
|
|
current_account,
|
|
|
|
reported_account,
|
2022-03-03 04:57:08 +11:00
|
|
|
report_params
|
2017-05-31 11:13:31 +10:00
|
|
|
)
|
2017-06-27 08:04:00 +10:00
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @report, serializer: REST::ReportSerializer
|
2017-02-15 06:59:26 +11:00
|
|
|
end
|
2017-04-04 09:33:34 +10:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-31 11:13:31 +10:00
|
|
|
def reported_account
|
|
|
|
Account.find(report_params[:account_id])
|
|
|
|
end
|
|
|
|
|
2017-04-04 09:33:34 +10:00
|
|
|
def report_params
|
2023-07-11 02:26:56 +10:00
|
|
|
params.permit(:account_id, :comment, :category, :forward, forward_to_domains: [], status_ids: [], rule_ids: [])
|
2017-04-04 09:33:34 +10:00
|
|
|
end
|
2017-02-15 06:59:26 +11:00
|
|
|
end
|