Merge branch 'develop' of https://gitee.com/fusenpack/fusenapi into develop
This commit is contained in:
commit
7a2820e496
|
@ -1,2 +1,37 @@
|
|||
package gmodel
|
||||
// TODO: 使用model的属性做你想做的
|
||||
|
||||
import "context"
|
||||
|
||||
// 查询
|
||||
func (c *FsProductCollectionModel) FindOne(ctx context.Context, userId, guestId, productId int64) (resp *FsProductCollection, err error) {
|
||||
err = c.db.WithContext(ctx).Model(&FsProductCollection{}).
|
||||
Where("user_id = ? and guest_id = ? and product_id = ?", userId, guestId, productId).
|
||||
Take(&resp).Error
|
||||
return resp, err
|
||||
}
|
||||
|
||||
// 创建
|
||||
func (c *FsProductCollectionModel) Create(ctx context.Context, data *FsProductCollection) error {
|
||||
return c.db.WithContext(ctx).Model(&FsProductCollection{}).Create(&data).Error
|
||||
}
|
||||
|
||||
// 更新
|
||||
func (c *FsProductCollectionModel) Update(ctx context.Context, userId, guestId, productId int64, data *FsProductCollection) error {
|
||||
return c.db.WithContext(ctx).Model(&FsProductCollection{}).
|
||||
Where("user_id = ? and guest_id = ? and product_id = ?", userId, guestId, productId).
|
||||
Updates(&data).Error
|
||||
}
|
||||
|
||||
// 删除
|
||||
func (c *FsProductCollectionModel) Delete(ctx context.Context, userId, guestId, productId int64) error {
|
||||
return c.db.WithContext(ctx).Model(&FsProductCollection{}).
|
||||
Where("user_id = ? and guest_id = ? and product_id = ?", userId, guestId, productId).
|
||||
Delete(&FsProductCollection{}).Error
|
||||
}
|
||||
|
||||
// 删除
|
||||
func (c *FsProductCollectionModel) Delete2(ctx context.Context, userId, guestId, id int64) error {
|
||||
return c.db.WithContext(ctx).Model(&FsProductCollection{}).
|
||||
Where("user_id = ? and guest_id = ? and id = ?", userId, guestId, id).
|
||||
Delete(&FsProductCollection{}).Error
|
||||
}
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
package handler
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"reflect"
|
||||
|
||||
"fusenapi/utils/basic"
|
||||
|
||||
"fusenapi/server/collection/internal/logic"
|
||||
"fusenapi/server/collection/internal/svc"
|
||||
"fusenapi/server/collection/internal/types"
|
||||
)
|
||||
|
||||
func DeleteCollectProductHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
var req types.DeleteCollectProductReq
|
||||
userinfo, err := basic.RequestParse(w, r, svcCtx, &req)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
// 创建一个业务逻辑层实例
|
||||
l := logic.NewDeleteCollectProductLogic(r.Context(), svcCtx)
|
||||
|
||||
rl := reflect.ValueOf(l)
|
||||
basic.BeforeLogic(w, r, rl)
|
||||
|
||||
resp := l.DeleteCollectProduct(&req, userinfo)
|
||||
|
||||
if !basic.AfterLogic(w, r, rl, resp) {
|
||||
basic.NormalAfterLogic(w, r, resp)
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
package handler
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"reflect"
|
||||
|
||||
"fusenapi/utils/basic"
|
||||
|
||||
"fusenapi/server/collection/internal/logic"
|
||||
"fusenapi/server/collection/internal/svc"
|
||||
"fusenapi/server/collection/internal/types"
|
||||
)
|
||||
|
||||
func GetCollectProductListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
var req types.GetCollectProductListReq
|
||||
userinfo, err := basic.RequestParse(w, r, svcCtx, &req)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
// 创建一个业务逻辑层实例
|
||||
l := logic.NewGetCollectProductListLogic(r.Context(), svcCtx)
|
||||
|
||||
rl := reflect.ValueOf(l)
|
||||
basic.BeforeLogic(w, r, rl)
|
||||
|
||||
resp := l.GetCollectProductList(&req, userinfo)
|
||||
|
||||
if !basic.AfterLogic(w, r, rl, resp) {
|
||||
basic.NormalAfterLogic(w, r, resp)
|
||||
}
|
||||
}
|
||||
}
|
|
@ -17,6 +17,16 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|||
Path: "/api/collection/collect_product",
|
||||
Handler: CollectProductHandler(serverCtx),
|
||||
},
|
||||
{
|
||||
Method: http.MethodPost,
|
||||
Path: "/api/collection/delete_collect_product",
|
||||
Handler: DeleteCollectProductHandler(serverCtx),
|
||||
},
|
||||
{
|
||||
Method: http.MethodGet,
|
||||
Path: "/api/collection/get_collect_product_list",
|
||||
Handler: GetCollectProductListHandler(serverCtx),
|
||||
},
|
||||
},
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
package logic
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fusenapi/model/gmodel"
|
||||
"fusenapi/utils/auth"
|
||||
"fusenapi/utils/basic"
|
||||
"gorm.io/gorm"
|
||||
"time"
|
||||
|
||||
"context"
|
||||
|
||||
|
@ -31,10 +35,55 @@ func NewCollectProductLogic(ctx context.Context, svcCtx *svc.ServiceContext) *Co
|
|||
// }
|
||||
|
||||
func (l *CollectProductLogic) CollectProduct(req *types.CollectProductReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
||||
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
||||
// userinfo 传入值时, 一定不为null
|
||||
|
||||
return resp.SetStatus(basic.CodeOK)
|
||||
if !userinfo.IsUser() && !userinfo.IsGuest() {
|
||||
return resp.SetStatusWithMessage(basic.CodeUnAuth, "please sign in before to collect product")
|
||||
}
|
||||
//查询产品
|
||||
productInfo, err := l.svcCtx.AllModels.FsProduct.FindOne(l.ctx, req.ProductId, "id,is_shelf")
|
||||
if err != nil {
|
||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||
return resp.SetStatusWithMessage(basic.CodeDbRecordNotFoundErr, "the product is not found")
|
||||
}
|
||||
logx.Error(err)
|
||||
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "faile to get product info")
|
||||
}
|
||||
//校验下状态
|
||||
if *productInfo.Status != 1 {
|
||||
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "the product status is unNormal")
|
||||
}
|
||||
//下架了
|
||||
if *productInfo.IsShelf == 0 {
|
||||
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "the product is off shelf")
|
||||
}
|
||||
if *productInfo.IsDel == 1 {
|
||||
return resp.SetStatusWithMessage(basic.CodeRequestParamsErr, "the product is deleted")
|
||||
}
|
||||
//查询收藏
|
||||
_, err = l.svcCtx.AllModels.FsProductCollection.FindOne(l.ctx, userinfo.UserId, userinfo.GuestId, req.ProductId)
|
||||
if err != nil {
|
||||
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
||||
logx.Error(err)
|
||||
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to check repeat of collection")
|
||||
}
|
||||
//创建
|
||||
now := time.Now().UTC()
|
||||
err = l.svcCtx.AllModels.FsProductCollection.Create(l.ctx, &gmodel.FsProductCollection{
|
||||
UserId: &userinfo.UserId,
|
||||
GuestId: &userinfo.GuestId,
|
||||
ProductId: &req.ProductId,
|
||||
TemplateTag: &req.TemplateTag,
|
||||
SelectColorIndex: &req.SelectColorIndex,
|
||||
Logo: &req.Logo,
|
||||
Ctime: &now,
|
||||
Utime: &now,
|
||||
})
|
||||
if err != nil {
|
||||
logx.Error(err)
|
||||
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to collect product")
|
||||
}
|
||||
return resp.SetStatus(basic.CodeOK)
|
||||
}
|
||||
return resp.SetStatusAddMessage(basic.CodeOK, "you have collect this product and don`t need to repeat again")
|
||||
}
|
||||
|
||||
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
||||
|
|
|
@ -0,0 +1,50 @@
|
|||
package logic
|
||||
|
||||
import (
|
||||
"fusenapi/utils/auth"
|
||||
"fusenapi/utils/basic"
|
||||
|
||||
"context"
|
||||
|
||||
"fusenapi/server/collection/internal/svc"
|
||||
"fusenapi/server/collection/internal/types"
|
||||
|
||||
"github.com/zeromicro/go-zero/core/logx"
|
||||
)
|
||||
|
||||
type DeleteCollectProductLogic struct {
|
||||
logx.Logger
|
||||
ctx context.Context
|
||||
svcCtx *svc.ServiceContext
|
||||
}
|
||||
|
||||
func NewDeleteCollectProductLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DeleteCollectProductLogic {
|
||||
return &DeleteCollectProductLogic{
|
||||
Logger: logx.WithContext(ctx),
|
||||
ctx: ctx,
|
||||
svcCtx: svcCtx,
|
||||
}
|
||||
}
|
||||
|
||||
// 处理进入前逻辑w,r
|
||||
// func (l *DeleteCollectProductLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
||||
// }
|
||||
|
||||
func (l *DeleteCollectProductLogic) DeleteCollectProduct(req *types.DeleteCollectProductReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
||||
if !userinfo.IsUser() && !userinfo.IsGuest() {
|
||||
return resp.SetStatusWithMessage(basic.CodeUnAuth, "please sign in before to collect product")
|
||||
}
|
||||
for _, id := range req.Ids {
|
||||
err := l.svcCtx.AllModels.FsProductCollection.Delete2(l.ctx, userinfo.UserId, userinfo.GuestId, id)
|
||||
if err != nil {
|
||||
logx.Error(err)
|
||||
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to remove product collection")
|
||||
}
|
||||
}
|
||||
return resp.SetStatus(basic.CodeOK)
|
||||
}
|
||||
|
||||
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
||||
// func (l *DeleteCollectProductLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
||||
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
||||
// }
|
|
@ -0,0 +1,43 @@
|
|||
package logic
|
||||
|
||||
import (
|
||||
"fusenapi/utils/auth"
|
||||
"fusenapi/utils/basic"
|
||||
|
||||
"context"
|
||||
|
||||
"fusenapi/server/collection/internal/svc"
|
||||
"fusenapi/server/collection/internal/types"
|
||||
|
||||
"github.com/zeromicro/go-zero/core/logx"
|
||||
)
|
||||
|
||||
type GetCollectProductListLogic struct {
|
||||
logx.Logger
|
||||
ctx context.Context
|
||||
svcCtx *svc.ServiceContext
|
||||
}
|
||||
|
||||
func NewGetCollectProductListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetCollectProductListLogic {
|
||||
return &GetCollectProductListLogic{
|
||||
Logger: logx.WithContext(ctx),
|
||||
ctx: ctx,
|
||||
svcCtx: svcCtx,
|
||||
}
|
||||
}
|
||||
|
||||
// 处理进入前逻辑w,r
|
||||
// func (l *GetCollectProductListLogic) BeforeLogic(w http.ResponseWriter, r *http.Request) {
|
||||
// }
|
||||
|
||||
func (l *GetCollectProductListLogic) GetCollectProductList(req *types.GetCollectProductListReq, userinfo *auth.UserInfo) (resp *basic.Response) {
|
||||
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
||||
// userinfo 传入值时, 一定不为null
|
||||
|
||||
return resp.SetStatus(basic.CodeOK)
|
||||
}
|
||||
|
||||
// 处理逻辑后 w,r 如:重定向, resp 必须重新处理
|
||||
// func (l *GetCollectProductListLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) {
|
||||
// // httpx.OkJsonCtx(r.Context(), w, resp)
|
||||
// }
|
|
@ -12,6 +12,25 @@ type CollectProductReq struct {
|
|||
TemplateTag string `json:"template_tag"`
|
||||
}
|
||||
|
||||
type DeleteCollectProductReq struct {
|
||||
Ids []int64 `json:"ids"`
|
||||
}
|
||||
|
||||
type GetCollectProductListReq struct {
|
||||
CurrentPage int `form:"current_page"`
|
||||
}
|
||||
|
||||
type GetCollectProductListRspItem struct {
|
||||
Id int64 `json:"id"`
|
||||
ProductId int64 `json:"product_id"`
|
||||
ProductName string `json:"product_name"`
|
||||
Logo string `json:"logo"`
|
||||
SelectColorIndex int64 `json:"select_color_index"`
|
||||
TemplateTag string `json:"template_tag"`
|
||||
SizeCount int64 `json:"size_count"`
|
||||
MinPrice string `json:"min_price"`
|
||||
}
|
||||
|
||||
type Request struct {
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ var (
|
|||
//每个websocket渲染任务缓冲队列长度默认值
|
||||
renderChanLen = 500
|
||||
//每个websocket渲染并发数
|
||||
renderChanConcurrency = 10
|
||||
renderChanConcurrency = 100
|
||||
)
|
||||
|
||||
// 渲染处理器
|
||||
|
|
|
@ -12,6 +12,12 @@ service collection {
|
|||
//收藏产品
|
||||
@handler CollectProductHandler
|
||||
post /api/collection/collect_product(CollectProductReq) returns (response);
|
||||
//删除收藏
|
||||
@handler DeleteCollectProductHandler
|
||||
post /api/collection/delete_collect_product(DeleteCollectProductReq) returns (response);
|
||||
//获取收藏列表
|
||||
@handler GetCollectProductListHandler
|
||||
get /api/collection/get_collect_product_list(GetCollectProductListReq) returns (response);
|
||||
}
|
||||
|
||||
//收藏产品
|
||||
|
@ -20,4 +26,22 @@ type CollectProductReq {
|
|||
Logo string `json:"logo"`
|
||||
SelectColorIndex int64 `json:"select_color_index"`
|
||||
TemplateTag string `json:"template_tag"`
|
||||
}
|
||||
//删除收藏
|
||||
type DeleteCollectProductReq {
|
||||
Ids []int64 `json:"ids"`
|
||||
}
|
||||
//获取收藏列表
|
||||
type GetCollectProductListReq {
|
||||
CurrentPage int `form:"current_page"`
|
||||
}
|
||||
type GetCollectProductListRspItem {
|
||||
Id int64 `json:"id"`
|
||||
ProductId int64 `json:"product_id"`
|
||||
ProductName string `json:"product_name"`
|
||||
Logo string `json:"logo"`
|
||||
SelectColorIndex int64 `json:"select_color_index"`
|
||||
TemplateTag string `json:"template_tag"`
|
||||
SizeCount int64 `json:"size_count"`
|
||||
MinPrice string `json:"min_price"`
|
||||
}
|
Loading…
Reference in New Issue
Block a user