You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
504 B
17 lines
504 B
# frozen_string_literal: true |
|
|
|
class FetchRemoteAccountService < BaseService |
|
def call(url, prefetched_body = nil, protocol = :ostatus) |
|
if prefetched_body.nil? |
|
resource_url, resource_options, protocol = FetchResourceService.new.call(url) |
|
else |
|
resource_url = url |
|
resource_options = { prefetched_body: prefetched_body } |
|
end |
|
|
|
case protocol |
|
when :activitypub |
|
ActivityPub::FetchRemoteAccountService.new.call(resource_url, **resource_options) |
|
end |
|
end |
|
end
|
|
|