about summary refs log tree commit diff
path: root/app/services/unsubscribe_service.rb
blob: 1a951d1b433af18bff3d83df033beb1e7e95497d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class UnsubscribeService < BaseService
  def call(account)
    subscription = account.subscription(api_subscription_url(account.id))
    response = subscription.unsubscribe

    unless response.successful?
      Rails.logger.debug "PuSH unsubscribe for #{account.acct} failed: #{response.message}"
    end

    account.secret = ''
    account.subscription_expires_at = nil
    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