This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-03 13:18:23 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::FetchRemotePollService < BaseService
|
|
|
|
include JsonLdHelper
|
|
|
|
|
|
|
|
def call(poll, on_behalf_of = nil)
|
2019-03-10 16:49:31 -07:00
|
|
|
json = fetch_resource(poll.status.uri, true, on_behalf_of)
|
2019-03-21 06:24:09 -07:00
|
|
|
return unless supported_context?(json)
|
2019-03-10 16:49:31 -07:00
|
|
|
ActivityPub::ProcessPollService.new.call(poll, json)
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
end
|