This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-28 04:36:47 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-28 09:14:49 -08:00
|
|
|
class Pubsubhubbub::UnsubscribeService < BaseService
|
2016-11-28 04:36:47 -08:00
|
|
|
def call(account, callback)
|
|
|
|
return ['Invalid topic URL', 422] if account.nil?
|
|
|
|
|
|
|
|
subscription = Subscription.where(account: account, callback_url: callback)
|
|
|
|
|
|
|
|
unless subscription.nil?
|
|
|
|
Pubsubhubbub::ConfirmationWorker.perform_async(subscription.id, 'unsubscribe')
|
|
|
|
end
|
|
|
|
|
|
|
|
['', 202]
|
|
|
|
end
|
|
|
|
end
|