2017-08-13 00:44:41 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::DeliveryWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-05-19 00:23:19 +02:00
|
|
|
STOPLIGHT_FAILURE_THRESHOLD = 10
|
|
|
|
STOPLIGHT_COOLDOWN = 60
|
|
|
|
|
2018-01-19 15:49:48 +01:00
|
|
|
sidekiq_options queue: 'push', retry: 16, dead: false
|
2017-08-13 00:44:41 +02:00
|
|
|
|
|
|
|
HEADERS = { 'Content-Type' => 'application/activity+json' }.freeze
|
|
|
|
|
2018-08-26 20:21:03 +02:00
|
|
|
def perform(json, source_account_id, inbox_url, options = {})
|
2018-11-27 19:15:08 +01:00
|
|
|
return if DeliveryFailureTracker.unavailable?(inbox_url)
|
|
|
|
|
2018-08-26 20:21:03 +02:00
|
|
|
@options = options.with_indifferent_access
|
2017-08-13 00:44:41 +02:00
|
|
|
@json = json
|
|
|
|
@source_account = Account.find(source_account_id)
|
|
|
|
@inbox_url = inbox_url
|
|
|
|
|
2018-04-07 21:36:58 +02:00
|
|
|
perform_request
|
2017-08-13 00:44:41 +02:00
|
|
|
|
2017-09-29 03:16:20 +02:00
|
|
|
failure_tracker.track_success!
|
2017-08-13 00:44:41 +02:00
|
|
|
rescue => e
|
2017-09-29 03:16:20 +02:00
|
|
|
failure_tracker.track_failure!
|
2017-09-24 11:14:06 +02:00
|
|
|
raise e.class, "Delivery failed for #{inbox_url}: #{e.message}", e.backtrace[0]
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_request
|
|
|
|
request = Request.new(:post, @inbox_url, body: @json)
|
2018-08-26 20:21:03 +02:00
|
|
|
request.on_behalf_of(@source_account, :uri, sign_with: @options[:sign_with])
|
2017-08-13 00:44:41 +02:00
|
|
|
request.add_headers(HEADERS)
|
|
|
|
end
|
|
|
|
|
2018-04-07 21:36:58 +02:00
|
|
|
def perform_request
|
|
|
|
light = Stoplight(@inbox_url) do
|
|
|
|
build_request.perform do |response|
|
2018-05-19 00:23:19 +02:00
|
|
|
raise Mastodon::UnexpectedResponseError, response unless response_successful?(response) || response_error_unsalvageable?(response)
|
2018-04-07 21:36:58 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-19 00:23:19 +02:00
|
|
|
light.with_threshold(STOPLIGHT_FAILURE_THRESHOLD)
|
|
|
|
.with_cool_off_time(STOPLIGHT_COOLDOWN)
|
|
|
|
.run
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
2018-03-24 12:49:54 +01:00
|
|
|
def response_successful?(response)
|
2018-05-19 14:47:44 +02:00
|
|
|
(200...300).cover?(response.code)
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
2017-09-29 03:16:20 +02:00
|
|
|
|
2018-05-19 00:23:19 +02:00
|
|
|
def response_error_unsalvageable?(response)
|
2018-05-19 14:47:44 +02:00
|
|
|
(400...500).cover?(response.code) && response.code != 429
|
2018-05-19 00:23:19 +02:00
|
|
|
end
|
|
|
|
|
2017-09-29 03:16:20 +02:00
|
|
|
def failure_tracker
|
|
|
|
@failure_tracker ||= DeliveryFailureTracker.new(@inbox_url)
|
|
|
|
end
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|