2017-08-08 12:52:15 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::FetchRemoteStatusService < BaseService
|
|
|
|
include JsonLdHelper
|
|
|
|
|
|
|
|
# Should be called when uri has already been checked for locality
|
2017-10-03 16:13:48 -07:00
|
|
|
def call(uri, id: true, prefetched_body: nil)
|
|
|
|
@json = if prefetched_body.nil?
|
|
|
|
fetch_resource(uri, id)
|
|
|
|
else
|
|
|
|
body_to_json(prefetched_body)
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-10-08 13:03:34 -07:00
|
|
|
return unless supported_context? && expected_type?
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-10-03 16:13:48 -07:00
|
|
|
return if actor_id.nil? || !trustworthy_attribution?(@json['id'], actor_id)
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-08-24 07:21:42 -07:00
|
|
|
actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account)
|
2017-10-29 08:24:16 -07:00
|
|
|
actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id, id: true) if actor.nil? || needs_update(actor)
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-11-19 06:33:15 -08:00
|
|
|
return if actor.nil? || actor.suspended?
|
2017-09-13 02:05:02 -07:00
|
|
|
|
2017-10-03 16:13:48 -07:00
|
|
|
ActivityPub::Activity.factory(activity_json, actor).perform
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-24 07:21:42 -07:00
|
|
|
def activity_json
|
2017-10-03 16:13:48 -07:00
|
|
|
{ 'type' => 'Create', 'actor' => actor_id, 'object' => @json }
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor_id
|
|
|
|
first_of_value(@json['attributedTo'])
|
2017-08-24 07:21:42 -07:00
|
|
|
end
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def trustworthy_attribution?(uri, attributed_to)
|
|
|
|
Addressable::URI.parse(uri).normalized_host.casecmp(Addressable::URI.parse(attributed_to).normalized_host).zero?
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported_context?
|
|
|
|
super(@json)
|
|
|
|
end
|
|
|
|
|
2017-10-03 16:13:48 -07:00
|
|
|
def expected_type?
|
2017-11-29 19:06:20 -08:00
|
|
|
(ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES).include? @json['type']
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
2017-10-29 08:24:16 -07:00
|
|
|
|
|
|
|
def needs_update(actor)
|
|
|
|
actor.possibly_stale?
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|