2016-11-28 12:36:47 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-28 17:14:49 +00:00
|
|
|
class Pubsubhubbub::UnsubscribeService < BaseService
|
2017-05-09 17:58:18 +00:00
|
|
|
attr_reader :account, :callback_url
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2017-05-09 17:58:18 +00:00
|
|
|
def call(account, callback_url)
|
|
|
|
@account = account
|
|
|
|
@callback_url = callback_url
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2017-05-09 17:58:18 +00:00
|
|
|
process_unsubscribe
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def process_unsubscribe
|
|
|
|
if account.nil?
|
|
|
|
['Invalid topic URL', 422]
|
|
|
|
else
|
|
|
|
confirm_unsubscribe unless subscription.nil?
|
|
|
|
['', 202]
|
2016-11-28 12:36:47 +00:00
|
|
|
end
|
2017-05-09 17:58:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def confirm_unsubscribe
|
|
|
|
Pubsubhubbub::ConfirmationWorker.perform_async(subscription.id, 'unsubscribe')
|
|
|
|
end
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2017-05-09 17:58:18 +00:00
|
|
|
def subscription
|
|
|
|
@_subscription ||= Subscription.find_by(account: account, callback_url: callback_url)
|
2016-11-28 12:36:47 +00:00
|
|
|
end
|
|
|
|
end
|