1 Star 0 Fork 1

可乐烛光烟 / go-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
jsapi.go 2.17 KB
一键复制 编辑 原始数据 按行查看 历史
可乐烛光烟 提交于 2022-11-09 00:21 . Initial commit
/*
* @Author: i@rysa.cn
* @Date: 2022-05-14 17:00:20
* @LastEditTime: 2022-07-26 09:44:09
* @LastEditors: i@rysa.cn
* @Description:
* @FilePath: \go-utils\wechat\pay\jsapi.go
*/
package pay
import (
"github.com/wechatpay-apiv3/wechatpay-go/core"
"github.com/wechatpay-apiv3/wechatpay-go/services/payments"
"github.com/wechatpay-apiv3/wechatpay-go/services/payments/jsapi"
)
type jsApi struct {
*PayConfig
}
func NewJsApi(cfg *PayConfig) *jsApi {
return &jsApi{cfg}
}
/**
* @name: 预下单
* @description:
* @param {Prepay} prepay
* @return {*}
*/
func (p *jsApi) PrepayOrder(prepay OrderRequest) (*jsapi.PrepayWithRequestPaymentResponse, *core.APIResult, error) {
client, ctx, err := GetClient(p.PayConfig)
if err != nil {
return nil, nil, err
}
svc := jsapi.JsapiApiService{Client: client}
resp, result, err := svc.PrepayWithRequestPayment(ctx,
jsapi.PrepayRequest{
Appid: core.String(p.Appid),
Mchid: core.String(p.MchId),
Description: core.String(prepay.Description),
OutTradeNo: core.String(prepay.OutTradeNo),
Attach: core.String(prepay.Attach),
NotifyUrl: core.String(p.Notify),
Amount: &jsapi.Amount{
Total: core.Int64(int64(prepay.Amount * 100)),
},
Payer: &jsapi.Payer{
Openid: core.String(prepay.Openid),
},
SceneInfo: &jsapi.SceneInfo{
PayerClientIp: core.String(prepay.ClientIp),
},
},
)
return resp, result, err
}
func (p *jsApi) QueryOrderByTransactionId(transactionId string) (*payments.Transaction, *core.APIResult, error) {
client, ctx, err := GetClient(p.PayConfig)
if err != nil {
return nil, nil, err
}
svc := jsapi.JsapiApiService{Client: client}
return svc.QueryOrderById(ctx, jsapi.QueryOrderByIdRequest{
Mchid: core.String(p.MchId),
TransactionId: core.String(transactionId),
})
}
func (p *jsApi) QueryOrderByOutTradeNo(outNo string) (*payments.Transaction, *core.APIResult, error) {
client, ctx, err := GetClient(p.PayConfig)
if err != nil {
return nil, nil, err
}
svc := jsapi.JsapiApiService{Client: client}
return svc.QueryOrderByOutTradeNo(ctx, jsapi.QueryOrderByOutTradeNoRequest{
Mchid: core.String(p.MchId),
OutTradeNo: core.String(outNo),
})
}
1
https://gitee.com/rysa/go-utils.git
git@gitee.com:rysa/go-utils.git
rysa
go-utils
go-utils
v1.1.0

搜索帮助