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)
|
|
|
|
# An error in the 4xx range (except for 429, which is rate limiting)
|
|
|
|
# means 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)
|
|
|
|
# Anything in the 2xx range means the subscription will be confirmed
|
|
|
|
# asynchronously, we've done what we needed to do
|
|
|
|
account.save!
|
|
|
|
else
|
|
|
|
# What's left is the 5xx range and 429, which means we need to retry
|
|
|
|
# at a later time. Fail loudly!
|
|
|
|
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
|
|
|
|
|
|
|
|
def response_failed_permanently?(response)
|
|
|
|
response.code > 299 && response.code < 500 && response.code != 429
|
|
|
|
end
|
2016-09-19 22:39:03 +00:00
|
|
|
|
2017-05-05 00:23:01 +00:00
|
|
|
def response_successful?(response)
|
|
|
|
response.code > 199 && response.code < 300
|
2016-09-19 22:39:03 +00:00
|
|
|
end
|
|
|
|
end
|