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