2016-12-02 13:14:49 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UnsubscribeService < BaseService
|
|
|
|
def call(account)
|
2017-08-20 23:14:40 +00:00
|
|
|
return if account.hub_url.blank?
|
2017-07-19 15:06:46 +00:00
|
|
|
|
2017-09-09 15:36:27 +00:00
|
|
|
@account = account
|
2016-12-02 13:14:49 +00:00
|
|
|
|
2017-09-09 15:36:27 +00:00
|
|
|
begin
|
2017-09-28 13:04:32 +00:00
|
|
|
@response = build_request.perform.flush
|
2017-09-09 15:36:27 +00:00
|
|
|
|
|
|
|
Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
|
|
|
|
rescue HTTP::Error, OpenSSL::SSL::SSLError => e
|
|
|
|
Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{e}"
|
|
|
|
end
|
2016-12-02 13:14:49 +00:00
|
|
|
|
2017-07-14 18:41:49 +00:00
|
|
|
@account.secret = ''
|
|
|
|
@account.subscription_expires_at = nil
|
|
|
|
@account.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_request
|
|
|
|
Request.new(:post, @account.hub_url, form: subscription_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def subscription_params
|
|
|
|
{
|
|
|
|
'hub.topic': @account.remote_url,
|
|
|
|
'hub.mode': 'unsubscribe',
|
|
|
|
'hub.callback': api_subscription_url(@account.id),
|
|
|
|
'hub.verify': 'async',
|
|
|
|
}
|
2016-12-02 13:14:49 +00:00
|
|
|
end
|
|
|
|
end
|