2017-08-12 22:44:41 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::DeliveryWorker
|
|
|
|
include Sidekiq::Worker
|
2019-07-10 16:59:28 +00:00
|
|
|
include JsonLdHelper
|
2017-08-12 22:44:41 +00:00
|
|
|
|
2018-05-18 22:23:19 +00:00
|
|
|
STOPLIGHT_FAILURE_THRESHOLD = 10
|
|
|
|
STOPLIGHT_COOLDOWN = 60
|
|
|
|
|
2018-01-19 14:49:48 +00:00
|
|
|
sidekiq_options queue: 'push', retry: 16, dead: false
|
2017-08-12 22:44:41 +00:00
|
|
|
|
|
|
|
HEADERS = { 'Content-Type' => 'application/activity+json' }.freeze
|
|
|
|
|
2018-08-26 18:21:03 +00:00
|
|
|
def perform(json, source_account_id, inbox_url, options = {})
|
2018-11-27 18:15:08 +00:00
|
|
|
return if DeliveryFailureTracker.unavailable?(inbox_url)
|
|
|
|
|
2018-08-26 18:21:03 +00:00
|
|
|
@options = options.with_indifferent_access
|
2017-08-12 22:44:41 +00:00
|
|
|
@json = json
|
|
|
|
@source_account = Account.find(source_account_id)
|
|
|
|
@inbox_url = inbox_url
|
2019-07-01 22:34:38 +00:00
|
|
|
@host = Addressable::URI.parse(inbox_url).normalized_site
|
2019-07-07 01:37:01 +00:00
|
|
|
@performed = false
|
2017-08-12 22:44:41 +00:00
|
|
|
|
2018-04-07 19:36:58 +00:00
|
|
|
perform_request
|
2019-07-07 01:37:01 +00:00
|
|
|
ensure
|
|
|
|
if @performed
|
|
|
|
failure_tracker.track_success!
|
|
|
|
else
|
|
|
|
failure_tracker.track_failure!
|
|
|
|
end
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-01 22:34:38 +00:00
|
|
|
def build_request(http_client)
|
2019-07-10 16:59:28 +00:00
|
|
|
Request.new(:post, @inbox_url, body: @json, http_client: http_client).tap do |request|
|
|
|
|
request.on_behalf_of(@source_account, :uri, sign_with: @options[:sign_with])
|
|
|
|
request.add_headers(HEADERS)
|
|
|
|
end
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|
|
|
|
|
2018-04-07 19:36:58 +00:00
|
|
|
def perform_request
|
|
|
|
light = Stoplight(@inbox_url) do
|
2019-07-01 22:34:38 +00:00
|
|
|
request_pool.with(@host) do |http_client|
|
|
|
|
build_request(http_client).perform do |response|
|
|
|
|
raise Mastodon::UnexpectedResponseError, response unless response_successful?(response) || response_error_unsalvageable?(response)
|
2019-07-07 01:37:01 +00:00
|
|
|
|
|
|
|
@performed = true
|
2019-07-01 22:34:38 +00:00
|
|
|
end
|
2018-04-07 19:36:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-11 01:15:03 +00:00
|
|
|
begin
|
|
|
|
light.with_threshold(STOPLIGHT_FAILURE_THRESHOLD)
|
|
|
|
.with_cool_off_time(STOPLIGHT_COOLDOWN)
|
|
|
|
.run
|
|
|
|
rescue Stoplight::Error::RedLight => e
|
|
|
|
raise e.class, e.message, e.backtrace.first(3)
|
|
|
|
end
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|
|
|
|
|
2017-09-29 01:16:20 +00:00
|
|
|
def failure_tracker
|
|
|
|
@failure_tracker ||= DeliveryFailureTracker.new(@inbox_url)
|
|
|
|
end
|
2019-07-01 22:34:38 +00:00
|
|
|
|
|
|
|
def request_pool
|
|
|
|
RequestPool.current
|
|
|
|
end
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|