Class: ActiveMerchant::Billing::MerchantOneGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::MerchantOneGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/merchant_one.rb
Defined Under Namespace
Classes: MerchantOneSslConnection
Constant Summary
collapse
- BASE_URL =
'https://secure.merchantonegateway.com/api/transact.php'
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
Methods inherited from Gateway
#card_brand, card_brand, #generate_unique_id, inherited, non_fractional_currency?, #scrub, supported_countries, #supported_countries, supported_countries=, supports?, #supports_scrubbing?, #test?
#expdate, #format
Constructor Details
22
23
24
25
|
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 22
def initialize(options = {})
requires!(options, :username, :password)
super
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
27
28
29
30
31
32
33
34
35
|
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 27
def authorize(money, creditcard, options = {})
post = {}
add_customer_data(post, options)
add_creditcard(post, creditcard)
add_address(post, creditcard, options)
add_customer_data(post, options)
add_amount(post, money, options)
commit('auth', money, post)
end
|
#capture(money, authorization, options = {}) ⇒ Object
47
48
49
50
51
52
|
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 47
def capture(money, authorization, options = {})
post = {}
post.merge!(:transactionid => authorization)
add_amount(post, money, options)
commit('capture', money, post)
end
|
#new_connection(endpoint) ⇒ Object
54
55
56
|
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 54
def new_connection(endpoint)
MerchantOneSslConnection.new(endpoint)
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
37
38
39
40
41
42
43
44
45
|
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 37
def purchase(money, creditcard, options = {})
post = {}
add_customer_data(post, options)
add_creditcard(post, creditcard)
add_address(post, creditcard, options)
add_customer_data(post, options)
add_amount(post, money, options)
commit('sale', money, post)
end
|