Sha256: 34b9bd9c648ecf66172fd183fbcba50929ef218102798170abf60c98feffcce1
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
require 'datatrans/xml/transaction/request' require 'datatrans/xml/transaction/response' class Datatrans::XML::Transaction class CaptureRequest < Request def process self.class.post(Datatrans.xml_settlement_url, :headers => { 'Content-Type' => 'text/xml' }, :body => build_capture_request.to_s).parsed_response end private def build_capture_request build_xml_request(:payment) do |xml| xml.amount params[:amount] xml.currency params[:currency] xml.uppTransactionId params[:transaction_id] end end end class CaptureResponse < Response def successful? response_code == '01' && response_message == 'settlement succeeded' end def response_code params_root_node['response']['responseCode'] rescue nil end def response_message params_root_node['response']['responseMessage'] rescue nil end def transaction_id params_root_node['request']['uppTransactionId'] rescue nil end def reference_number params_root_node['refno'] rescue nil end def error_code params_root_node['error']['errorCode'] rescue nil end def error_message params_root_node['error']['errorMessage'] rescue nil end def error_detail params_root_node['error']['errorDetail'] rescue nil end private def params_root_node params['paymentService']['body']['transaction'] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
datatrans-2.4.0 | lib/datatrans/xml/transaction/capture.rb |