class OffsitePayments::Integrations::Liqpay::Helper

Public Class Methods

new(order, account, options = {}) click to toggle source
Calls superclass method
# File lib/offsite_payments/integrations/liqpay.rb, line 24
def initialize(order, account, options = {})
  @secret = options.delete(:secret)
  super

  add_field 'version', '1.2'
end

Public Instance Methods

form_fields() click to toggle source
# 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