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