Module: ChanPay::Api::SmsPayConfirm

Included in:
Client
Defined in:
lib/chan_pay/api/sms_pay_confirm.rb

Constant Summary collapse

SERVICE_NAME =
'nmg_api_quick_payment_smsconfirm'

Instance Method Summary collapse

Instance Method Details

#sms_pay_confirm(flow_id, ori_flow_id, sms) ⇒ Hash

支付确认接口

Parameters:

  • flow_id (String)

    订单号(需要保证唯一)

  • ori_flow_id (String)

    原发短信验证码订单号

  • sms (String)

    验证码

Returns:

  • (Hash)

    返回结果集



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/chan_pay/api/sms_pay_confirm.rb', line 19

def sms_pay_confirm(flow_id, ori_flow_id, sms)
  params = {
    :TrxId => flow_id.to_s, # 最长 32 位唯一订单号
    :OriPayTrxId => ori_flow_id,
    :SmsCode => sms,
  }

  # 这里是明文参数输出
  puts "\n[#{SERVICE_NAME}] 请求参数为:\n#{params.inspect}"

  response = Http.post(@partner_id, @private_key, @public_key, @server_uri, SERVICE_NAME, params)

  res = {
    result: 'P', # 默认 pending
    msg: response[:RetMsg],
    ret_code: response[:RetCode],
    # TODO(tony): 本来这个字段应该是 flow_id,但是目前返回不是,畅捷正在和技术确认中
    # flow_id: response[:TrxId],
    flow_id: flow_id,
    vendor_order_id: response[:OrderTrxid],
    extension: response[:Extension],
    log: [params.to_json, response.to_json],
  }

  # 受理失败 || 受理成功但是结果失败
  if response[:AcceptStatus] == 'F' || (response[:AcceptStatus] == 'S' && response[:Status] == 'F')
    res[:result] = 'F'
  end

  # 受理成功并且结果成功,才是成功
  if response[:AcceptStatus] == 'S' && response[:Status] == 'S'
    res[:result] = 'S'
  end

  res
end