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