Class: Spree::PaymentMethod::StoreCredit

Inherits:
Spree::PaymentMethod show all
Defined in:
app/models/spree/payment_method/store_credit.rb

Constant Summary

Constants inherited from Spree::PaymentMethod

DISPLAY

Instance Method Summary collapse

Methods inherited from Spree::PaymentMethod

active?, #auto_capture?, available, find_with_destroyed, #method_type, #payment_profiles_supported?, #provider_class, providers, #reusable_sources, #store_credit?, #supports?

Methods included from Spree::Preferences::StaticallyConfigurable

#preference_source=, #preferences, #preferences=

Methods inherited from Base

page

Methods included from Spree::Preferences::Preferable

#default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Instance Method Details

#authorize(amount_in_cents, store_credit, gateway_options = {}) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'app/models/spree/payment_method/store_credit.rb', line 16

def authorize(amount_in_cents, store_credit, gateway_options = {})
  if store_credit.nil?
    ActiveMerchant::Billing::Response.new(false, Spree.t('store_credit.unable_to_find'), {}, {})
  else
    action = -> (store_credit) {
      store_credit.authorize(
        amount_in_cents / 100.0.to_d,
        gateway_options[:currency],
        action_originator: gateway_options[:originator]
      )
    }
    handle_action_call(store_credit, action, :authorize)
  end
end

#can_capture?(payment) ⇒ Boolean

Returns:

  • (Boolean)


8
9
10
# File 'app/models/spree/payment_method/store_credit.rb', line 8

def can_capture?(payment)
  ['checkout', 'pending'].include?(payment.state)
end

#can_void?(payment) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
# File 'app/models/spree/payment_method/store_credit.rb', line 12

def can_void?(payment)
  payment.pending?
end

#cancel(auth_code) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'app/models/spree/payment_method/store_credit.rb', line 76

def cancel(auth_code)
  store_credit_event = auth_or_capture_event(auth_code)
  store_credit = store_credit_event.try(:store_credit)

  if store_credit_event.nil? || store_credit.nil?
    return false
  elsif store_credit_event.capture_action?
    store_credit.credit(store_credit_event.amount, auth_code, store_credit.currency)
  elsif store_credit_event.authorization_action?
    store_credit.void(auth_code)
  else
    return false
  end
end

#capture(amount_in_cents, auth_code, gateway_options = {}) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
# File 'app/models/spree/payment_method/store_credit.rb', line 31

def capture(amount_in_cents, auth_code, gateway_options = {})
  action = -> (store_credit) {
    store_credit.capture(
      amount_in_cents / 100.0.to_d,
      auth_code,
      gateway_options[:currency],
      action_originator: gateway_options[:originator]
    )
  }

  handle_action(action, :capture, auth_code)
end

#credit(amount_in_cents, auth_code, gateway_options) ⇒ Object



65
66
67
68
69
70
71
72
73
74
# File 'app/models/spree/payment_method/store_credit.rb', line 65

def credit(amount_in_cents, auth_code, gateway_options)
  action = -> (store_credit) do
    currency = gateway_options[:currency] || store_credit.currency
    originator = gateway_options[:originator]

    store_credit.credit(amount_in_cents / 100.0.to_d, auth_code, currency, action_originator: originator)
  end

  handle_action(action, :credit, auth_code)
end

#payment_source_classObject



4
5
6
# File 'app/models/spree/payment_method/store_credit.rb', line 4

def payment_source_class
  ::Spree::StoreCredit
end

#purchase(amount_in_cents, store_credit, gateway_options = {}) ⇒ Object



44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'app/models/spree/payment_method/store_credit.rb', line 44

def purchase(amount_in_cents, store_credit, gateway_options = {})
  eligible_events = store_credit.store_credit_events.where(amount: amount_in_cents / 100.0.to_d, action: Spree::StoreCredit::ELIGIBLE_ACTION)
  event = eligible_events.find do |eligible_event|
    store_credit.store_credit_events.where(authorization_code: eligible_event.authorization_code)
                                    .where.not(action: Spree::StoreCredit::ELIGIBLE_ACTION).empty?
  end

  if event.blank?
    ActiveMerchant::Billing::Response.new(false, Spree.t('store_credit.unable_to_find'), {}, {})
  else
    capture(amount_in_cents, event.authorization_code, gateway_options)
  end
end

#source_required?Boolean

Returns:

  • (Boolean)


91
92
93
# File 'app/models/spree/payment_method/store_credit.rb', line 91

def source_required?
  true
end

#void(auth_code, gateway_options = {}) ⇒ Object



58
59
60
61
62
63
# File 'app/models/spree/payment_method/store_credit.rb', line 58

def void(auth_code, gateway_options={})
  action = -> (store_credit) {
    store_credit.void(auth_code, action_originator: gateway_options[:originator])
  }
  handle_action(action, :void, auth_code)
end