Class: ActiveMerchant::Billing::PaymentezGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::PaymentezGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/paymentez.rb
Overview
Constant Summary
collapse
- STANDARD_ERROR_CODE_MAPPING =
{
1 => :processing_error,
6 => :card_declined,
9 => :card_declined,
10 => :processing_error,
11 => :card_declined,
12 => :config_error,
13 => :config_error,
19 => :invalid_cvc,
20 => :config_error,
21 => :card_declined,
22 => :card_declined,
23 => :card_declined,
24 => :card_declined,
25 => :card_declined,
26 => :card_declined,
27 => :card_declined,
28 => :card_declined
}.freeze
- CARD_MAPPING =
{
'visa' => 'vi',
'master' => 'mc',
'american_express' => 'ax',
'diners_club' => 'di'
}.freeze
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 = {}) ⇒ PaymentezGateway
constructor
A new instance of PaymentezGateway.
-
#purchase(money, payment, options = {}) ⇒ Object
-
#refund(money, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#store(credit_card, options = {}) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#unstore(identification, options = {}) ⇒ Object
-
#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 PaymentezGateway.
44
45
46
47
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 44
def initialize(options = {})
requires!(options, :application_code, :app_key)
super
end
|
Instance Method Details
#authorize(money, payment, options = {}) ⇒ Object
60
61
62
63
64
65
66
67
68
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 60
def authorize(money, payment, options = {})
post = {}
add_invoice(post, money, options)
add_payment(post, payment)
add_customer_data(post, options)
commit_transaction('authorize', post)
end
|
#capture(money, authorization, _options = {}) ⇒ Object
70
71
72
73
74
75
76
77
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 70
def capture(money, authorization, _options = {})
post = {
transaction: { id: authorization }
}
post[:order] = {amount: amount(money).to_f} if money
commit_transaction('capture', post)
end
|
#purchase(money, payment, options = {}) ⇒ Object
49
50
51
52
53
54
55
56
57
58
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 49
def purchase(money, payment, options = {})
post = {}
add_invoice(post, money, options)
add_payment(post, payment)
add_customer_data(post, options)
action = payment.is_a?(String) ? 'debit' : 'debit_cc'
commit_transaction(action, post)
end
|
#refund(money, authorization, options = {}) ⇒ Object
79
80
81
82
83
84
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 79
def refund(money, authorization, options = {})
post = {transaction: {id: authorization}}
post[:order] = {amount: amount(money).to_f} if money
commit_transaction('refund', post)
end
|
#scrub(transcript) ⇒ Object
121
122
123
124
125
126
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 121
def scrub(transcript)
transcript
.gsub(%r{(\\?"number\\?":)(\\?"[^"]+\\?")}, '\1[FILTERED]')
.gsub(%r{(\\?"cvc\\?":)(\\?"[^"]+\\?")}, '\1[FILTERED]')
.gsub(%r{(Auth-Token: )([A-Za-z0-9=]+)}, '\1[FILTERED]')
end
|
#store(credit_card, options = {}) ⇒ Object
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 98
def store(credit_card, options = {})
post = {}
add_customer_data(post, options)
add_payment(post, credit_card)
response = commit_card('add', post)
if !response.success? && !(token = (response)).nil?
unstore(token, options)
response = commit_card('add', post)
end
response
end
|
#supports_scrubbing? ⇒ Boolean
117
118
119
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 117
def supports_scrubbing?
true
end
|
#unstore(identification, options = {}) ⇒ Object
112
113
114
115
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 112
def unstore(identification, options = {})
post = { card: { token: identification }, user: { id: options[:user_id] }}
commit_card('delete', post)
end
|
#verify(credit_card, options = {}) ⇒ Object
91
92
93
94
95
96
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 91
def verify(credit_card, options = {})
MultiResponse.run do |r|
r.process { authorize(100, credit_card, options) }
r.process { void(r.authorization, options) }
end
end
|
#void(authorization, _options = {}) ⇒ Object
86
87
88
89
|
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 86
def void(authorization, _options = {})
post = { transaction: { id: authorization } }
commit_transaction('refund', post)
end
|