6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'app/models/pay/paddle_billing/charge.rb', line 6
def self.sync(charge_id, object: nil, try: 0, retries: 1)
object ||= ::Paddle::Transaction.retrieve(id: charge_id)
return unless object.status == "completed"
return if object.customer_id.blank?
pay_customer = Pay::Customer.find_by(processor: :paddle_billing, processor_id: object.customer_id)
return unless pay_customer
if object.origin == "subscription_payment_method_change"
Pay::PaddleBilling::PaymentMethod.sync(pay_customer: pay_customer, attributes: object.payments.first)
return
end
attrs = {
amount: object.details.totals.grand_total,
created_at: object.created_at,
currency: object.currency_code,
metadata: object.details.line_items&.first&.id,
subscription: pay_customer.subscriptions.find_by(processor_id: object.subscription_id)
}
if (details = Array.wrap(object.payments).first&.method_details)
case details.type.downcase
when "card"
attrs[:payment_method_type] = "card"
attrs[:brand] = details.card.type
attrs[:exp_month] = details.card.expiry_month
attrs[:exp_year] = details.card.expiry_year
attrs[:last4] = details.card.last4
when "paypal"
attrs[:payment_method_type] = "paypal"
end
Pay::PaddleBilling::PaymentMethod.sync(pay_customer: pay_customer, attributes: object.payments.first)
end
if (pay_charge = find_by(customer: pay_customer, processor_id: object.id))
pay_charge.with_lock { pay_charge.update!(attrs) }
pay_charge
else
create!(attrs.merge(customer: pay_customer, processor_id: object.id))
end
rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotUnique
try += 1
if try <= retries
sleep 0.1
retry
else
raise
end
end
|