Class: Spree::PaymentMethod::SimpleBogusCreditCard

Inherits:
BogusCreditCard show all
Defined in:
app/models/spree/payment_method/simple_bogus_credit_card.rb

Overview

Bogus Gateway that doesn’t support payment profiles.

Constant Summary

Constants inherited from BogusCreditCard

BogusCreditCard::AUTHORIZATION_CODE, BogusCreditCard::FAILURE_MESSAGE, BogusCreditCard::SUCCESS_MESSAGE, BogusCreditCard::TEST_AMEX, BogusCreditCard::TEST_DISC, BogusCreditCard::TEST_MC, BogusCreditCard::TEST_VISA, BogusCreditCard::VALID_CCS

Instance Attribute Summary

Attributes inherited from BogusCreditCard

#test

Instance Method Summary collapse

Methods inherited from BogusCreditCard

#actions, #capture, #create_profile, #credit, #gateway_class, #test?, #try_void, #void

Methods inherited from CreditCard

#partial_name, #payment_source_class, #reusable_sources, #reusable_sources_by_order, #supports?

Methods inherited from Spree::PaymentMethod

#auto_capture?, find_sti_class, #gateway, model_name, #options, #partial_name, #payment_source_class, #reusable_sources, #source_required?, #store_credit?, #supports?, #try_void

Methods included from Spree::Preferences::StaticallyConfigurable

#preference_source=, #preferences, #preferences=

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Instance Method Details

#authorize(_money, credit_card, _options = {}) ⇒ Object



10
11
12
13
14
15
16
# File 'app/models/spree/payment_method/simple_bogus_credit_card.rb', line 10

def authorize(_money, credit_card, _options = {})
  if VALID_CCS.include? credit_card.number
    ActiveMerchant::Billing::Response.new(true, SUCCESS_MESSAGE, {}, test: true, authorization: AUTHORIZATION_CODE, avs_result: { code: 'A' })
  else
    ActiveMerchant::Billing::Response.new(false, FAILURE_MESSAGE, { message: FAILURE_MESSAGE }, test: true)
  end
end

#payment_profiles_supported?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'app/models/spree/payment_method/simple_bogus_credit_card.rb', line 6

def payment_profiles_supported?
  false
end

#purchase(_money, credit_card, _options = {}) ⇒ Object



18
19
20
21
22
23
24
# File 'app/models/spree/payment_method/simple_bogus_credit_card.rb', line 18

def purchase(_money, credit_card, _options = {})
  if VALID_CCS.include? credit_card.number
    ActiveMerchant::Billing::Response.new(true, SUCCESS_MESSAGE, {}, test: true, authorization: AUTHORIZATION_CODE, avs_result: { code: 'A' })
  else
    ActiveMerchant::Billing::Response.new(false, FAILURE_MESSAGE, message: FAILURE_MESSAGE, test: true)
  end
end