43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package controllers
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"git.rosy.net.cn/jx-callback/business/jxstore/financial"
|
|
|
|
"git.rosy.net.cn/baseapi/platformapi/wxpayapi"
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
"git.rosy.net.cn/jx-callback/globals"
|
|
"git.rosy.net.cn/jx-callback/globals/api"
|
|
"github.com/astaxie/beego"
|
|
)
|
|
|
|
type WXPayController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
func (c *WXPayController) Msg() {
|
|
if c.Ctx.Input.Method() == http.MethodPost {
|
|
msg, callbackResponse := api.WxpayAPI.GetCallbackMsg(c.Ctx.Request)
|
|
globals.SugarLogger.Debugf("wxpayapi callback msg:%s, callbackResponse:%s, %t", utils.Format4Output(msg, true), utils.Format4Output(callbackResponse, true), callbackResponse == nil)
|
|
var err error
|
|
if callbackResponse == nil {
|
|
if msg.MsgType == wxpayapi.MsgTypeUnkown {
|
|
err = fmt.Errorf("未知的微信支付回调类型:%d", msg.MsgType)
|
|
} else {
|
|
err = financial.OnWxPayCallback(msg)
|
|
}
|
|
}
|
|
if callbackResponse == nil {
|
|
callbackResponse = wxpayapi.SuccessResponse
|
|
} else if err != nil {
|
|
callbackResponse = wxpayapi.Err2CallbackResponse(err, "")
|
|
}
|
|
c.Data["xml"] = callbackResponse
|
|
c.ServeXML()
|
|
} else {
|
|
c.Abort("404")
|
|
}
|
|
}
|