Class: OffsitePayments::Integrations::Paydollar::Helper

Inherits:
Helper
  • Object
show all
Defined in:
lib/offsite_payments/integrations/paydollar.rb

Instance Attribute Summary

Attributes inherited from Helper

#fields

Instance Method Summary collapse

Methods inherited from Helper

#add_field, #add_fields, #add_raw_html_field, #billing_address, #form_method, inherited, mapping, #raw_html_fields, #shipping_address, #test?

Constructor Details

#initialize(order, account, options = {}) ⇒ Helper

Returns a new instance of Helper.



51
52
53
54
55
# File 'lib/offsite_payments/integrations/paydollar.rb', line 51

def initialize(order, , options = {})
  super
  add_field('payType', 'N') # normal sale and not just auth
  @secret = options[:credential2]
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class OffsitePayments::Helper

Instance Method Details

#currency=(currency_code) ⇒ Object



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

def currency=(currency_code)
  add_field(mappings[:currency], CURRENCY_MAP[currency_code])
end

#form_fieldsObject



57
58
59
# File 'lib/offsite_payments/integrations/paydollar.rb', line 57

def form_fields
  @fields.merge('secureHash' => generate_secure_hash)
end

#generate_secure_hashObject



61
62
63
64
65
66
67
68
# File 'lib/offsite_payments/integrations/paydollar.rb', line 61

def generate_secure_hash
  fields = [@fields[mappings[:account]],
            @fields[mappings[:order]],
            @fields[mappings[:currency]],
            @fields[mappings[:amount]],
            @fields['payType']]
  Paydollar.sign(fields, @secret)
end