Class: Spree::Gateway
Direct Known Subclasses
Bogus
Defined Under Namespace
Classes: Bogus, BogusSimple
Constant Summary
PaymentMethod::DISPLAY
Class Method Summary
collapse
-
.current ⇒ Object
instantiates the selected gateway and configures with the options stored in the database.
Instance Method Summary
collapse
active?, available, #destroy, find_with_destroyed, #provider_class, providers, #source_required?
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args) ⇒ Object
36
37
38
39
40
41
42
|
# File 'app/models/spree/gateway.rb', line 36
def method_missing(method, *args)
if @provider.nil? || !@provider.respond_to?(method)
super
else
provider.send(method)
end
end
|
Class Method Details
.current ⇒ Object
instantiates the selected gateway and configures with the options stored in the database
17
18
19
|
# File 'app/models/spree/gateway.rb', line 17
def self.current
super
end
|
Instance Method Details
#method_type ⇒ Object
48
49
50
|
# File 'app/models/spree/gateway.rb', line 48
def method_type
'gateway'
end
|
#options ⇒ Object
28
29
30
31
32
33
34
|
# File 'app/models/spree/gateway.rb', line 28
def options
options_hash = {}
self.preferences.each do |key, value|
options_hash[key.to_sym] = value
end
options_hash
end
|
#payment_profiles_supported? ⇒ Boolean
44
45
46
|
# File 'app/models/spree/gateway.rb', line 44
def payment_profiles_supported?
false
end
|
#payment_source_class ⇒ Object
12
13
14
|
# File 'app/models/spree/gateway.rb', line 12
def payment_source_class
CreditCard
end
|
#provider ⇒ Object
21
22
23
24
25
26
|
# File 'app/models/spree/gateway.rb', line 21
def provider
gateway_options = options
gateway_options.delete :login if gateway_options.has_key?(:login) and gateway_options[:login].nil?
ActiveMerchant::Billing::Base.gateway_mode = gateway_options[:server].to_sym
@provider ||= provider_class.new(gateway_options)
end
|