|
@@ -2,6 +2,8 @@ package api
|
|
|
|
|
|
import (
|
|
|
"errors"
|
|
|
+ "fmt"
|
|
|
+ "pay/bus"
|
|
|
"pay/db/repo"
|
|
|
"pay/log"
|
|
|
"time"
|
|
@@ -19,6 +21,29 @@ func PayPoint(r *GinRouter) {
|
|
|
r.GET("/point/detail/:id", PayDetail)
|
|
|
r.POSTJWT("/point/update", UpdatePay)
|
|
|
|
|
|
+ r.POST("pay/succ/test", PaySuccTest)
|
|
|
+ r.POST("pay/fail/test", PayFailTest)
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func PaySuccTest(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ orderId, _ := primitive.ObjectIDFromHex("64a67e3783648284a3eebeef")
|
|
|
+ var payMode int32 = 1
|
|
|
+ res := &pay.OrderMsg{Id: orderId, PayMod: &payMode, Project: "QS"}
|
|
|
+
|
|
|
+ fmt.Println("----------------success-----------------------")
|
|
|
+ err := bus.NatsCenter.PushMessage(pay.NewAppPaySuccSubject("QS"), res)
|
|
|
+ return err, nil
|
|
|
+
|
|
|
+}
|
|
|
+func PayFailTest(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ orderId, _ := primitive.ObjectIDFromHex("64a67e3783648284a3eebeef")
|
|
|
+ var payMode int32 = 1
|
|
|
+ res := &pay.OrderMsg{Id: orderId, PayMod: &payMode, Project: "QS"}
|
|
|
+
|
|
|
+ fmt.Println("----------------fail-----------------------")
|
|
|
+ err := bus.NatsCenter.PushMessage(pay.NewAppPayFailSubject("QS"), res)
|
|
|
+ return err, nil
|
|
|
}
|
|
|
|
|
|
func CreatePay(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|