Class: ActiveMerchant::Billing::IdealBaseGateway

Inherits:
Gateway
  • Object
show all
Defined in:
lib/active_merchant/billing/gateways/ideal/ideal_base.rb

Overview

Implementation contains some simplifications

  • does not support multiple subID per merchant

  • language is fixed to ‘nl’

Direct Known Subclasses

IdealRabobankGateway

Constant Summary collapse

AUTHENTICATION_TYPE =

These constants will never change for most users

'SHA1_RSA'
LANGUAGE =
'nl'
SUB_ID =
'0'
API_VERSION =
'1.1.0'

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?

Methods included from CreditCardFormatting

#format

Constructor Details

#initialize(options = {}) ⇒ IdealBaseGateway

Returns a new instance of IdealBaseGateway.



22
23
24
25
26
27
# File 'lib/active_merchant/billing/gateways/ideal/ideal_base.rb', line 22

def initialize(options = {})
  requires!(options, :login, :password, :pem)

  options[:pem_password] = options[:password]
  super
end

Instance Method Details

#capture(transaction, options = {}) ⇒ Object

Check status of transaction and confirm payment transaction_id must be a valid transaction_id from a prior setup.



38
39
40
41
# File 'lib/active_merchant/billing/gateways/ideal/ideal_base.rb', line 38

def capture(transaction, options = {})
  options[:transaction_id] = transaction
  commit(build_status_request(options))
end

#issuersObject

Get list of issuers from response.issuer_list



44
45
46
# File 'lib/active_merchant/billing/gateways/ideal/ideal_base.rb', line 44

def issuers
  commit(build_directory_request)
end

#setup_purchase(money, options = {}) ⇒ Object

Setup transaction. Get redirect_url from response.service_url



30
31
32
33
34
# File 'lib/active_merchant/billing/gateways/ideal/ideal_base.rb', line 30

def setup_purchase(money, options = {})
  requires!(options, :issuer_id, :return_url, :order_id, :currency, :description, :entrance_code)

  commit(build_transaction_request(money, options))
end