Sha256: 4f3640b1cd3fa9516de56ffb6110e20b3229f6e69ed4cfb3f8c1485fa4ef8e48
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
module Payanyway module Response class Pay < Base @@_params = { 'MNT_ID' => :moneta_id, 'MNT_TRANSACTION_ID' => :order_id, 'MNT_OPERATION_ID' => :operation_id, 'MNT_AMOUNT' => :amount, 'MNT_CURRENCY_CODE' => :currency, 'MNT_SUBSCRIBER_ID' => :subscriber_id, 'MNT_TEST_MODE' => :test_mode, 'MNT_SIGNATURE' => :signature, 'MNT_USER' => :user, 'MNT_CORRACCOUNT' => :corraccount, 'MNT_CUSTOM1' => :custom1, 'MNT_CUSTOM2' => :custom2, 'MNT_CUSTOM3' => :custom3 }.invert.to_settings def initialize(params) super @valid_signature = (@pretty_params[:signature] == Payanyway::Helpers::SignatureGenerate.for_pay(@params)) end def success? @valid_signature end def result @valid_signature ? 'SUCCESS' : 'FAIL' end private def signature Payanyway::Helpers::SignatureGenerate.for_pay(@params) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
payanyway-1.2.1 | lib/payanyway/response/pay.rb |
payanyway-1.2.0 | lib/payanyway/response/pay.rb |