Module: ActiveMerchant::Billing::Base
- Defined in:
- lib/active_merchant/billing/base.rb
Constant Summary collapse
- GATEWAY_MODE_DEPRECATION_MESSAGE =
'Base#gateway_mode is deprecated in favor of Base#mode and will be removed in a future version'
Class Method Summary collapse
-
.gateway(name) ⇒ Object
Return the matching gateway for the provider *
bogus
: BogusGateway - Does nothing (for testing) *moneris
: MonerisGateway *authorize_net
: AuthorizeNetGateway *trust_commerce
: TrustCommerceGateway. - .gateway_mode ⇒ Object
- .gateway_mode=(mode) ⇒ Object
-
.integration(name) ⇒ Object
Return the matching integration module You can then get the notification from the module *
bogus
: Bogus - Does nothing (for testing) *chronopay
: Chronopay *paypal
: Paypal. -
.test? ⇒ Boolean
A check to see if we’re in test mode.
Class Method Details
.gateway(name) ⇒ Object
Return the matching gateway for the provider
-
bogus
: BogusGateway - Does nothing (for testing) -
moneris
: MonerisGateway -
authorize_net
: AuthorizeNetGateway -
trust_commerce
: TrustCommerceGatewayActiveMerchant::Billing::Base.gateway(‘moneris’).new
30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/active_merchant/billing/base.rb', line 30 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 |
.gateway_mode ⇒ Object
16 17 18 19 |
# File 'lib/active_merchant/billing/base.rb', line 16 def self.gateway_mode ActiveMerchant.deprecated(GATEWAY_MODE_DEPRECATION_MESSAGE) @@mode end |
.gateway_mode=(mode) ⇒ Object
11 12 13 14 |
# File 'lib/active_merchant/billing/base.rb', line 11 def self.gateway_mode=(mode) ActiveMerchant.deprecated(GATEWAY_MODE_DEPRECATION_MESSAGE) @@mode = mode end |
.integration(name) ⇒ Object
Return the matching integration module You can then get the notification from the module
-
bogus
: Bogus - Does nothing (for testing) -
chronopay
: Chronopay -
paypal
: Paypalchronopay = ActiveMerchant::Billing::Base.integration(‘chronopay’) notification = chronopay.notification(raw_post)
51 52 53 |
# File 'lib/active_merchant/billing/base.rb', line 51 def self.integration(name) Billing::Integrations.const_get(name.to_s.downcase.camelize) end |
.test? ⇒ Boolean
A check to see if we’re in test mode
56 57 58 |
# File 'lib/active_merchant/billing/base.rb', line 56 def self.test? mode == :test end |