Class: BillingIntegration

Inherits:
PaymentMethod show all
Defined in:
app/models/billing_integration.rb

Constant Summary

Constants inherited from PaymentMethod

PaymentMethod::DISPLAY

Instance Method Summary collapse

Methods inherited from PaymentMethod

active?, available, current, #destroy, find_with_destroyed, #method_type, #payment_profiles_supported?, #payment_source_class, #provider_class, providers, register

Instance Method Details

#optionsObject



16
17
18
19
20
21
22
# File 'app/models/billing_integration.rb', line 16

def options
  options_hash = {}
  self.preferences.each do |key,value|
    options_hash[key.to_sym] = value
  end
  options_hash
end

#providerObject



8
9
10
11
12
13
14
# File 'app/models/billing_integration.rb', line 8

def provider
  integration_options = options
  ActiveMerchant::Billing::Base.integration_mode = integration_options[:server]
  integration_options = options
  integration_options[:test] = true if integration_options[:test_mode]
  @provider ||= provider_class.new(integration_options)
end