Compare commits

...

3 Commits

Author SHA1 Message Date
wolter 96aa3b16da feat: 微信jsapi 2024-12-06 09:16:53 +08:00
wolter fd57130499 Merge branch 'refs/heads/dev/dev1.0' into feature/zhifu 2024-12-05 18:41:36 +08:00
wolter 67265ef3fc feat: sm2加密fix 2024-12-05 18:39:46 +08:00
7 changed files with 70 additions and 38 deletions

View File

@ -52,7 +52,10 @@ const (
AppAesEncryptFail = 1234
AppDeEncryptFail = 1250
// 加密方式不存在
EncryptTypeNotFound = 1241
EncryptTypeNotFound = 1241
PayChannelConfigNotFound = 1242
// 加密参数异常
PayEncryptParamFail = 1243
//渠道
PayChannelNotFound = 1300
@ -138,7 +141,9 @@ var MsgZH = map[int]string{
AppAesEncryptFail: "aes 加密失败",
EncryptTypeNotFound: "加密方式不存在",
EncryptTypeNotFound: "加密方式不存在",
PayChannelConfigNotFound: "secret支付方式配置不存在",
PayEncryptParamFail: "加密参数错误,解析失败",
AppDeEncryptFail: "未知原因导致解密失败请检查加密数据是和app加密配置",

View File

@ -3,6 +3,8 @@ package front
import (
"PaymentCenter/app/constants/common"
"PaymentCenter/app/constants/errorcode"
"PaymentCenter/app/http/controllers"
"PaymentCenter/app/http/entities/front"
"PaymentCenter/app/models/paychannelmodel"
"PaymentCenter/app/services"
"PaymentCenter/app/third/paymentService"
@ -190,22 +192,22 @@ func BrokerWechatUrl(c *gin.Context) {
}
}
//// 首页
//func Ind/*ex(c *gin.Context) {
// c.HTML(200, "index.html", gin.H{})
//}
// 首页
func Index(c *gin.Context) {
c.HTML(200, "index.html", gin.H{})
}
//// 获取微信授权链接
//func GetWxAuthUrl(c *gin.Context) {
// req, _ := controllers.GetRequest(c).(*front.GetWxAuthUrlRequest)
//
// url, code := services.GetWxAuthUrl(*req)
// controllers.HandCodeRes(c, url, code)
//}
//
//// 通过code获取授权openid
//func GetWxAuth(c *gin.Context) {
// //req, _ := controllers.GetRequest(c).(*front.GetWxAuthRequest)
// //openId, code := services.GetWxAuth(*req)
// //controllers.HandCodeRes(c, openId, code)
//}*/
// 获取微信授权链接
func GetWxAuthUrl(c *gin.Context) {
req, _ := controllers.GetRequest(c).(*front.GetWxAuthUrlRequest)
url, code := services.GetWxAuthUrl(*req)
controllers.HandCodeRes(c, url, code)
}
// 通过code获取授权openid
func GetWxAuth(c *gin.Context) {
req, _ := controllers.GetRequest(c).(*front.GetWxAuthRequest)
code := services.GetWxAuth(*req)
controllers.HandCodeRes(c, code, code)
}

View File

@ -69,12 +69,12 @@ func RegisterRoute(router *gin.Engine) {
// 微信获取授权相关
router.LoadHTMLGlob("./front/templates/*")
//wx := v1.Group("/wx", middlewares.ValidateRequest())
//{
// wx.GET("/index", front.Index) // 获取页面
// wx.POST("/getWxAuthUrl", front.GetWxAuthUrl) // 获取授权code
// wx.GET("/getWxAuth", front.GetWxAuth) // 获取openId
//}
wx := v1.Group("/wx", middlewares.ValidateRequest())
{
wx.GET("/index", front.Index) // 获取页面
wx.POST("/getWxAuthUrl", front.GetWxAuthUrl) // 获取授权code
wx.GET("/getWxAuth", front.GetWxAuth) // 获取openId
}
router.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))

View File

@ -64,7 +64,7 @@ func (a *AppCheck) Crypt() (cryptFunc func(app *appmodel.App) apicrypt.ApiCrypt)
func (a *AppCheck) ReCheckAfterDecrypt(data []byte, requestData *front.RequestBody) bool {
var requestCommonData front.ApiCommonBody
if err := sonic.Unmarshal(data, &requestCommonData); err != nil {
a.Code = errorcode.ParamError
a.Code = errorcode.PayEncryptParamFail
return false
}
if requestCommonData.AppId != requestData.AppId || requestCommonData.Timestamp != requestData.Timestamp {

View File

@ -2,11 +2,14 @@ package services
import (
"PaymentCenter/app/constants/common"
"PaymentCenter/app/constants/errorcode"
"PaymentCenter/app/http/entities/front"
"PaymentCenter/app/models/paychannelmodel"
"PaymentCenter/app/third/paymentService"
"PaymentCenter/app/utils"
"PaymentCenter/app/utils/httpclient"
"PaymentCenter/config"
"encoding/json"
"fmt"
"net/url"
"strconv"
)
@ -47,7 +50,7 @@ func GetWxAuthUrl(param front.GetWxAuthUrlRequest) (targetUrl string, code int)
return
}
// 通过code换取网页授权access_token
// // 通过code换取网页授权access_token
func GetWxAuth(param front.GetWxAuthRequest) (code int) {
// 获取支付渠道的配置
@ -62,19 +65,35 @@ func GetWxAuth(param front.GetWxAuthRequest) (code int) {
return
}
// 配置解析
wxConfig := paymentService.WxPay{}
//// 配置解析
wxConfig := make(map[string]interface{})
err = json.Unmarshal([]byte(payChannel.ExtJson), &wxConfig)
if err != nil {
code = handErr(err)
return
}
sk := wxConfig["secret"].(string)
if sk == "" {
code = errorcode.PayChannelConfigNotFound
return
}
//targetUrl := fmt.Sprintf("https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%s&grant_type=authorization_code",
// payChannel.AppId,
// wxConfig.SerialNo,
// param.Code,
//)
targetUrl := fmt.Sprintf("https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%s&grant_type=authorization_code",
payChannel.AppId,
sk,
param.Code,
)
header := map[string]string{
"Content-Type": "application/json",
}
body := map[string]string{}
response, err := httpclient.FastHttpGet(targetUrl, header, body, 0)
if err != nil {
code = handErr(err)
return
}
utils.Log(nil, "获取微信授权信息", string(response), targetUrl)
return
}

View File

@ -56,7 +56,13 @@ func PrivateKeyToString(privateKey *sm2.PrivateKey) string {
return strings.ToUpper(hex.EncodeToString(privateKey.D.Bytes()))
}
func SM2Decrypt(cipherText, publicKey string, privateKey string) (string, error) {
func SM2Decrypt(cipherText, publicKey string, privateKey string) (content string, err error) {
defer func() {
if r := recover(); r != nil {
err = fmt.Errorf("SM2Decrypt error: %v", r)
}
}()
if cipherText == "" {
return "", nil
}

View File

@ -88,7 +88,7 @@ func FastHttpGet(url string, header map[string]string, body map[string]string, t
resp := fasthttp.AcquireResponse()
defer fasthttp.ReleaseResponse(resp) // 用完需要释放资源
var err error
if timeout == 0 {
if timeout <= 0 {
if err = fasthttp.Do(req, resp); err != nil {
utils.Log(nil, "http请求失败", err, url)
return nil, err