class Pay::Paddle::Webhooks::SubscriptionPaymentSucceeded

Public Instance Methods

call(event) click to toggle source
# File lib/pay/paddle/webhooks/subscription_payment_succeeded.rb, line 5
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(pay_customer.owner, charge)
end
create_charge(pay_customer, event) click to toggle source
# File lib/pay/paddle/webhooks/subscription_payment_succeeded.rb, line 24
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
notify_user(billable, charge) click to toggle source
# File lib/pay/paddle/webhooks/subscription_payment_succeeded.rb, line 45
def notify_user(billable, charge)
  if Pay.send_emails && charge.respond_to?(:receipt)
    Pay::UserMailer.with(billable: billable, charge: charge).receipt.deliver_later
  end
end