Class: ActiveMerchant::Billing::MerchantOneGateway

Inherits:
Gateway
  • Object
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

Instance Attribute Summary

Attributes inherited from Gateway

#options

Instance Method Summary collapse

Methods inherited from Gateway

#card_brand, card_brand, #generate_unique_id, inherited, supported_countries, #supported_countries, supported_countries=, supports?, #test?

Methods included from CreditCardFormatting

#expdate, #format

Constructor Details

#initialize(options = {}) ⇒ MerchantOneGateway

Returns a new instance of MerchantOneGateway.



23
24
25
26
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 23

def initialize(options = {})
  requires!(options, :username, :password)
  super
end

Instance Method Details

#authorize(money, creditcard, options = {}) ⇒ Object



28
29
30
31
32
33
34
35
36
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 28

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



48
49
50
51
52
53
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 48

def capture(money, authorization, options = {})
  post = {}
  post.merge!(:transactionid => authorization)
  add_amount(post, money, options)
  commit('capture', money, post)
end

#new_connection(endpoint) ⇒ Object



55
56
57
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 55

def new_connection(endpoint)
  MerchantOneSslConnection.new(endpoint)
end

#purchase(money, creditcard, options = {}) ⇒ Object



38
39
40
41
42
43
44
45
46
# File 'lib/active_merchant/billing/gateways/merchant_one.rb', line 38

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