service-single-pay.go 900 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package api
  2. import (
  3. "fmt"
  4. "net/http"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func PaySingle(r *GinRouter) {
  8. r.POST("/single/alipay/callback", SingleAliCallBack)
  9. r.POST("/single/wechat/callback", SingleWechatCallBack)
  10. }
  11. func SingleAliCallBack(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  12. fmt.Println(c)
  13. // 默认走阿里支付
  14. pay := PayMod(ALIPAY)
  15. res, err := pay.CallBack(c.Request)
  16. if err != nil {
  17. return false, NewError(err.Error())
  18. }
  19. c.String(http.StatusOK, res.(string))
  20. return nil, nil
  21. }
  22. func SingleWechatCallBack(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  23. // 微信回调
  24. pay := PayMod(WECHATPAY)
  25. res, err := pay.CallBack(c.Request)
  26. if err != nil {
  27. // return false, NewError(err.Error())
  28. c.JSON(http.StatusOK, gin.H{"code": res, "message": err.Error()})
  29. }
  30. c.JSON(http.StatusOK, gin.H{"code": res, "message": "成功"})
  31. return nil, nil
  32. }