Class: ActiveMerchant::Billing::InstapayGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::InstapayGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/instapay.rb
Constant Summary
collapse
- GATEWAY_URL =
'https://trans.instapaygateway.com/cgi-bin/process.cgi'
- SUCCESS =
"Accepted"
- SUCCESS_MESSAGE =
"The transaction has been approved"
Constants inherited
from Gateway
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?
Methods included from Utils
generate_unique_id
#format
#requires!
Methods included from PostsData
included, #ssl_get, #ssl_post
Constructor Details
Returns a new instance of InstapayGateway.
22
23
24
25
26
|
# File 'lib/active_merchant/billing/gateways/instapay.rb', line 22
def initialize(options = {})
requires!(options, :login)
@options = options
super
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/active_merchant/billing/gateways/instapay.rb', line 28
def authorize(money, creditcard, options = {})
post = {}
post[:authonly] = 1
add_amount(post, money)
add_invoice(post, options)
add_creditcard(post, creditcard)
add_address(post, options)
add_customer_data(post, options)
commit('ns_quicksale_cc', post)
end
|
#capture(money, authorization, options = {}) ⇒ Object
51
52
53
54
55
56
|
# File 'lib/active_merchant/billing/gateways/instapay.rb', line 51
def capture(money, authorization, options = {})
post = {}
add_amount(post, money)
add_reference(post, authorization)
commit('ns_quicksale_cc', post)
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/active_merchant/billing/gateways/instapay.rb', line 40
def purchase(money, creditcard, options = {})
post = {}
add_amount(post, money)
add_invoice(post, options)
add_creditcard(post, creditcard)
add_address(post, options)
add_customer_data(post, options)
commit('ns_quicksale_cc', post)
end
|