Class: Spree::StoreCredit

Inherits:
PaymentSource show all
Extended by:
DisplayMoney
Includes:
Discard::Model, ParanoiaDeprecations
Defined in:
app/models/spree/store_credit.rb

Constant Summary collapse

VOID_ACTION =
'void'
CREDIT_ACTION =
'credit'
CAPTURE_ACTION =
'capture'
ELIGIBLE_ACTION =
'eligible'
AUTHORIZE_ACTION =
'authorize'
ALLOCATION_ACTION =
'allocation'
ADJUSTMENT_ACTION =
'adjustment'
INVALIDATE_ACTION =
'invalidate'

Instance Attribute Summary collapse

Attributes inherited from PaymentSource

#imported

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

Methods included from ParanoiaDeprecations

#paranoia_delete, #paranoia_destroy

Methods inherited from PaymentSource

#actions, #can_capture?, #can_credit?, #reusable?

Methods inherited from Base

display_includes, #initialize_preference_defaults, page, preference

Methods included from Preferences::Preferable

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

Instance Attribute Details

#actionObject

Returns the value of attribute action.



44
45
46
# File 'app/models/spree/store_credit.rb', line 44

def action
  @action
end

#action_amountObject

Returns the value of attribute action_amount.



44
45
46
# File 'app/models/spree/store_credit.rb', line 44

def action_amount
  @action_amount
end

#action_authorization_codeObject

Returns the value of attribute action_authorization_code.



44
45
46
# File 'app/models/spree/store_credit.rb', line 44

def action_authorization_code
  @action_authorization_code
end

#action_originatorObject

Returns the value of attribute action_originator.



44
45
46
# File 'app/models/spree/store_credit.rb', line 44

def action_originator
  @action_originator
end

#store_credit_reasonObject

Returns the value of attribute store_credit_reason.



44
45
46
# File 'app/models/spree/store_credit.rb', line 44

def store_credit_reason
  @store_credit_reason
end

Instance Method Details

#amount_remainingObject



49
50
51
52
# File 'app/models/spree/store_credit.rb', line 49

def amount_remaining
  return 0.0.to_d if invalidated?
  amount - amount_used - amount_authorized
end

#authorize(amount, order_currency, options = {}) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'app/models/spree/store_credit.rb', line 54

def authorize(amount, order_currency, options = {})
  authorization_code = options[:action_authorization_code]
  if authorization_code
    if store_credit_events.find_by(action: AUTHORIZE_ACTION, authorization_code: authorization_code)
      # Don't authorize again on capture
      return true
    end
  else
    authorization_code = generate_authorization_code
  end

  if validate_authorization(amount, order_currency)
    update!({
      action: AUTHORIZE_ACTION,
      action_amount: amount,
      action_originator: options[:action_originator],
      action_authorization_code: authorization_code,

      amount_authorized: amount_authorized + amount
    })
    authorization_code
  else
    false
  end
end

#can_void?(payment) ⇒ Boolean

Returns:

  • (Boolean)


154
155
156
# File 'app/models/spree/store_credit.rb', line 154

def can_void?(payment)
  payment.pending?
end

#capture(amount, authorization_code, order_currency, options = {}) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'app/models/spree/store_credit.rb', line 89

def capture(amount, authorization_code, order_currency, options = {})
  return false unless authorize(amount, order_currency, action_authorization_code: authorization_code)
  auth_event = store_credit_events.find_by!(action: AUTHORIZE_ACTION, authorization_code: authorization_code)

  if amount <= auth_event.amount
    if currency != order_currency
      errors.add(:base, I18n.t('spree.store_credit.currency_mismatch'))
      false
    else
      update!({
        action: CAPTURE_ACTION,
        action_amount: amount,
        action_originator: options[:action_originator],
        action_authorization_code: authorization_code,

        amount_used: amount_used + amount,
        amount_authorized: amount_authorized - auth_event.amount
      })
      authorization_code
    end
  else
    errors.add(:base, I18n.t('spree.store_credit.insufficient_authorized_amount'))
    false
  end
end

#credit(amount, authorization_code, order_currency, options = {}) ⇒ Object



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'app/models/spree/store_credit.rb', line 132

def credit(amount, authorization_code, order_currency, options = {})
  # Find the amount related to this authorization_code in order to add the store credit back
  capture_event = store_credit_events.find_by(action: CAPTURE_ACTION, authorization_code: authorization_code)

  if currency != order_currency # sanity check to make sure the order currency hasn't changed since the auth
    errors.add(:base, I18n.t('spree.store_credit.currency_mismatch'))
    false
  elsif capture_event && amount <= capture_event.amount
    action_attributes = {
      action: CREDIT_ACTION,
      action_amount: amount,
      action_originator: options[:action_originator],
      action_authorization_code: authorization_code
    }
    create_credit_record(amount, action_attributes)
    true
  else
    errors.add(:base, I18n.t('spree.store_credit.unable_to_credit', auth_code: authorization_code))
    false
  end
end

#editable?Boolean

Returns:

  • (Boolean)


162
163
164
# File 'app/models/spree/store_credit.rb', line 162

def editable?
  !amount_remaining.zero?
end

#generate_authorization_codeObject



158
159
160
# File 'app/models/spree/store_credit.rb', line 158

def generate_authorization_code
  "#{id}-SC-#{Time.current.utc.strftime('%Y%m%d%H%M%S%6N')}"
end

#invalidate(reason, user_performing_invalidation) ⇒ Object



184
185
186
187
188
189
190
191
192
193
194
195
# File 'app/models/spree/store_credit.rb', line 184

def invalidate(reason, user_performing_invalidation)
  if invalidateable?
    self.action = INVALIDATE_ACTION
    self.store_credit_reason = reason
    self.action_originator = user_performing_invalidation
    self.invalidated_at = Time.current
    save
  else
    errors.add(:invalidated_at, I18n.t('spree.store_credit.errors.cannot_invalidate_uncaptured_authorization'))
    false
  end
end

#invalidateable?Boolean

Returns:

  • (Boolean)


166
167
168
# File 'app/models/spree/store_credit.rb', line 166

def invalidateable?
  !invalidated? && amount_authorized.zero?
end

#invalidated?Boolean

Returns:

  • (Boolean)


170
171
172
# File 'app/models/spree/store_credit.rb', line 170

def invalidated?
  !!invalidated_at
end

#update_amount(amount, reason, user_performing_update) ⇒ Object



174
175
176
177
178
179
180
181
182
# File 'app/models/spree/store_credit.rb', line 174

def update_amount(amount, reason, user_performing_update)
  previous_amount = self.amount
  self.amount = amount
  self.action_amount = self.amount - previous_amount
  self.action = ADJUSTMENT_ACTION
  self.store_credit_reason = reason
  self.action_originator = user_performing_update
  save
end

#validate_authorization(amount, order_currency) ⇒ Object



80
81
82
83
84
85
86
87
# File 'app/models/spree/store_credit.rb', line 80

def validate_authorization(amount, order_currency)
  if amount_remaining.to_d < amount.to_d
    errors.add(:base, I18n.t('spree.store_credit.insufficient_funds'))
  elsif currency != order_currency
    errors.add(:base, I18n.t('spree.store_credit.currency_mismatch'))
  end
  errors.blank?
end

#void(authorization_code, options = {}) ⇒ Object



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'app/models/spree/store_credit.rb', line 115

def void(authorization_code, options = {})
  if auth_event = store_credit_events.find_by(action: AUTHORIZE_ACTION, authorization_code: authorization_code)
    update!({
      action: VOID_ACTION,
      action_amount: auth_event.amount,
      action_authorization_code: authorization_code,
      action_originator: options[:action_originator],

      amount_authorized: amount_authorized - auth_event.amount
    })
    true
  else
    errors.add(:base, I18n.t('spree.store_credit.unable_to_void', auth_code: authorization_code))
    false
  end
end