Module: EffectiveStripeHelper

Defined in:
app/helpers/effective_stripe_helper.rb

Instance Method Summary collapse

Instance Method Details

#stripe_charge_data(order) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
# File 'app/helpers/effective_stripe_helper.rb', line 48

def stripe_charge_data(order)
  {
    stripe: {
      key: EffectiveOrders.stripe[:publishable_key],
      name: EffectiveOrders.stripe[:site_title],
      image: stripe_site_image_url,
      email: order.user.email,
      amount: order.total,
      description: stripe_order_description(order)
    }.to_json
  }
end

#stripe_coupon_description(coupon) ⇒ Object



29
30
31
32
33
34
35
36
37
# File 'app/helpers/effective_stripe_helper.rb', line 29

def stripe_coupon_description(coupon)
  amount = coupon.amount_off.present? ? price_to_currency(coupon.amount_off) : "#{coupon.percent_off}%"

  if coupon.duration_in_months.present?
    "#{coupon.id} - #{amount} off for #{coupon.duration_in_months} months"
  else
    "#{coupon.id} - #{amount} off #{coupon.duration}"
  end
end

#stripe_invoice_line_description(line, simple: false) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
# File 'app/helpers/effective_stripe_helper.rb', line 17

def stripe_invoice_line_description(line, simple: false)
  [
    "#{line.quantity}x",
    line.plan.name,
    price_to_currency(line.amount),
    ("#{Time.zone.at(line.period.start).strftime('%F')}" unless simple),
    ('to' unless simple),
    ("#{Time.zone.at(line.period.end).strftime('%F')}" unless simple),
    line.description.presence
  ].compact.join(' ')
end

#stripe_order_description(order) ⇒ Object



44
45
46
# File 'app/helpers/effective_stripe_helper.rb', line 44

def stripe_order_description(order)
  "#{order.num_items} items (#{price_to_currency(order.total)})"
end

#stripe_plan_description(obj) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'app/helpers/effective_stripe_helper.rb', line 3

def stripe_plan_description(obj)
  plan = (
    case obj
    when Hash            ; obj
    when ::Stripe::Plan  ; EffectiveOrders.stripe_plans.find { |plan| plan[:id] == obj.id }
    else                 ; raise 'unexpected object'
    end
  )

  raise("unknown stripe plan: #{obj}") unless plan.kind_of?(Hash) && plan[:id].present?

  plan[:description]
end

#stripe_site_image_urlObject



39
40
41
42
# File 'app/helpers/effective_stripe_helper.rb', line 39

def stripe_site_image_url
  return nil unless EffectiveOrders.stripe? && (url = EffectiveOrders.stripe[:site_image].to_s).present?
  url.start_with?('http') ? url : asset_url(url)
end