Class: ActiveMerchant::Billing::Be2billGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::Be2billGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/be2bill.rb
Constant Summary
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
#format
Constructor Details
These options are mandatory on be2bill (cf. tests) :
options = { :order_id => order.id,
:customer_id => user.id,
:description => "Some description",
:referrer => request.env,
:user_agent => request.env,
:ip => request.remote_ip,
:email => user.email }
26
27
28
29
|
# File 'lib/active_merchant/billing/gateways/be2bill.rb', line 26
def initialize(options = {})
requires!(options, :login, :password)
super
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
31
32
33
34
35
36
37
38
|
# File 'lib/active_merchant/billing/gateways/be2bill.rb', line 31
def authorize(money, creditcard, options = {})
post = {}
add_invoice(post, options)
add_creditcard(post, creditcard)
add_customer_data(post, options)
commit('authorization', money, post)
end
|
#capture(money, authorization, options = {}) ⇒ Object
49
50
51
52
53
54
55
|
# File 'lib/active_merchant/billing/gateways/be2bill.rb', line 49
def capture(money, authorization, options = {})
post = {}
add_invoice(post, options)
post[:TRANSACTIONID] = authorization
commit('capture', money, post)
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
40
41
42
43
44
45
46
47
|
# File 'lib/active_merchant/billing/gateways/be2bill.rb', line 40
def purchase(money, creditcard, options = {})
post = {}
add_invoice(post, options)
add_creditcard(post, creditcard)
add_customer_data(post, options)
commit('payment', money, post)
end
|