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-07-08 18:27:35 -07:00
|
|
|
|
2019-03-21 06:24:09 -07:00
|
|
|
return unless supported_context?(json)
|
2019-07-08 18:27:35 -07:00
|
|
|
|
2022-01-19 13:37:27 -08:00
|
|
|
ActivityPub::ProcessStatusUpdateService.new.call(poll.status, json)
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
end
|