Sha256: 7c073219c14e5e735e123d419cfbadc38fa8164ca47541531cdb2727d98cadcb

Contents?: true

Size: 1.93 KB

Versions: 7

Compression:

Stored size: 1.93 KB

Contents

module Pay
  module Paddle
    module Webhooks
      class SubscriptionPaymentSucceeded
        def call(event)
          pay_customer = Pay::Customer.find_by(processor: :paddle, processor_id: event.user_id)

          if pay_customer.nil?
            owner = Pay::Paddle.owner_from_passthrough(event.passthrough)
            pay_customer = owner&.set_payment_processor :paddle, processor_id: event.user_id
          end

          if pay_customer.nil?
            Rails.logger.error("[Pay] Unable to find Pay::Customer with: '#{event.passthrough}'")
            return
          end

          return if pay_customer.charges.where(processor_id: event.subscription_payment_id).any?

          charge = create_charge(pay_customer, event)
          notify_user(charge)
        end

        def create_charge(pay_customer, event)
          payment_method_details = Pay::Paddle::PaymentMethod.payment_method_details_for(subscription_id: event.subscription_id)

          attributes = {
            amount: (event.sale_gross.to_f * 100).to_i,
            created_at: Time.zone.parse(event.event_time),
            currency: event.currency,
            paddle_receipt_url: event.receipt_url,
            subscription: pay_customer.subscriptions.find_by(processor_id: event.subscription_id),
            metadata: Pay::Paddle.parse_passthrough(event.passthrough).except("owner_sgid")
          }.merge(payment_method_details)

          charge = pay_customer.charges.find_or_initialize_by(processor_id: event.subscription_payment_id)
          charge.update!(attributes)

          # Update customer's payment method
          Pay::Paddle::PaymentMethod.sync(pay_customer: pay_customer, attributes: payment_method_details)

          charge
        end

        def notify_user(pay_charge)
          if Pay.send_emails
            Pay::UserMailer.with(pay_customer: pay_charge.customer, charge: pay_charge).receipt.deliver_later
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pay-3.0.24 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb
pay-3.0.23 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb
pay-3.0.22 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb
pay-3.0.21 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb
pay-3.0.20 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb
pay-3.0.19 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb
pay-3.0.18 lib/pay/paddle/webhooks/subscription_payment_succeeded.rb