Class: ActiveMerchant::Billing::TransactProGateway
- Defined in:
- lib/active_merchant/billing/gateways/transact_pro.rb
Overview
For more information visit Transact Pro Services
This gateway was formerly associated with www.1stpayments.net
Written by Piers Chambers (Varyonic.com)
Constant Summary
Constants inherited from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
- #authorize(amount, payment, options = {}) ⇒ Object
- #capture(amount, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ TransactProGateway
constructor
A new instance of TransactProGateway.
- #purchase(amount, payment, options = {}) ⇒ Object
- #refund(amount, authorization, options = {}) ⇒ Object
- #verify(credit_card, options = {}) ⇒ Object
- #void(authorization, options = {}) ⇒ Object
Methods inherited from Gateway
#add_field_to_post_if_present, #add_fields_to_post_if_present, #card_brand, card_brand, #generate_unique_id, inherited, #scrub, #supported_countries, supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #supports_scrubbing?, #test?
Methods included from CreditCardFormatting
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
#initialize(options = {}) ⇒ TransactProGateway
Returns a new instance of TransactProGateway.
20 21 22 23 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 20 def initialize(={}) requires!(, :guid, :password, :terminal) super end |
Instance Method Details
#authorize(amount, payment, options = {}) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 47 def (amount, payment, ={}) post = PostData.new add_invoice(post, amount, ) add_payment(post, payment) add_address(post, payment, ) add_customer_data(post, ) add_credentials(post) post[:rs] = @options[:terminal] MultiResponse.run do |r| r.process { commit('init_dms', post) } r.process do post = PostData.new post[:init_transaction_id] = r. add_payment_cc(post, payment) post[:f_extended] = '4' commit('make_hold', post, amount) end end end |
#capture(amount, authorization, options = {}) ⇒ Object
69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 69 def capture(amount, , ={}) identifier, original_amount = () if amount && (amount != original_amount) raise ArgumentError.new("Partial capture is not supported, and #{amount.inspect} != #{original_amount.inspect}") end post = PostData.new add_credentials(post) post[:init_transaction_id] = identifier post[:f_extended] = '4' commit('charge_hold', post, original_amount) end |
#purchase(amount, payment, options = {}) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 25 def purchase(amount, payment, ={}) post = PostData.new add_invoice(post, amount, ) add_payment(post, payment) add_address(post, payment, ) add_customer_data(post, ) add_credentials(post) post[:rs] = @options[:terminal] MultiResponse.run do |r| r.process { commit('init', post) } r.process do post = PostData.new post[:init_transaction_id] = r. add_payment_cc(post, payment) post[:f_extended] = '4' commit('charge', post, amount) end end end |
#refund(amount, authorization, options = {}) ⇒ Object
83 84 85 86 87 88 89 90 91 92 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 83 def refund(amount, , ={}) identifier, original_amount = () post = PostData.new add_credentials(post, :account_guid) post[:init_transaction_id] = identifier post[:amount_to_refund] = amount(amount || original_amount) commit('refund', post) end |
#verify(credit_card, options = {}) ⇒ Object
104 105 106 107 108 109 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 104 def verify(credit_card, ={}) MultiResponse.run(:use_first_response) do |r| r.process { (100, credit_card, ) } r.process(:ignore_result) { void(r., ) } end end |
#void(authorization, options = {}) ⇒ Object
94 95 96 97 98 99 100 101 102 |
# File 'lib/active_merchant/billing/gateways/transact_pro.rb', line 94 def void(, ={}) identifier, amount = () post = PostData.new add_credentials(post, :account_guid) post[:init_transaction_id] = identifier post[:amount_to_refund] = amount(amount) commit('cancel_dms', post) end |