Class: ActiveMerchant::Billing::GarantiGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::GarantiGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/garanti.rb
Constant Summary
collapse
- URL =
'https://sanalposprov.garanti.com.tr/VPServlet'
- CURRENCY_CODES =
{
'YTL' => 949,
'TRL' => 949,
'TL' => 949,
'USD' => 840,
'EUR' => 978,
'GBP' => 826,
'JPY' => 392
}
Constants inherited
from Gateway
ActiveMerchant::Billing::Gateway::CREDIT_DEPRECATION_MESSAGE, ActiveMerchant::Billing::Gateway::CURRENCIES_WITHOUT_FRACTIONS, ActiveMerchant::Billing::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
37
38
39
40
41
|
# File 'lib/active_merchant/billing/gateways/garanti.rb', line 37
def initialize(options = {})
requires!(options, :login, :password, :terminal_id, :merchant_id)
@options = options
super
end
|
Instance Method Details
#authorize(money, credit_card, options = {}) ⇒ Object
48
49
50
51
|
# File 'lib/active_merchant/billing/gateways/garanti.rb', line 48
def authorize(money, credit_card, options = {})
options = options.merge(:gvp_order_type => "preauth")
commit(money, build_authorize_request(money, credit_card, options))
end
|
#capture(money, ref_id, options = {}) ⇒ Object
53
54
55
56
|
# File 'lib/active_merchant/billing/gateways/garanti.rb', line 53
def capture(money, ref_id, options = {})
options = options.merge(:gvp_order_type => "postauth")
commit(money, build_capture_request(money, ref_id, options))
end
|
#purchase(money, credit_card, options = {}) ⇒ Object
43
44
45
46
|
# File 'lib/active_merchant/billing/gateways/garanti.rb', line 43
def purchase(money, credit_card, options = {})
options = options.merge(:gvp_order_type => "sales")
commit(money, build_sale_request(money, credit_card, options))
end
|