2018-02-28 05:54:55 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Flag < ActivityPub::Activity
|
|
|
|
def perform
|
2018-10-20 06:02:44 +00:00
|
|
|
return if skip_reports?
|
|
|
|
|
2023-07-08 18:00:02 +00:00
|
|
|
target_accounts = object_uris.filter_map { |uri| account_from_uri(uri) }
|
|
|
|
target_statuses_by_account = object_uris.filter_map { |uri| status_from_uri(uri) }.group_by(&:account_id)
|
2018-02-28 05:54:55 +00:00
|
|
|
|
|
|
|
target_accounts.each do |target_account|
|
2023-07-08 18:00:02 +00:00
|
|
|
target_statuses = target_statuses_by_account[target_account.id]
|
2023-07-27 14:11:56 +00:00
|
|
|
replied_to_accounts = target_statuses.nil? ? [] : Account.local.where(id: target_statuses.filter_map(&:in_reply_to_account_id))
|
2018-02-28 05:54:55 +00:00
|
|
|
|
2023-07-08 18:00:02 +00:00
|
|
|
next if target_account.suspended? || (!target_account.local? && replied_to_accounts.none?)
|
2021-04-16 20:01:05 +00:00
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
ReportService.new.call(
|
|
|
|
@account,
|
|
|
|
target_account,
|
|
|
|
status_ids: target_statuses.nil? ? [] : target_statuses.map(&:id),
|
2023-05-22 11:15:21 +00:00
|
|
|
comment: report_comment,
|
2019-03-17 14:34:56 +00:00
|
|
|
uri: report_uri
|
2018-02-28 05:54:55 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-20 06:02:44 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def skip_reports?
|
2019-06-21 22:13:10 +00:00
|
|
|
DomainBlock.reject_reports?(@account.domain)
|
2018-10-20 06:02:44 +00:00
|
|
|
end
|
|
|
|
|
2018-02-28 05:54:55 +00:00
|
|
|
def object_uris
|
|
|
|
@object_uris ||= Array(@object.is_a?(Array) ? @object.map { |item| value_or_id(item) } : value_or_id(@object))
|
|
|
|
end
|
2019-03-17 14:34:56 +00:00
|
|
|
|
|
|
|
def report_uri
|
2023-04-23 20:35:54 +00:00
|
|
|
@json['id'] unless @json['id'].nil? || non_matching_uri_hosts?(@account.uri, @json['id'])
|
2019-03-17 14:34:56 +00:00
|
|
|
end
|
2023-05-22 11:15:21 +00:00
|
|
|
|
|
|
|
def report_comment
|
|
|
|
(@json['content'] || '')[0...5000]
|
|
|
|
end
|
2018-02-28 05:54:55 +00:00
|
|
|
end
|