about summary refs log tree commit diff
path: root/app/services/report_service.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-07-05 09:02:02 +0200
committerGitHub <noreply@github.com>2022-07-05 09:02:02 +0200
commit325ebb76b19bd20e1b76d8bc26c11cab02f6571c (patch)
treef62ccbc3b15d22ed6efebe15091d7cc21ba73d51 /app/services/report_service.rb
parent299c9021eb3c1ec57325052a5da11f613d5e1bf0 (diff)
parent7cc76b823ab4dfeca684051a99dba8ea4ce1a8fc (diff)
Merge pull request #1803 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/services/report_service.rb')
-rw-r--r--app/services/report_service.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/app/services/report_service.rb b/app/services/report_service.rb
index 70212a6a7..bd67ff8d3 100644
--- a/app/services/report_service.rb
+++ b/app/services/report_service.rb
@@ -57,7 +57,16 @@ class ReportService < BaseService
   end
 
   def reported_status_ids
-    AccountStatusesFilter.new(@target_account, @source_account).results.with_discarded.find(Array(@status_ids)).pluck(:id)
+    return AccountStatusesFilter.new(@target_account, @source_account).results.with_discarded.find(Array(@status_ids)).pluck(:id) if @source_account.local?
+
+    # If the account making reports is remote, it is likely anonymized so we have to relax the requirements for attaching statuses.
+    domain = @source_account.domain.to_s.downcase
+    has_followers = @target_account.followers.where(Account.arel_table[:domain].lower.eq(domain)).exists?
+    visibility = has_followers ? %i(public unlisted private) : %i(public unlisted)
+    scope = @target_account.statuses.with_discarded
+    scope.merge!(scope.where(visibility: visibility).or(scope.where('EXISTS (SELECT 1 FROM mentions m JOIN accounts a ON m.account_id = a.id WHERE lower(a.domain) = ?)', domain)))
+    # Allow missing posts to not drop reports that include e.g. a deleted post
+    scope.where(id: Array(@status_ids)).pluck(:id)
   end
 
   def payload