Class: OffsitePayments::Integrations::Paydollar::Helper
- Defined in:
- lib/offsite_payments/integrations/paydollar.rb
Instance Attribute Summary
Attributes inherited from Helper
Instance Method Summary collapse
- #currency=(currency_code) ⇒ Object
- #form_fields ⇒ Object
- #generate_secure_hash ⇒ Object
-
#initialize(order, account, options = {}) ⇒ Helper
constructor
A new instance of Helper.
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, account, = {}) super add_field('payType', 'N') # normal sale and not just auth @secret = [: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_fields ⇒ Object
57 58 59 |
# File 'lib/offsite_payments/integrations/paydollar.rb', line 57 def form_fields @fields.merge('secureHash' => generate_secure_hash) end |
#generate_secure_hash ⇒ Object
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 |