Sha256: 75596a384b556f74031fdbd1fd75d27f5c0a4bedbb298e49691b35ce01f71a36
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
require 'workarea' require 'workarea/storefront' require 'workarea/admin' require 'workarea/usaepay/engine' require 'workarea/usaepay/version' require 'usaepay/gateway' module Workarea module Usaepay # Credentials for PayFlowPro from Rails secrets. # # @return [Hash] def self.credentials return {} unless Rails.application.secrets.usaepay_transaction_gateway.present? Rails.application.secrets.usaepay_transaction_gateway.symbolize_keys end # Conditionally use the real gateway when secrets are present. # Otherwise, use the bogus gateway. # # @return [ActiveMerchant::Billing::Gateway] def self.gateway Workarea.config.gateways.credit_card end def self.gateway=(gateway) Workarea.config.gateways.credit_card = gateway end def self.auto_initialize_gateway if credentials.present? # if ENV['HTTP_PROXY'].present? # uri = URI.parse(ENV['HTTP_PROXY']) # Workarea::UsaEpay::Gateway.proxy_address = uri.host # Workarea::UsaEpay::Gateway.proxy_port = uri.port # end self.gateway = ActiveMerchant::Billing::UsaEpayCustom.new credentials else self.gateway = ActiveMerchant::Billing::BogusCreditCardGateway.new end end end end
Version data entries
4 entries across 4 versions & 1 rubygems