Class: ActiveMerchant::Billing::DibsGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::DibsGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/dibs.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(amount, payment_method, options = {}) ⇒ Object
-
#capture(amount, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ DibsGateway
constructor
A new instance of DibsGateway.
-
#purchase(amount, payment_method, options = {}) ⇒ Object
-
#refund(amount, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#store(payment_method, options = {}) ⇒ 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 = {}) ⇒ DibsGateway
Returns a new instance of DibsGateway.
14
15
16
17
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 14
def initialize(options = {})
requires!(options, :merchant_id, :secret_key)
super
end
|
Instance Method Details
#authorize(amount, payment_method, options = {}) ⇒ Object
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 26
def authorize(amount, payment_method, options = {})
post = {}
add_amount(post, amount)
add_invoice(post, amount, options)
if payment_method.respond_to?(:number)
add_payment_method(post, payment_method, options)
commit(:authorize, post)
else
add_ticket_id(post, payment_method)
commit(:authorize_ticket, post)
end
end
|
#capture(amount, authorization, options = {}) ⇒ Object
39
40
41
42
43
44
45
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 39
def capture(amount, authorization, options = {})
post = {}
add_amount(post, amount)
add_reference(post, authorization)
commit(:capture, post)
end
|
#purchase(amount, payment_method, options = {}) ⇒ Object
19
20
21
22
23
24
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 19
def purchase(amount, payment_method, options = {})
MultiResponse.run(false) do |r|
r.process { authorize(amount, payment_method, options) }
r.process { capture(amount, r.authorization, options) }
end
end
|
#refund(amount, authorization, options = {}) ⇒ Object
54
55
56
57
58
59
60
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 54
def refund(amount, authorization, options = {})
post = {}
add_amount(post, amount)
add_reference(post, authorization)
commit(:refund, post)
end
|
#scrub(transcript) ⇒ Object
82
83
84
85
86
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 82
def scrub(transcript)
transcript.
gsub(%r(("cardNumber\\?":\\?")[^"]*)i, '\1[FILTERED]').
gsub(%r(("cvc\\?":\\?")[^"]*)i, '\1[FILTERED]')
end
|
#store(payment_method, options = {}) ⇒ Object
69
70
71
72
73
74
75
76
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 69
def store(payment_method, options = {})
post = {}
add_invoice(post, 0, options)
add_payment_method(post, payment_method, options)
commit(:store, post)
end
|
#supports_scrubbing? ⇒ Boolean
78
79
80
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 78
def supports_scrubbing?
true
end
|
#verify(credit_card, options = {}) ⇒ Object
62
63
64
65
66
67
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 62
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
47
48
49
50
51
52
|
# File 'lib/active_merchant/billing/gateways/dibs.rb', line 47
def void(authorization, options = {})
post = {}
add_reference(post, authorization)
commit(:void, post)
end
|