Class: Spree::Gateway::Bogus
Constant Summary
collapse
- TEST_VISA =
'4111111111111111'
- TEST_MC =
'5500000000000004'
- TEST_AMEX =
'340000000000009'
- TEST_DISC =
'6011000000000004'
- VALID_CCS =
['1', TEST_VISA, TEST_MC, TEST_AMEX, TEST_DISC]
PaymentMethod::DISPLAY
Instance Attribute Summary collapse
Instance Method Summary
collapse
-
#authorize(money, creditcard, options = {}) ⇒ Object
-
#capture(authorization, creditcard, gateway_options) ⇒ Object
-
#create_profile(payment) ⇒ Object
-
#credit(money, creditcard, response_code, options = {}) ⇒ Object
-
#payment_profiles_supported? ⇒ Boolean
-
#preferences ⇒ Object
-
#provider_class ⇒ Object
-
#purchase(money, creditcard, options = {}) ⇒ Object
-
#test? ⇒ Boolean
-
#void(response_code, creditcard, options = {}) ⇒ Object
current, #method_missing, #method_type, #options, #payment_source_class, #provider
active?, available, current, #destroy, find_with_destroyed, #method_type, #payment_source_class, providers, #source_required?
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Spree::Gateway
Instance Attribute Details
#test ⇒ Object
Returns the value of attribute test.
10
11
12
|
# File 'app/models/spree/gateway/bogus.rb', line 10
def test
@test
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
26
27
28
29
30
31
32
33
|
# File 'app/models/spree/gateway/bogus.rb', line 26
def authorize(money, creditcard, options = {})
profile_id = creditcard.gateway_customer_profile_id
if VALID_CCS.include? creditcard.number or (profile_id and profile_id.starts_with? 'BGS-')
ActiveMerchant::Billing::Response.new(true, 'Bogus Gateway: Forced success', {}, :test => true, :authorization => '12345', :avs_result => { :code => 'A' })
else
ActiveMerchant::Billing::Response.new(false, 'Bogus Gateway: Forced failure', { :message => 'Bogus Gateway: Forced failure' }, :test => true)
end
end
|
#capture(authorization, creditcard, gateway_options) ⇒ Object
48
49
50
51
52
53
54
55
|
# File 'app/models/spree/gateway/bogus.rb', line 48
def capture(authorization, creditcard, gateway_options)
if authorization.response_code == '12345'
ActiveMerchant::Billing::Response.new(true, 'Bogus Gateway: Forced success', {}, :test => true, :authorization => '67890')
else
ActiveMerchant::Billing::Response.new(false, 'Bogus Gateway: Forced failure', :error => 'Bogus Gateway: Forced failure', :test => true)
end
end
|
#create_profile(payment) ⇒ Object
20
21
22
23
24
|
# File 'app/models/spree/gateway/bogus.rb', line 20
def create_profile(payment)
success = VALID_CCS.include? payment.source.number
payment.source.update_attributes(:gateway_customer_profile_id => generate_profile_id(success))
end
|
#credit(money, creditcard, response_code, options = {}) ⇒ Object
44
45
46
|
# File 'app/models/spree/gateway/bogus.rb', line 44
def credit(money, creditcard, response_code, options = {})
ActiveMerchant::Billing::Response.new(true, 'Bogus Gateway: Forced success', {}, :test => true, :authorization => '12345')
end
|
#payment_profiles_supported? ⇒ Boolean
66
67
68
|
# File 'app/models/spree/gateway/bogus.rb', line 66
def payment_profiles_supported?
true
end
|
#preferences ⇒ Object
16
17
18
|
# File 'app/models/spree/gateway/bogus.rb', line 16
def preferences
{}
end
|
#provider_class ⇒ Object
12
13
14
|
# File 'app/models/spree/gateway/bogus.rb', line 12
def provider_class
self.class
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
35
36
37
38
39
40
41
42
|
# File 'app/models/spree/gateway/bogus.rb', line 35
def purchase(money, creditcard, options = {})
profile_id = creditcard.gateway_customer_profile_id
if VALID_CCS.include? creditcard.number or (profile_id and profile_id.starts_with? 'BGS-')
ActiveMerchant::Billing::Response.new(true, 'Bogus Gateway: Forced success', {}, :test => true, :authorization => '12345', :avs_result => { :code => 'A' })
else
ActiveMerchant::Billing::Response.new(false, 'Bogus Gateway: Forced failure', :message => 'Bogus Gateway: Forced failure', :test => true)
end
end
|
#test? ⇒ Boolean
61
62
63
64
|
# File 'app/models/spree/gateway/bogus.rb', line 61
def test?
true
end
|
#void(response_code, creditcard, options = {}) ⇒ Object
57
58
59
|
# File 'app/models/spree/gateway/bogus.rb', line 57
def void(response_code, creditcard, options = {})
ActiveMerchant::Billing::Response.new(true, 'Bogus Gateway: Forced success', {}, :test => true, :authorization => '12345')
end
|