2018-02-28 05:54:55 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ReportService < BaseService
|
2019-06-04 22:11:18 +01:00
|
|
|
include Payloadable
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
def call(source_account, target_account, options = {})
|
|
|
|
@source_account = source_account
|
|
|
|
@target_account = target_account
|
|
|
|
@status_ids = options.delete(:status_ids) || []
|
|
|
|
@comment = options.delete(:comment) || ''
|
2022-02-09 23:10:16 +00:00
|
|
|
@category = options.delete(:category) || 'other'
|
|
|
|
@rule_ids = options.delete(:rule_ids)
|
2018-02-28 05:54:55 +00:00
|
|
|
@options = options
|
|
|
|
|
2021-04-16 21:01:05 +01:00
|
|
|
raise ActiveRecord::RecordNotFound if @target_account.suspended?
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
create_report!
|
|
|
|
notify_staff!
|
2022-02-09 23:10:16 +00:00
|
|
|
forward_to_origin! if forward?
|
2018-02-28 05:54:55 +00:00
|
|
|
|
|
|
|
@report
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_report!
|
|
|
|
@report = @source_account.reports.create!(
|
|
|
|
target_account: @target_account,
|
|
|
|
status_ids: @status_ids,
|
2019-03-17 14:34:56 +00:00
|
|
|
comment: @comment,
|
2020-12-15 03:30:15 +00:00
|
|
|
uri: @options[:uri],
|
2022-02-09 23:10:16 +00:00
|
|
|
forwarded: forward?,
|
|
|
|
category: @category,
|
|
|
|
rule_ids: @rule_ids
|
2018-02-28 05:54:55 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_staff!
|
2018-09-01 23:11:58 +01:00
|
|
|
return if @report.unresolved_siblings?
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
User.staff.includes(:account).each do |u|
|
2018-09-01 23:11:58 +01:00
|
|
|
next unless u.allows_report_emails?
|
2018-02-28 05:54:55 +00:00
|
|
|
AdminMailer.new_report(u.account, @report).deliver_later
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def forward_to_origin!
|
|
|
|
ActivityPub::DeliveryWorker.perform_async(
|
|
|
|
payload,
|
|
|
|
some_local_account.id,
|
|
|
|
@target_account.inbox_url
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-02-09 23:10:16 +00:00
|
|
|
def forward?
|
|
|
|
!@target_account.local? && ActiveModel::Type::Boolean.new.cast(@options[:forward])
|
|
|
|
end
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
def payload
|
2019-06-04 22:11:18 +01:00
|
|
|
Oj.dump(serialize_payload(@report, ActivityPub::FlagSerializer, account: some_local_account))
|
2018-02-28 05:54:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def some_local_account
|
2019-01-05 06:17:12 +00:00
|
|
|
@some_local_account ||= Account.representative
|
2018-02-28 05:54:55 +00:00
|
|
|
end
|
|
|
|
end
|