2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-19 22:39:03 +00:00
|
|
|
class SubscribeService < BaseService
|
|
|
|
def call(account)
|
2016-09-20 00:43:20 +00:00
|
|
|
account.secret = SecureRandom.hex
|
2016-09-19 22:39:03 +00:00
|
|
|
|
|
|
|
subscription = account.subscription(api_subscription_url(account.id))
|
2017-05-05 00:23:01 +00:00
|
|
|
response = subscription.subscribe
|
2016-09-19 22:39:03 +00:00
|
|
|
|
2017-05-05 00:23:01 +00:00
|
|
|
if response_failed_permanently?(response)
|
2017-05-08 22:45:02 +00:00
|
|
|
# We're not allowed to subscribe. Fail and move on.
|
2016-09-20 00:43:20 +00:00
|
|
|
account.secret = ''
|
2017-05-05 00:23:01 +00:00
|
|
|
account.save!
|
|
|
|
elsif response_successful?(response)
|
2017-05-08 22:45:02 +00:00
|
|
|
# The subscription will be confirmed asynchronously.
|
2017-05-05 00:23:01 +00:00
|
|
|
account.save!
|
|
|
|
else
|
2017-05-08 22:45:02 +00:00
|
|
|
# The response was either a 429 rate limit, or a 5xx error.
|
|
|
|
# We need to retry at a later time. Fail loudly!
|
2017-05-05 00:23:01 +00:00
|
|
|
raise "Subscription attempt failed for #{account.acct} (#{account.hub_url}): HTTP #{response.code}"
|
2016-09-19 22:39:03 +00:00
|
|
|
end
|
2017-05-05 00:23:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-08 22:45:02 +00:00
|
|
|
# Any response in the 3xx or 4xx range, except for 429 (rate limit)
|
2017-05-05 00:23:01 +00:00
|
|
|
def response_failed_permanently?(response)
|
2017-05-08 22:45:02 +00:00
|
|
|
(response.status.redirect? || response.status.client_error?) && !response.status.too_many_requests?
|
2017-05-05 00:23:01 +00:00
|
|
|
end
|
2016-09-19 22:39:03 +00:00
|
|
|
|
2017-05-08 22:45:02 +00:00
|
|
|
# Any response in the 2xx range
|
2017-05-05 00:23:01 +00:00
|
|
|
def response_successful?(response)
|
2017-05-08 22:45:02 +00:00
|
|
|
response.status.success?
|
2016-09-19 22:39:03 +00:00
|
|
|
end
|
|
|
|
end
|