2016-12-02 14:14:49 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UnsubscribeService < BaseService
|
|
|
|
def call(account)
|
2017-08-21 01:14:40 +02:00
|
|
|
return if account.hub_url.blank?
|
2017-07-19 17:06:46 +02:00
|
|
|
|
2017-09-09 17:36:27 +02:00
|
|
|
@account = account
|
2016-12-02 14:14:49 +01:00
|
|
|
|
2017-09-09 17:36:27 +02:00
|
|
|
begin
|
2017-10-14 14:38:57 +02:00
|
|
|
@response = build_request.perform
|
2017-09-09 17:36:27 +02:00
|
|
|
|
|
|
|
Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
|
2017-10-14 14:38:57 +02:00
|
|
|
@response.connection&.close
|
2017-09-09 17:36:27 +02:00
|
|
|
rescue HTTP::Error, OpenSSL::SSL::SSLError => e
|
|
|
|
Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{e}"
|
|
|
|
end
|
2016-12-02 14:14:49 +01:00
|
|
|
|
2017-07-14 20:41:49 +02: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 14:14:49 +01:00
|
|
|
end
|
|
|
|
end
|