Class: OffsitePayments::Helper

Inherits:
Object
  • Object
show all
Defined in:
lib/offsite_payments/helper.rb

Overview

:nodoc:

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.



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/offsite_payments/helper.rb', line 18

def initialize(order, , options = {})
  options.assert_valid_keys([:amount, :currency, :test, :credential2, :credential3, :credential4, :country, :account_name, :description, :transaction_type, :authcode, :notify_url, :return_url, :redirect_param, :forward_url])
  @fields             = {}
  @raw_html_fields    = []
  @test               = options[:test]
  self.order          = order
  self.        = 
  self.amount         = options[:amount]
  self.currency       = options[:currency]
  self.credential2    = options[:credential2]
  self.credential3    = options[:credential3]
  self.credential4    = options[:credential4]
  self.notify_url     = options[:notify_url]
  self.return_url     = options[:return_url]
  self.redirect_param = options[:redirect_param]
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_id, *args) ⇒ Object (private)



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/offsite_payments/helper.rb', line 99

def method_missing(method_id, *args)
  method_id = method_id.to_s.gsub(/=$/, '').to_sym
  # Return and do nothing if the mapping was not found. This allows
  # for easy substitution of the different integrations
  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

#fieldsObject (readonly)

Returns the value of attribute fields.



3
4
5
# File 'lib/offsite_payments/helper.rb', line 3

def fields
  @fields
end

Class Method Details

.inherited(subclass) ⇒ Object



14
15
16
# File 'lib/offsite_payments/helper.rb', line 14

def self.inherited(subclass)
  subclass.mappings ||= {}
end

.mapping(attribute, options = {}) ⇒ Object



35
36
37
# File 'lib/offsite_payments/helper.rb', line 35

def self.mapping(attribute, options = {})
  self.mappings[attribute] = options
end

Instance Method Details

#add_field(name, value) ⇒ Object



39
40
41
42
# File 'lib/offsite_payments/helper.rb', line 39

def add_field(name, value)
  return if name.blank? || value.blank?
  @fields[name.to_s] = value.to_s
end

#add_fields(subkey, params = {}) ⇒ Object



44
45
46
47
48
49
# File 'lib/offsite_payments/helper.rb', line 44

def add_fields(subkey, params = {})
  params.each do |k, v|
    field = mappings[subkey][k]
    add_field(field, v) unless field.blank?
  end
end

#add_raw_html_field(name, value) ⇒ Object

Add a field that has characters that CGI::escape would mangle. Allows for multiple fields with the same name (e.g., to support line items).



53
54
55
56
# File 'lib/offsite_payments/helper.rb', line 53

def add_raw_html_field(name, value)
  return if name.blank? || value.blank?
  @raw_html_fields << [name, value]
end

#billing_address(params = {}) ⇒ Object



62
63
64
# File 'lib/offsite_payments/helper.rb', line 62

def billing_address(params = {})
  add_address(:billing_address, params)
end

#form_fieldsObject



70
71
72
# File 'lib/offsite_payments/helper.rb', line 70

def form_fields
  @fields
end

#form_methodObject



78
79
80
# File 'lib/offsite_payments/helper.rb', line 78

def form_method
  "POST"
end

#raw_html_fieldsObject



58
59
60
# File 'lib/offsite_payments/helper.rb', line 58

def raw_html_fields
  @raw_html_fields
end

#shipping_address(params = {}) ⇒ Object



66
67
68
# File 'lib/offsite_payments/helper.rb', line 66

def shipping_address(params = {})
  add_address(:shipping_address, params)
end

#test?Boolean

Returns:

  • (Boolean)


74
75
76
# File 'lib/offsite_payments/helper.rb', line 74

def test?
  @test_mode ||= OffsitePayments.mode == :test || !!@test
end