refactor(utils): 修复密码哈希比较逻辑错误 feat(user): 新增按状态筛选优惠券接口 docs: 添加虚拟发货与任务中心相关文档 fix(wechat): 修正Code2Session上下文传递问题 test: 补充订单折扣与积分转换测试用例 build: 更新配置文件与构建脚本 style: 清理多余的空行与注释
103 lines
3.3 KiB
Go
103 lines
3.3 KiB
Go
package admin
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"time"
|
|
|
|
"bindbox-game/configs"
|
|
"bindbox-game/internal/code"
|
|
"bindbox-game/internal/pkg/core"
|
|
"bindbox-game/internal/pkg/validation"
|
|
"bindbox-game/internal/pkg/wechat"
|
|
)
|
|
|
|
type setJumpPathRequest struct {
|
|
Path string `json:"path"`
|
|
}
|
|
|
|
type uploadVirtualShippingRequest struct {
|
|
TransactionID string `json:"transaction_id"`
|
|
ItemDesc *string `json:"item_desc"`
|
|
}
|
|
|
|
func (h *handler) SetMiniAppMsgJumpPath() core.HandlerFunc {
|
|
return func(ctx core.Context) {
|
|
req := new(setJumpPathRequest)
|
|
if err := ctx.ShouldBindJSON(req); err != nil {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, code.ParamBindError, validation.Error(err)))
|
|
return
|
|
}
|
|
if req.Path == "" {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, code.ParamBindError, "path 不能为空"))
|
|
return
|
|
}
|
|
cfg := configs.Get()
|
|
wxc := &wechat.WechatConfig{AppID: cfg.Wechat.AppID, AppSecret: cfg.Wechat.AppSecret}
|
|
if err := wechat.SetMsgJumpPath(ctx, wxc, req.Path); err != nil {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, 12011, err.Error()))
|
|
return
|
|
}
|
|
ctx.Payload(map[string]any{"ok": true})
|
|
}
|
|
}
|
|
|
|
func (h *handler) UploadVirtualShippingForTransaction() core.HandlerFunc {
|
|
return func(ctx core.Context) {
|
|
req := new(uploadVirtualShippingRequest)
|
|
if err := ctx.ShouldBindJSON(req); err != nil {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, code.ParamBindError, validation.Error(err)))
|
|
return
|
|
}
|
|
if req.TransactionID == "" {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, code.ParamBindError, "transaction_id 不能为空"))
|
|
return
|
|
}
|
|
var itemDesc string
|
|
tx, _ := h.readDB.PaymentTransactions.WithContext(ctx.RequestContext()).Where(h.readDB.PaymentTransactions.TransactionID.Eq(req.TransactionID)).First()
|
|
if tx == nil {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, 12012, "未找到交易"))
|
|
return
|
|
}
|
|
ord, _ := h.readDB.Orders.WithContext(ctx.RequestContext()).Where(h.readDB.Orders.ID.Eq(tx.OrderID)).First()
|
|
if ord == nil {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, 12012, "未找到订单"))
|
|
return
|
|
}
|
|
if req.ItemDesc != nil && *req.ItemDesc != "" {
|
|
itemDesc = *req.ItemDesc
|
|
} else {
|
|
xs, _ := h.readDB.OrderItems.WithContext(ctx.RequestContext()).Where(h.readDB.OrderItems.OrderID.Eq(ord.ID)).Find()
|
|
if len(xs) == 0 {
|
|
itemDesc = "订单" + ord.OrderNo
|
|
} else {
|
|
s := ""
|
|
for i, it := range xs {
|
|
seg := it.Title + "*" + func(q int64) string { return fmt.Sprintf("%d", q) }(it.Quantity)
|
|
if i == 0 {
|
|
s = seg
|
|
} else {
|
|
s = s + ", " + seg
|
|
}
|
|
}
|
|
if len(s) > 120 {
|
|
s = s[:120]
|
|
}
|
|
itemDesc = s
|
|
}
|
|
}
|
|
pre, _ := h.readDB.PaymentPreorders.WithContext(ctx.RequestContext()).Where(h.readDB.PaymentPreorders.OrderID.Eq(ord.ID)).Order(h.readDB.PaymentPreorders.ID.Desc()).First()
|
|
payerOpenid := ""
|
|
if pre != nil {
|
|
payerOpenid = pre.PayerOpenid
|
|
}
|
|
cfg := configs.Get()
|
|
wxc := &wechat.WechatConfig{AppID: cfg.Wechat.AppID, AppSecret: cfg.Wechat.AppSecret}
|
|
if err := wechat.UploadVirtualShippingWithFallback(ctx, wxc, req.TransactionID, ord.OrderNo, payerOpenid, itemDesc, time.Now()); err != nil {
|
|
ctx.AbortWithError(core.Error(http.StatusBadRequest, 12013, err.Error()))
|
|
return
|
|
}
|
|
ctx.Payload(map[string]any{"ok": true})
|
|
}
|
|
}
|