1 Star 0 Fork 151

flyy9/go支付合集

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pay.go 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
shirdon 提交于 2018-12-03 13:47 . 支付库调试上传
package pays_with_go
import (
"errors"
"./client"
"./common"
"./constant"
"strconv"
)
//pay
func do(charge *common.Charge) (string, error) {
err := checkCharge(charge)
if err != nil {
//log.Error(err, charge)
return "", err
}
ct := getPayClient(charge.PayMethod)
re, err := ct.Pay(charge)
if err != nil {
//log.Error("支付失败:", err, charge)
return "", err
}
return re, err
}
func checkCharge(charge *common.Charge) error {
var id uint64
var err error
if charge.UserID == "" {
id = 0
} else {
id, err = strconv.ParseUint(charge.UserID, 10, -1)
if err != nil {
return err
}
}
if id < 0 {
return errors.New("userID less than 0")
}
if charge.PayMethod < 0 {
return errors.New("payMethod less than 0")
}
if charge.MoneyFee < 0 {
return errors.New("totalFee less than 0")
}
if charge.CallbackURL == "" {
return errors.New("callbackURL is NULL")
}
return nil
}
// getPayClient 得到需要支付的客户端
func getPayClient(payMethod int64) common.PayClient {
//如果使用余额支付
switch payMethod {
case constant.ALI_WEB:
return client.DefaultAliWebClient()
case constant.ALI_APP:
return client.DefaultAliAppClient()
case constant.WECHAT:
return client.DefaultWechatAppClient()
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/flyy9/pays_with_go.git
git@gitee.com:flyy9/pays_with_go.git
flyy9
pays_with_go
go支付合集
master

搜索帮助