about summary refs log tree commit diff
path: root/app/lib/activitypub/forwarder.rb
blob: 4206b9d822c77ca842978a1b61cc26d049c4a6f9 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true

class ActivityPub::Forwarder
  def initialize(account, original_json, status)
    @json    = original_json
    @account = account
    @status  = status
  end

  def forwardable?
    @json['signature'].present? && @status.distributable?
  end

  def forward!
    ActivityPub::LowPriorityDeliveryWorker.push_bulk(inboxes) do |inbox_url|
      [payload, signature_account_id, inbox_url]
    end
  end

  private

  def payload
    @payload ||= Oj.dump(@json)
  end

  def reblogged_by_account_ids
    @reblogged_by_account_ids ||= @status.reblogs.includes(:account).references(:account).merge(Account.local).pluck(:account_id)
  end

  def signature_account_id
    @signature_account_id ||= begin
      if in_reply_to_local?
        in_reply_to.account_id
      else
        reblogged_by_account_ids.first
      end
    end
  end

  def inboxes
    @inboxes ||= begin
      arr  = inboxes_for_followers_of_reblogged_by_accounts
      arr += inboxes_for_followers_of_replied_to_account if in_reply_to_local?
      arr -= [@account.preferred_inbox_url]
      arr.uniq!
      arr
    end
  end

  def inboxes_for_followers_of_reblogged_by_accounts
    Account.where(id: ::Follow.where(target_account_id: reblogged_by_account_ids).select(:account_id)).inboxes
  end

  def inboxes_for_followers_of_replied_to_account
    in_reply_to.account.followers.inboxes
  end

  def in_reply_to
    @status.thread
  end

  def in_reply_to_local?
    @status.thread&.account&.local?
  end
end