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?

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
17
18
# File 'app/models/spree/payment_method/simple_bogus_credit_card.rb', line 10

def authorize(_money, credit_card, _options = {})
  message_detail = " - #{__method__}"

  if VALID_CCS.include? credit_card.number
    ActiveMerchant::Billing::Response.new(true, SUCCESS_MESSAGE + message_detail, {}, test: true, authorization: AUTHORIZATION_CODE, avs_result: { code: 'A' })
  else
    ActiveMerchant::Billing::Response.new(false, FAILURE_MESSAGE + message_detail, { 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



20
21
22
23
24
25
26
27
28
# File 'app/models/spree/payment_method/simple_bogus_credit_card.rb', line 20

def purchase(_money, credit_card, _options = {})
  message_detail = " - #{__method__}"

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

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



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

def void(_response_code, options = {})
  message_detail = " - #{__method__}"

  if options[:originator].completed?
    ActiveMerchant::Billing::Response.new(false, FAILURE_MESSAGE + message_detail, {}, test: true, authorization: AUTHORIZATION_CODE)
  else
    ActiveMerchant::Billing::Response.new(true, SUCCESS_MESSAGE + message_detail, {}, test: true, authorization: AUTHORIZATION_CODE)
  end
end