Sha256: 0c0e117408bff9667d390689a7a8274a23c4f165892ae8a76e7956586a56363a

Contents?: true

Size: 1.91 KB

Versions: 1

Compression:

Stored size: 1.91 KB

Contents

# coding: utf-8

module Reapal
  module Api
    module User
      module BankCardAddSmsConfirm

        # 1.11 一键绑卡确认(API)
        #
        # @param order_no [ String ] 交易订单号(与一键绑卡申请订单号保持一致)
        # @param check_code [ String ] 短信验证码
        # @param busway [ String ] 设备通道 00:PC端;01:手机端;02:Pad端;03:其它
        # @param remark [ String ] 业务备注信息

        # @return [ Hash ] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :error_code [String] 错误代号
        #   * :error_msg [String] 错误信息
        #   * :data: 具体业务返回信息
        #       * :order_no [ String ] 交易订单号
        #       * :result_code [ String ] 结果代码 0000:绑卡成功
        #
        def bank_card_add_sms_confirm(order_no, check_code = '123456', busway = '01', remark = "")
          service = 'reapal.trust.bankCardAddSMSConfirm'
          post_path = '/reagw/bankcard/bankCardSMS.htm'

          params = {
            orderNo: order_no,
            checkCode: check_code,
            busway: busway,
            applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'),
          }

          response = Http.post(service, params, @config, post_path)

          res = Reapal::Utils.api_result(params, response)

          return res if response.http_pending? # 比如超时等操作

          # 1,明确失败的
          if Api::ErrorCode.bind_card.include?(response.data[:errorCode])
            res[:result] = 'F'
            return res
          end

          # 2. 明确正确的
          if ['0000'].include?(response.data[:resultCode])
            res[:result] = 'S'
            return res
          end

          # 3. pending
          res
        end

      end # module
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reapal-0.2.2 lib/reapal/api/user/bank_card_add_sms_confirm.rb