Class: ActiveMerchant::Billing::Integrations::Helper
- Inherits:
-
Object
- Object
- ActiveMerchant::Billing::Integrations::Helper
show all
- Defined in:
- lib/active_merchant/billing/integrations/helper.rb
Overview
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(order, account, options = {}) ⇒ Helper
Returns a new instance of Helper.
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 16
def initialize(order, account, options = {})
options.assert_valid_keys([:amount, :currency, :test, :credential2, :credential3, :credential4])
@fields = {}
self.order = order
self.account = account
self.amount = options[:amount]
self.currency = options[:currency]
self.credential2 = options[:credential2]
self.credential3 = options[:credential3]
self.credential4 = options[:credential4]
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_id, *args) ⇒ Object
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 74
def method_missing(method_id, *args)
method_id = method_id.to_s.gsub(/=$/, '').to_sym
return if mappings[method_id].nil?
mapping = mappings[method_id]
case mapping
when Array
mapping.each{ |field| add_field(field, args.last) }
when Hash
options = args.last.is_a?(Hash) ? args.pop : {}
mapping.each{ |key, field| add_field(field, options[key]) }
else
add_field(mapping, args.last)
end
end
|
Instance Attribute Details
#fields ⇒ Object
Returns the value of attribute fields.
5
6
7
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 5
def fields
@fields
end
|
Class Method Details
.mapping(attribute, options = {}) ⇒ Object
28
29
30
31
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 28
def self.mapping(attribute, options = {})
self.mappings ||= {}
self.mappings[attribute] = options
end
|
Instance Method Details
#add_field(name, value) ⇒ Object
33
34
35
36
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 33
def add_field(name, value)
return if name.blank? || value.blank?
@fields[name.to_s] = value.to_s
end
|
#add_fields(subkey, params = {}) ⇒ Object
38
39
40
41
42
43
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 38
def add_fields(subkey, params = {})
params.each do |k, v|
field = mappings[subkey][k]
add_field(field, v) unless field.blank?
end
end
|
#billing_address(params = {}) ⇒ Object
45
46
47
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 45
def billing_address(params = {})
add_address(:billing_address, params)
end
|
53
54
55
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 53
def form_fields
@fields
end
|
#shipping_address(params = {}) ⇒ Object
49
50
51
|
# File 'lib/active_merchant/billing/integrations/helper.rb', line 49
def shipping_address(params = {})
add_address(:shipping_address, params)
end
|