about summary refs log tree commit diff
path: root/app/services/activitypub/fetch_remote_status_service.rb
blob: c114515cdd4e15c91299f0822c9fc61ec8e55436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# frozen_string_literal: true

class ActivityPub::FetchRemoteStatusService < BaseService
  include JsonLdHelper

  # Should be called when uri has already been checked for locality
  def call(uri, prefetched_json = nil)
    @json = body_to_json(prefetched_json) || fetch_resource(uri)

    return unless supported_context?

    activity = activity_json
    actor_id = value_or_id(activity['actor'])

    return unless expected_type?(activity) && trustworthy_attribution?(uri, actor_id)

    actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account)
    actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id) if actor.nil?

    ActivityPub::Activity.factory(activity, actor).perform
  end

  private

  def activity_json
    if %w(Note Article).include? @json['type']
      {
        'type' => 'Create',
        'actor' => first_of_value(@json['attributedTo']),
        'object' => @json,
      }
    else
      @json
    end
  end

  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

  def expected_type?(json)
    %w(Create Announce).include? json['type']
  end
end