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

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

Methods inherited from Base

page, spree_base_scopes

Methods included from Spree::Preferences::Preferable

#clear_preferences, #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



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

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

#available_for_order?(order) ⇒ Boolean

Returns:

  • (Boolean)


96
97
98
# File 'app/models/spree/payment_method/store_credit.rb', line 96

def available_for_order?(order)
  order.could_use_store_credit?
end

#can_capture?(payment) ⇒ Boolean

Returns:

  • (Boolean)


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

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

#can_void?(payment) ⇒ Boolean

Returns:

  • (Boolean)


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

def can_void?(payment)
  payment.pending?
end

#cancel(auth_code) ⇒ Object



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

def cancel(auth_code)
  store_credit_event = StoreCreditEvent.find_by(authorization_code: auth_code,
                                                action: Spree::StoreCredit::CAPTURE_ACTION)
  store_credit = store_credit_event.try(:store_credit)

  if !store_credit_event || !store_credit
    handle_action(nil, :cancel, false)
  else
    action = -> (store_credit) do
      store_credit.credit(store_credit_event.amount, auth_code, store_credit.currency)
    end
    handle_action(action, :cancel, auth_code)
  end
end

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



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

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

#credit(amount_in_cents, auth_code, gateway_options) ⇒ Object



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

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



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

def payment_source_class
  ::Spree::StoreCredit
end

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



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

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.detect 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_payment_method.unable_to_find'), {}, {})
  else
    capture(amount_in_cents, event.authorization_code, gateway_options)
  end
end

#source_required?Boolean

Returns:

  • (Boolean)


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

def source_required?
  true
end

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



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

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