Class: ActiveMerchant::Billing::GarantiGateway
- 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
Instance Method Summary collapse
- #authorize(money, credit_card, options = {}) ⇒ Object
- #capture(money, ref_id, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ GarantiGateway
constructor
A new instance of GarantiGateway.
- #purchase(money, credit_card, options = {}) ⇒ Object
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
Methods included from Utils
#deprecated, generate_unique_id
Methods included from CreditCardFormatting
Methods included from RequiresParameters
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
#initialize(options = {}) ⇒ GarantiGateway
Returns a new instance of GarantiGateway.
37 38 39 40 41 |
# File 'lib/active_merchant/billing/gateways/garanti.rb', line 37 def initialize( = {}) requires!(, :login, :password, :terminal_id, :merchant_id) @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 (money, credit_card, = {}) = .merge(:gvp_order_type => "preauth") commit(money, (money, credit_card, )) 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, = {}) = .merge(:gvp_order_type => "postauth") commit(money, build_capture_request(money, ref_id, )) 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, = {}) = .merge(:gvp_order_type => "sales") commit(money, build_sale_request(money, credit_card, )) end |