~cytrogen/masto-fe

ref: 27e84c069112a3d2abfad947642457cc997a261a masto-fe/app/services/fetch_remote_status_service.rb -rw-r--r-- 492 bytes
27e84c06 — Claire Fix duplicate reports being sent when reporting some remote posts (#27355) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class FetchRemoteStatusService < BaseService
  def call(url, prefetched_body: nil, request_id: nil)
    if prefetched_body.nil?
      resource_url, resource_options = FetchResourceService.new.call(url)
    else
      resource_url     = url
      resource_options = { prefetched_body: prefetched_body }
    end

    ActivityPub::FetchRemoteStatusService.new.call(resource_url, **resource_options.merge(request_id: request_id)) unless resource_url.nil?
  end
end