2017-08-08 21:52:15 +02: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 16:48:32 +02:00
|
|
|
def call(uri, id: true, prefetched_body: nil, on_behalf_of: nil)
|
2017-10-04 01:13:48 +02:00
|
|
|
@json = if prefetched_body.nil?
|
2018-05-12 16:48:32 +02:00
|
|
|
fetch_resource(uri, id, on_behalf_of)
|
2017-10-04 01:13:48 +02:00
|
|
|
else
|
2018-08-22 20:55:14 +02:00
|
|
|
body_to_json(prefetched_body, compare_id: id ? uri : nil)
|
2017-10-04 01:13:48 +02:00
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-10-08 22:03:34 +02:00
|
|
|
return unless supported_context? && expected_type?
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-10-04 01:13:48 +02:00
|
|
|
return if actor_id.nil? || !trustworthy_attribution?(@json['id'], actor_id)
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-08-24 16:21:42 +02:00
|
|
|
actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account)
|
2017-10-29 16:24:16 +01:00
|
|
|
actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id, id: true) if actor.nil? || needs_update(actor)
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-11-19 15:33:15 +01:00
|
|
|
return if actor.nil? || actor.suspended?
|
2017-09-13 11:05:02 +02:00
|
|
|
|
2017-10-04 01:13:48 +02:00
|
|
|
ActivityPub::Activity.factory(activity_json, actor).perform
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-24 16:21:42 +02:00
|
|
|
def activity_json
|
2017-10-04 01:13:48 +02:00
|
|
|
{ 'type' => 'Create', 'actor' => actor_id, 'object' => @json }
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor_id
|
2018-01-15 06:51:46 +01:00
|
|
|
value_or_id(first_of_value(@json['attributedTo']))
|
2017-08-24 16:21:42 +02:00
|
|
|
end
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def trustworthy_attribution?(uri, attributed_to)
|
2018-05-05 18:22:34 +02:00
|
|
|
return false if uri.nil? || attributed_to.nil?
|
2017-08-08 21:52:15 +02:00
|
|
|
Addressable::URI.parse(uri).normalized_host.casecmp(Addressable::URI.parse(attributed_to).normalized_host).zero?
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported_context?
|
|
|
|
super(@json)
|
|
|
|
end
|
|
|
|
|
2017-10-04 01:13:48 +02:00
|
|
|
def expected_type?
|
2018-05-02 12:40:24 +02:00
|
|
|
equals_or_includes_any?(@json['type'], ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
2017-10-29 16:24:16 +01:00
|
|
|
|
|
|
|
def needs_update(actor)
|
|
|
|
actor.possibly_stale?
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|