Class: OffsitePayments::Integrations::Liqpay::Helper
- Defined in:
- lib/offsite_payments/integrations/liqpay.rb
Instance Attribute Summary
Attributes inherited from Helper
Instance Method Summary collapse
- #form_fields ⇒ 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.
24 25 26 27 28 29 |
# File 'lib/offsite_payments/integrations/liqpay.rb', line 24 def initialize(order, account, = {}) @secret = .delete(:secret) super add_field 'version', '1.2' end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class OffsitePayments::Helper
Instance Method Details
#form_fields ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/offsite_payments/integrations/liqpay.rb', line 31 def form_fields xml = "<request> <version>1.2</version> <result_url>#{@fields["result_url"]}</result_url> <server_url>#{@fields["server_url"]}</server_url> <merchant_id>#{@fields["merchant_id"]}</merchant_id> <order_id>#{@fields["order_id"]}</order_id> <amount>#{@fields["amount"]}</amount> <currency>#{@fields["currency"]}</currency> <description>#{@fields["description"]}</description> <default_phone>#{@fields["default_phone"]}</default_phone> <pay_way>card</pay_way> </request>".strip sign = Base64.encode64(Digest::SHA1.digest("#{@secret}#{xml}#{@secret}")).strip {"operation_xml" => Base64.encode64(xml), "signature" => sign} end |