about summary refs log tree commit diff
path: root/app/services/fetch_remote_status_service.rb
blob: c5e8c5d0f939212e909c4b2dc33408fbd69696df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

    resource_options ||= {}
    resource_options[:on_behalf_of] = on_behalf_of

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