Class: ActiveMerchant::Billing::MicropaymentGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::MicropaymentGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/micropayment.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(amount, payment_method, options = {}) ⇒ Object
-
#capture(amount, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ MicropaymentGateway
constructor
A new instance of MicropaymentGateway.
-
#purchase(amount, payment_method, options = {}) ⇒ Object
-
#refund(amount, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#verify(credit_card, options = {}) ⇒ Object
-
#void(authorization, 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 MicropaymentGateway.
16
17
18
19
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 16
def initialize(options={})
requires!(options, :access_key)
super
end
|
Instance Method Details
#authorize(amount, payment_method, options = {}) ⇒ Object
30
31
32
33
34
35
36
37
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 30
def authorize(amount, payment_method, options={})
post = {}
add_invoice(post, amount, options)
add_payment_method(post, payment_method, options)
add_customer_data(post, options)
add_address(post, options)
commit('authorize', post)
end
|
#capture(amount, authorization, options = {}) ⇒ Object
39
40
41
42
43
44
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 39
def capture(amount, authorization, options={})
post = {}
add_reference(post, authorization)
add_invoice(post, amount, options)
commit('capture', post)
end
|
#purchase(amount, payment_method, options = {}) ⇒ Object
21
22
23
24
25
26
27
28
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 21
def purchase(amount, payment_method, options={})
post = {}
add_invoice(post, amount, options)
add_payment_method(post, payment_method, options)
add_customer_data(post, options)
add_address(post, options)
commit('purchase', post)
end
|
#refund(amount, authorization, options = {}) ⇒ Object
52
53
54
55
56
57
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 52
def refund(amount, authorization, options={})
post = {}
add_reference(post, authorization)
add_invoice(post, amount, options)
commit('refund', post)
end
|
#scrub(transcript) ⇒ Object
71
72
73
74
75
76
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 71
def scrub(transcript)
transcript.
gsub(%r((accessKey=)\w+), '\1[FILTERED]').
gsub(%r((number=)\d+), '\1[FILTERED]').
gsub(%r((cvc2=)\d+), '\1[FILTERED]')
end
|
#supports_scrubbing? ⇒ Boolean
67
68
69
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 67
def supports_scrubbing?
true
end
|
#verify(credit_card, options = {}) ⇒ Object
59
60
61
62
63
64
65
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 59
def verify(credit_card, options={})
MultiResponse.run(:use_first_response) do |r|
r.process { authorize(250, credit_card, options) }
r.process(:ignore_result) { void(r.authorization, options) }
end
end
|
#void(authorization, options = {}) ⇒ Object
46
47
48
49
50
|
# File 'lib/active_merchant/billing/gateways/micropayment.rb', line 46
def void(authorization, options={})
post = {}
add_reference(post, authorization)
commit('void', post)
end
|