Sha256: a6f13a393ac142fa324dbbb8554537365dac810f17ec68f868ffbbfda4b6f7ba

Contents?: true

Size: 1.96 KB

Versions: 10

Compression:

Stored size: 1.96 KB

Contents

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    module Base
      # Set ActiveMerchant gateways in test mode.
      #
      #   ActiveMerchant::Billing::Base.gateway_mode = :test
      mattr_accessor :gateway_mode

      # Set ActiveMerchant integrations in test mode.
      #
      #   ActiveMerchant::Billing::Base.integration_mode = :test
      mattr_accessor :integration_mode

      # Set both the mode of both the gateways and integrations
      # at once
      mattr_reader :mode

      def self.mode=(mode)
        @@mode = mode
        self.gateway_mode = mode
        self.integration_mode = mode
      end

      self.mode = :production

      # Return the matching gateway for the provider
      # * <tt>bogus</tt>: BogusGateway - Does nothing (for testing)
      # * <tt>moneris</tt>: MonerisGateway
      # * <tt>authorize_net</tt>: AuthorizeNetGateway
      # * <tt>trust_commerce</tt>: TrustCommerceGateway
      #
      #   ActiveMerchant::Billing::Base.gateway('moneris').new
      def self.gateway(name)
        name_str = name.to_s.strip.downcase

        raise(ArgumentError, 'A gateway provider must be specified') if name_str.blank?

        begin
          Billing.const_get("#{name_str}_gateway".camelize)
        rescue
          raise ArgumentError, "The specified gateway is not valid (#{name_str})"
        end
      end

      # Return the matching integration module
      # You can then get the notification from the module
      # * <tt>bogus</tt>: Bogus - Does nothing (for testing)
      # * <tt>chronopay</tt>: Chronopay
      # * <tt>paypal</tt>: Paypal
      #
      #   chronopay = ActiveMerchant::Billing::Base.integration('chronopay')
      #   notification = chronopay.notification(raw_post)
      #
      def self.integration(name)
        Billing::Integrations.const_get("#{name.to_s.downcase}".camelize)
      end

      # A check to see if we're in test mode
      def self.test?
        self.gateway_mode == :test
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
activemerchant-1.43.3 lib/active_merchant/billing/base.rb
activemerchant-1.43.1 lib/active_merchant/billing/base.rb
activemerchant-1.43.0 lib/active_merchant/billing/base.rb
activemerchant-1.42.9 lib/active_merchant/billing/base.rb
activemerchant-1.42.8 lib/active_merchant/billing/base.rb
activemerchant-1.42.7 lib/active_merchant/billing/base.rb
activemerchant-1.42.6 lib/active_merchant/billing/base.rb
activemerchant-1.42.5 lib/active_merchant/billing/base.rb
activemerchant-1.42.4 lib/active_merchant/billing/base.rb
activemerchant-1.42.3 lib/active_merchant/billing/base.rb