Sha256: cb8dae7ff934e9da6bd37f61515730bd28473f8f133a63bf51f506672666fe6b

Contents?: true

Size: 1.68 KB

Versions: 21

Compression:

Stored size: 1.68 KB

Contents

require 'active_merchant/billing/gateways/beanstream/beanstream_core'

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class BeanstreamInteracResponse < Response
      def redirect
        params['pageContents']
      end
    end

    class BeanstreamInteracGateway < Gateway
      include BeanstreamCore

      # Confirm a transaction posted back from the bank to Beanstream.
      # Confirming a transaction does not require any credentials,
      # and in an application with many merchants sharing a funded
      # URL the application may not yet know which merchant the
      # post back is for until the response of the confirmation is
      # received, which contains the order number.
      def self.confirm(transaction)
        gateway = new(:login => '')
        gateway.confirm(transaction)
      end

      def purchase(money, options = {})
        post = {}
        add_amount(post, money)
        add_invoice(post, options)
        add_address(post, options)
        add_interac_details(post, options)
        add_transaction_type(post, :purchase)
        commit(post)
      end

      def success?(response)
        response[:responseType] == 'R' || response[:trnApproved] == '1' || response[:responseCode] == '1'
      end

      # Confirm a transaction posted back from the bank to Beanstream.
      def confirm(transaction)
        post(transaction)
      end

      private

      def add_interac_details(post, options)
        address = options[:billing_address] || options[:address] || {}
        post[:trnCardOwner] = address[:name]
        post[:paymentMethod] = 'IO'
      end

      def build_response(*args)
        BeanstreamInteracResponse.new(*args)
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
activemerchant-1.105.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.104.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.103.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.102.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.101.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.100.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.99.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.98.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
active_accountability_merchant-1.97.1 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.97.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.96.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.95.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.94.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.93.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.92.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.91.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.90.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.89.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.88.0 lib/active_merchant/billing/gateways/beanstream_interac.rb
activemerchant-1.87.0 lib/active_merchant/billing/gateways/beanstream_interac.rb