Class: ActiveMerchant::Billing::BarclaycardSmartpayGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::BarclaycardSmartpayGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/barclaycard_smartpay.rb
Constant Summary
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::DEBIT_CARDS, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
-
#authorize(money, creditcard, options = {}) ⇒ Object
-
#capture(money, authorization, options = {}) ⇒ Object
-
#credit(money, creditcard, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ BarclaycardSmartpayGateway
constructor
A new instance of BarclaycardSmartpayGateway.
-
#purchase(money, creditcard, options = {}) ⇒ Object
-
#refund(money, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#store(creditcard, options = {}) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#verify(creditcard, options = {}) ⇒ Object
-
#void(identification, options = {}) ⇒ Object
Methods inherited from Gateway
#card_brand, card_brand, #generate_unique_id, inherited, supported_countries, #supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #test?
#expdate, #format
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
Returns a new instance of BarclaycardSmartpayGateway.
16
17
18
19
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 16
def initialize(options = {})
requires!(options, :company, :merchant, :password)
super
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 30
def authorize(money, creditcard, options = {})
requires!(options, :order_id)
post = payment_request(money, options)
post[:amount] = amount_hash(money, options[:currency])
post[:card] = credit_card_hash(creditcard)
if address = (options[:billing_address] || options[:address])
post[:billingAddress] = address_hash(address)
end
if options[:shipping_address]
post[:deliveryAddress] = address_hash(options[:shipping_address])
end
commit('authorise', post)
end
|
#capture(money, authorization, options = {}) ⇒ Object
48
49
50
51
52
53
54
55
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 48
def capture(money, authorization, options = {})
requires!(options, :order_id)
post = modification_request(authorization, options)
post[:modificationAmount] = amount_hash(money, options[:currency])
commit('capture', post)
end
|
#credit(money, creditcard, options = {}) ⇒ Object
66
67
68
69
70
71
72
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 66
def credit(money, creditcard, options = {})
post = payment_request(money, options)
post[:amount] = amount_hash(money, options[:currency])
post[:card] = credit_card_hash(creditcard)
commit('refundWithData', post)
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
21
22
23
24
25
26
27
28
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 21
def purchase(money, creditcard, options = {})
requires!(options, :order_id)
MultiResponse.run do |r|
r.process { authorize(money, creditcard, options) }
r.process { capture(money, r.authorization, options) }
end
end
|
#refund(money, authorization, options = {}) ⇒ Object
57
58
59
60
61
62
63
64
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 57
def refund(money, authorization, options = {})
requires!(options, :order_id)
post = modification_request(authorization, options)
post[:modificationAmount] = amount_hash(money, options[:currency])
commit('refund', post)
end
|
#scrub(transcript) ⇒ Object
98
99
100
101
102
103
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 98
def scrub(transcript)
transcript.
gsub(%r(((?:\r\n)?Authorization: Basic )[^\r\n]+(\r\n)?), '\1[FILTERED]').
gsub(%r((card.number=)\d+), '\1[FILTERED]').
gsub(%r((card.cvc=)\d+), '\1[FILTERED]')
end
|
#store(creditcard, options = {}) ⇒ Object
86
87
88
89
90
91
92
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 86
def store(creditcard, options = {})
post = store_request(options)
post[:card] = credit_card_hash(creditcard)
post[:recurring] = {:contract => 'RECURRING'}
commit('store', post)
end
|
#supports_scrubbing? ⇒ Boolean
94
95
96
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 94
def supports_scrubbing?
true
end
|
#verify(creditcard, options = {}) ⇒ Object
82
83
84
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 82
def verify(creditcard, options = {})
authorize(0, creditcard, options)
end
|
#void(identification, options = {}) ⇒ Object
74
75
76
77
78
79
80
|
# File 'lib/active_merchant/billing/gateways/barclaycard_smartpay.rb', line 74
def void(identification, options = {})
requires!(options, :order_id)
post = modification_request(identification, options)
commit('cancel', post)
end
|