Class: ActiveMerchant::Billing::BeanstreamGateway
- Includes:
- BeanstreamCore
- Defined in:
- lib/active_merchant/billing/gateways/beanstream.rb
Overview
This class implements the Canadian Beanstream payment gateway. It is also named TD Canada Trust Online Mart payment gateway. To learn more about the specification of Beanstream gateway, please read the OM_Direct_Interface_API.pdf, which you can get from your Beanstream account or get from me by email.
Supported transaction types by Beanstream:
-
P
- Purchase -
PA
- Pre Authorization -
PAC
- Pre Authorization Completion
Notes
-
Recurring billing is not yet implemented.
-
Adding of order products information is not implemented.
-
Ensure that country and province data is provided as a code such as “CA”, “US”, “QC”.
-
login is the Beanstream merchant ID, username and password should be enabled in your Beanstream account and passed in using the
:user
and:password
options. -
Test your app with your true merchant id and test credit card information provided in the api pdf document.
Example authorization (Beanstream PA transaction type):
twenty = 2000
gateway = BeanstreamGateway.new(
:login => '100200000',
:user => 'xiaobozz',
:password => 'password'
)
credit_card = CreditCard.new(
:number => '4030000010001234',
:month => 8,
:year => 2011,
:first_name => 'xiaobo',
:last_name => 'zzz',
:verification_value => 137
)
response = gateway.authorize(twenty, credit_card,
:order_id => '1234',
:billing_address => {
:name => 'xiaobo zzz',
:phone => '555-555-5555',
:address1 => '1234 Levesque St.',
:address2 => 'Apt B',
:city => 'Montreal',
:state => 'QC',
:country => 'CA',
:zip => 'H2C1X8'
},
:email => '[email protected]',
:subtotal => 800,
:shipping => 100,
:tax1 => 100,
:tax2 => 100,
:custom => 'reference one'
)
Constant Summary
Constants included from BeanstreamCore
ActiveMerchant::Billing::BeanstreamCore::AVS_CODES, ActiveMerchant::Billing::BeanstreamCore::CVD_CODES, ActiveMerchant::Billing::BeanstreamCore::TRANSACTIONS, ActiveMerchant::Billing::BeanstreamCore::URL
Constants inherited from Gateway
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
- #authorize(money, credit_card, options = {}) ⇒ Object
- #interac ⇒ Object
- #purchase(money, source, options = {}) ⇒ Object
- #void(authorization, options = {}) ⇒ Object
Methods included from BeanstreamCore
#capture, #credit, included, #initialize
Methods inherited from Gateway
#card_brand, card_brand, inherited, #initialize, supports?, #test?
Methods included from Utils
Methods included from CreditCardFormatting
Methods included from RequiresParameters
Methods included from PostsData
Instance Method Details
#authorize(money, credit_card, options = {}) ⇒ Object
61 62 63 64 65 66 67 68 69 |
# File 'lib/active_merchant/billing/gateways/beanstream.rb', line 61 def (money, credit_card, = {}) post = {} add_amount(post, money) add_invoice(post, ) add_credit_card(post, credit_card) add_address(post, ) add_transaction_type(post, :authorization) commit(post) end |
#interac ⇒ Object
91 92 93 |
# File 'lib/active_merchant/billing/gateways/beanstream.rb', line 91 def interac @interac ||= BeanstreamInteracGateway.new(@options) end |
#purchase(money, source, options = {}) ⇒ Object
71 72 73 74 75 76 77 78 79 |
# File 'lib/active_merchant/billing/gateways/beanstream.rb', line 71 def purchase(money, source, = {}) post = {} add_amount(post, money) add_invoice(post, ) add_source(post, source) add_address(post, ) add_transaction_type(post, purchase_action(source)) commit(post) end |
#void(authorization, options = {}) ⇒ Object
81 82 83 84 85 86 87 88 89 |
# File 'lib/active_merchant/billing/gateways/beanstream.rb', line 81 def void(, = {}) reference, amount, type = split_auth() post = {} add_reference(post, reference) add_original_amount(post, amount) add_transaction_type(post, void_action(type)) commit(post) end |