Class: ActiveMerchant::Billing::DLocalGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::DLocalGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/d_local.rb
Constant Summary
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
-
#authorize(money, payment, options = {}) ⇒ Object
-
#capture(money, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ DLocalGateway
constructor
A new instance of DLocalGateway.
-
#purchase(money, payment, options = {}) ⇒ Object
-
#refund(money, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#verify(credit_card, options = {}) ⇒ Object
-
#void(authorization, options = {}) ⇒ Object
Methods inherited from Gateway
#add_field_to_post_if_present, #add_fields_to_post_if_present, #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
#initialize(options = {}) ⇒ DLocalGateway
Returns a new instance of DLocalGateway.
14
15
16
17
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 14
def initialize(options={})
requires!(options, :login, :trans_key, :secret_key)
super
end
|
Instance Method Details
#authorize(money, payment, options = {}) ⇒ Object
26
27
28
29
30
31
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 26
def authorize(money, payment, options={})
post = {}
add_auth_purchase_params(post, money, payment, 'authorize', options)
commit('authorize', post, options)
end
|
#capture(money, authorization, options = {}) ⇒ Object
33
34
35
36
37
38
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 33
def capture(money, authorization, options={})
post = {}
post[:payment_id] = authorization
add_invoice(post, money, options) if money
commit('capture', post, options)
end
|
#purchase(money, payment, options = {}) ⇒ Object
19
20
21
22
23
24
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 19
def purchase(money, payment, options={})
post = {}
add_auth_purchase_params(post, money, payment, 'purchase', options)
commit('purchase', post, options)
end
|
#refund(money, authorization, options = {}) ⇒ Object
40
41
42
43
44
45
46
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 40
def refund(money, authorization, options={})
post = {}
post[:payment_id] = authorization
post[:notification_url] = options[:notification_url]
add_invoice(post, money, options) if money
commit('refund', post, options)
end
|
#scrub(transcript) ⇒ Object
65
66
67
68
69
70
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 65
def scrub(transcript)
transcript.
gsub(%r((X-Trans-Key: )\w+), '\1[FILTERED]').
gsub(%r((\"number\\\":\\\")\d+), '\1[FILTERED]').
gsub(%r((\"cvv\\\":\\\")\d+), '\1[FILTERED]')
end
|
#supports_scrubbing? ⇒ Boolean
61
62
63
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 61
def supports_scrubbing?
true
end
|
#verify(credit_card, options = {}) ⇒ Object
54
55
56
57
58
59
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 54
def verify(credit_card, options={})
MultiResponse.run(:use_first_response) do |r|
r.process { authorize(100, credit_card, options) }
r.process(:ignore_result) { void(r.authorization, options) }
end
end
|
#void(authorization, options = {}) ⇒ Object
48
49
50
51
52
|
# File 'lib/active_merchant/billing/gateways/d_local.rb', line 48
def void(authorization, options={})
post = {}
post[:payment_id] = authorization
commit('void', post, options)
end
|