Fix errors preventing UnsubscribeService from working (#4866)
This commit is contained in:
parent
6867681c7c
commit
90712d4293
|
@ -4,16 +4,19 @@ class UnsubscribeService < BaseService
|
||||||
def call(account)
|
def call(account)
|
||||||
return if account.hub_url.blank?
|
return if account.hub_url.blank?
|
||||||
|
|
||||||
@account = account
|
@account = account
|
||||||
@response = build_request.perform
|
|
||||||
|
|
||||||
Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
|
begin
|
||||||
|
@response = build_request.perform
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
@account.secret = ''
|
@account.secret = ''
|
||||||
@account.subscription_expires_at = nil
|
@account.subscription_expires_at = nil
|
||||||
@account.save!
|
@account.save!
|
||||||
rescue HTTP::Error, OpenSSL::SSL::SSLError
|
|
||||||
Rails.logger.debug "PuSH subscription request for #{@account.acct} could not be made due to HTTP or SSL error"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
|
@ -26,7 +26,7 @@ RSpec.describe UnsubscribeService do
|
||||||
stub_request(:post, 'http://hub.example.com/').to_raise(HTTP::Error)
|
stub_request(:post, 'http://hub.example.com/').to_raise(HTTP::Error)
|
||||||
subject.call(account)
|
subject.call(account)
|
||||||
|
|
||||||
expect(logger).to have_received(:debug).with(/PuSH subscription request for bob@example.com could not be made due to HTTP or SSL error/)
|
expect(logger).to have_received(:debug).with(/unsubscribe for bob@example.com failed/)
|
||||||
end
|
end
|
||||||
|
|
||||||
def stub_logger
|
def stub_logger
|
||||||
|
|
Loading…
Reference in New Issue