美文网首页
Gin框架使用github.com/iGoogle-ink/go

Gin框架使用github.com/iGoogle-ink/go

作者: z小志 | 来源:发表于2020-01-15 10:15 被阅读0次

    发起支付

    支付宝两种签名秘钥方式,此处用了最普通的方式


    image.png
    client := alipay.NewClient(config["app_id"], config["private_key"], true)
    //  //  //设置支付宝请求 公共参数
    appCertSN, _ := alipay.GetCertSN(config["public_key"])
    //    注意:具体设置哪些参数,根据不同的方法而不同,此处列举出所以设置参数
    client.
        SetAppCertSN(appCertSN).                                          // 设置应用公钥证书SN,通过 alipay.GetCertSN() 获取
        SetCharset("utf-8").                                              // 设置字符编码,不设置默认 utf-8
        SetSignType("RSA2").                                              // 设置签名类型,不设置默认 RSA2
        SetReturnUrl(setting.AppSetting.PrefixUrl + "/pay/wap").          // 设置返回URL
        SetNotifyUrl(setting.AppSetting.PrefixUrl + "/api/notify/alipay") // 设置异步通知URL
    //SetAppAuthToken().                      // 设置第三方应用授权
    //SetAuthToken()                          // 设置个人信息授权
    bm := make(gopay.BodyMap, 0)
    bm.Set("body", "xxxxx")
    bm.Set("goods_type", "1")
    bm.Set("out_trade_no", order.OutTradeNo)
    bm.Set("product_code", "FAST_INSTANT_TRADE_PAY")
    bm.Set("timeout_express", "1d")
    bm.Set("total_amount", order.Money)
    bm.Set("subject", order.Name)
    payUrl, err := client.TradeWapPay(bm)
    if err != nil {
        appG.Response(http.StatusOK, e.ERROR, err.Error())
        return
    }
    appG.Response(http.StatusOK, e.SUCCESS, map[string]interface{}{
        "url": payUrl,
    })
    

    回调处理

    func AliPayNotify(c *gin.Context) {
        appG := app.Gin{C: c}
        //notifyReq, err := alipay.ParseNotifyResult(c.Request) 废弃
        notifyReq, err := alipay.ParseNotifyToBodyMap(c.Request)
        if err != nil {
            //数据解析出错
            appG.C.String(200, "SUCCESS")
            return
        }
        outTradeNo := notifyReq.Get("out_trade_no")
        tradeStatus := notifyReq.Get("trade_status")
        gmtPayment := notifyReq.Get("gmt_payment")
        if models.OrderIsExistByOutTradeNo(outTradeNo) {
            order := models.GetOrderByOutTradeNo(outTradeNo)
            //判断订单是否已经处理
            if order.NotifySuccess == 1 && order.IsPay == 1 {
                appG.C.String(200, "SUCCESS")
                return
            }
            key := xxx //签名key
            ok, err := alipay.VerifySign(xxx, notifyReq)
            if err != nil {
                models.LogCreate("notify_alipay", fmt.Sprintf("VerifySign Fail:%v", err))
                appG.C.String(200, "SUCCESS")
                return
            }
            if ok {
                if tradeStatus == "TRADE_SUCCESS" {
                    //交易成功 处理订单
                }
                appG.C.String(200, "SUCCESS")
            } else {
                //签名验证失败
                appG.C.String(200, "SUCCESS")
            }
        } else {
            //交易订单不存在
            appG.C.String(200, "SUCCESS")
        }
    }
    

    相关文章

      网友评论

          本文标题:Gin框架使用github.com/iGoogle-ink/go

          本文链接:https://www.haomeiwen.com/subject/ypzzactx.html