Module: ChanPay::Api::SmsPayResend

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

Constant Summary collapse

SERVICE_NAME =
'nmg_api_quick_payment_resend'

Instance Method Summary collapse

Instance Method Details

#sms_pay_resend(flow_id, ori_flow_id) ⇒ Hash

短信验证码重发接口

Parameters:

  • flow_id (String)

    订单号(需要保证唯一)

  • ori_flow_id (String)

    原发短信验证码订单号

Returns:

  • (Hash)

    返回结果集



18
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
# File 'lib/chan_pay/api/sms_pay_resend.rb', line 18

def sms_pay_resend(flow_id, ori_flow_id)
  params = {
    :TrxId => flow_id.to_s, # 最长 32 位唯一订单号
    :OriTrxId => ori_flow_id,
    :TradeType => 'pay_order',
  }

  # 这里是明文参数输出
  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