Class: OffsitePayments::Integrations::WorldPay::Helper
- Defined in:
- lib/offsite_payments/integrations/world_pay.rb
Instance Attribute Summary
Attributes inherited from Helper
Instance Method Summary collapse
-
#billing_address(params = {}) ⇒ Object
WorldPay only supports a single address field so we have to concat together - lines are separated using .
- #callback_params(params = {}) ⇒ Object
- #combined_params(params = {}) ⇒ Object
-
#customer(params = {}) ⇒ Object
WorldPay only supports a single name field so we have to concat.
-
#encrypt(secret, fields = [:amount, :currency, :account, :order]) ⇒ Object
Support for a MD5 hash of selected fields to prevent tampering For further information read the tech note at the address below: support.worldpay.com/kb/integration_guides/junior/integration/help/tech_notes/sjig_tn_009.html.
-
#initialize(order, account, options = {}) ⇒ Helper
constructor
WorldPay supports two different test modes - :always_succeed and :always_fail.
-
#response_params(params = {}) ⇒ Object
WorldPay supports the passing of custom parameters prefixed with the following: C_ : These parameters can be used in the response pages hosted on WorldPay’s site M_ : These parameters are passed through to the callback script (if enabled) MC_ or CM_ : These parameters are availble both in the response and callback contexts.
-
#valid_from(from_time) ⇒ Object
Add a time window for which the payment can be completed.
- #valid_to(to_time) ⇒ Object
Methods inherited from Helper
#add_field, #add_fields, #add_raw_html_field, #form_fields, #form_method, inherited, mapping, #raw_html_fields, #shipping_address, #test?
Constructor Details
#initialize(order, account, options = {}) ⇒ Helper
WorldPay supports two different test modes - :always_succeed and :always_fail
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 45 def initialize(order, account, = {}) super if OffsitePayments.mode == :test || [:test] test_mode = case [:test] when :always_fail 101 when false 0 else 100 end add_field('testMode', test_mode.to_s) elsif OffsitePayments.mode == :always_succeed add_field('testMode', '100') elsif OffsitePayments.mode == :always_fail add_field('testMode', '101') end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class OffsitePayments::Helper
Instance Method Details
#billing_address(params = {}) ⇒ Object
WorldPay only supports a single address field so we have to concat together - lines are separated using
67 68 69 70 71 72 73 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 67 def billing_address(params={}) add_field(mappings[:billing_address][:zip], params[:zip]) add_field(mappings[:billing_address][:country], lookup_country_code(params[:country])) address = [params[:address1], params[:address2], params[:city], params[:state]].compact add_field('address', address.join(' ')) end |
#callback_params(params = {}) ⇒ Object
112 113 114 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 112 def callback_params(params={}) params.each{|k,v| add_field("M_#{k}",v)} end |
#combined_params(params = {}) ⇒ Object
116 117 118 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 116 def combined_params(params={}) params.each{|k,v| add_field("MC_#{k}",v)} end |
#customer(params = {}) ⇒ Object
WorldPay only supports a single name field so we have to concat
76 77 78 79 80 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 76 def customer(params={}) add_field(mappings[:customer][:email], params[:email]) add_field(mappings[:customer][:phone], params[:phone]) add_field('name', "#{params[:first_name]} #{params[:last_name]}") end |
#encrypt(secret, fields = [:amount, :currency, :account, :order]) ⇒ Object
Support for a MD5 hash of selected fields to prevent tampering For further information read the tech note at the address below: support.worldpay.com/kb/integration_guides/junior/integration/help/tech_notes/sjig_tn_009.html
85 86 87 88 89 90 91 92 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 85 def encrypt(secret, fields = [:amount, :currency, :account, :order]) signature_fields = fields.collect{ |field| mappings[field] } add_field('signatureFields', signature_fields.join(':')) field_values = fields.collect{ |field| form_fields[mappings[field]] } signature = "#{secret}:#{field_values.join(':')}" add_field('signature', Digest::MD5.hexdigest(signature)) end |
#response_params(params = {}) ⇒ Object
WorldPay supports the passing of custom parameters prefixed with the following: C_ : These parameters can be used in the response pages hosted on WorldPay’s site M_ : These parameters are passed through to the callback script (if enabled) MC_ or CM_ : These parameters are availble both in the response and callback contexts
108 109 110 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 108 def response_params(params={}) params.each{|k,v| add_field("C_#{k}",v)} end |
#valid_from(from_time) ⇒ Object
Add a time window for which the payment can be completed. Read the link below for how they work support.worldpay.com/kb/integration_guides/junior/integration/help/appendicies/sjig_10100.html
96 97 98 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 96 def valid_from(from_time) add_field('authValidFrom', from_time.to_i.to_s + '000') end |
#valid_to(to_time) ⇒ Object
100 101 102 |
# File 'lib/offsite_payments/integrations/world_pay.rb', line 100 def valid_to(to_time) add_field('authValidTo', to_time.to_i.to_s + '000') end |