Class: Payzilla::Gateways::Matrix
- Includes:
- Transports::HTTP
- Defined in:
- lib/payzilla/gateways/matrix.rb
Instance Attribute Summary
Attributes inherited from Gateway
#config, #logger, #revision_page_size
Instance Method Summary collapse
Methods included from Transports::HTTP
Methods inherited from Gateway
available_attachments, available_settings, available_switches, can_list_providers, #can_list_providers?, can_list_providers?, #initialize, register_attachments, register_settings, register_switches, require_payment_fields, required_payment_fields, requires_revision, requires_revision?, #requires_revision?, #revise
Constructor Details
This class inherits a constructor from Payzilla::Gateways::Gateway
Instance Method Details
#check(payment) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/payzilla/gateways/matrix.rb', line 13 def check(payment) begin result = send 'process_payment', :i_service_id => 2, :i_phone => payment.account, :i_pamount => payment.enrolled_amount, :i_pdate => payment.created_at return retval(result['ERROR']['@SQLCODE'], result['PAYMENT_ID']) rescue Errno::ECONNRESET return retval(-1000) end end |
#pay(payment) ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/payzilla/gateways/matrix.rb', line 27 def pay(payment) begin result = send 'process_payment', :i_transaction_id => payment.gateway_payment_id, :i_receipt_num => payment.id return retval(result['ERROR']['SQLCODE'], result['PAYMENT_ID']) rescue Errno::ECONNRESET return retval(-1000) end end |