|
@@ -2,6 +2,7 @@ package api
|
|
|
|
|
|
import (
|
|
import (
|
|
"errors"
|
|
"errors"
|
|
|
|
+ "fmt"
|
|
"spu3d/db/repo"
|
|
"spu3d/db/repo"
|
|
"time"
|
|
"time"
|
|
|
|
|
|
@@ -11,6 +12,9 @@ import (
|
|
)
|
|
)
|
|
|
|
|
|
const BOXLIB_SCOPE = "boxlib"
|
|
const BOXLIB_SCOPE = "boxlib"
|
|
|
|
+const DECORATE_SCOPE = "decorate"
|
|
|
|
+const PAPER_SCOPE = "paper"
|
|
|
|
+const SCENE_SCOPE = "scene"
|
|
|
|
|
|
func GetSpu3dBoxLibCategory(apictx *ApiSession) (*comm.DbCategory, error) {
|
|
func GetSpu3dBoxLibCategory(apictx *ApiSession) (*comm.DbCategory, error) {
|
|
curr := &comm.DbCategory{}
|
|
curr := &comm.DbCategory{}
|
|
@@ -24,17 +28,19 @@ func GetSpu3dBoxLibCategory(apictx *ApiSession) (*comm.DbCategory, error) {
|
|
return nil, err
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
|
|
-func CreateCategoryRouter(router *GinRouter) {
|
|
+func defGetCategory(router *GinRouter, path string, catType string) {
|
|
- router.GET("/spu3d/boxlib/category", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
+ router.GET(fmt.Sprintf("/spu3d/%s/category", path), func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
_, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
_, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
CollectName: repo.CollectionCategories,
|
|
CollectName: repo.CollectionCategories,
|
|
- Query: repo.Map{"scope": BOXLIB_SCOPE},
|
|
+ Query: repo.Map{"scope": catType},
|
|
})
|
|
})
|
|
return ret, nil
|
|
return ret, nil
|
|
})
|
|
})
|
|
|
|
+}
|
|
|
|
|
|
|
|
+func defUpdateCategory(router *GinRouter, path string, catType string) {
|
|
|
|
|
|
- router.POST("/spu3d/boxlib/category", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
+ router.POST(fmt.Sprintf("/spu3d/%s/category", path), func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -47,7 +53,7 @@ func CreateCategoryRouter(router *GinRouter) {
|
|
PrintErr(err, "参数错误")
|
|
PrintErr(err, "参数错误")
|
|
return nil, errors.New("参数错误!")
|
|
return nil, errors.New("参数错误!")
|
|
}
|
|
}
|
|
- body.Scope = BOXLIB_SCOPE
|
|
+ body.Scope = catType
|
|
body.CreateTime = time.Now()
|
|
body.CreateTime = time.Now()
|
|
if body.Id.IsZero() {
|
|
if body.Id.IsZero() {
|
|
body.CreateTime = time.Now()
|
|
body.CreateTime = time.Now()
|
|
@@ -73,5 +79,16 @@ func CreateCategoryRouter(router *GinRouter) {
|
|
body.Id = primitive.NilObjectID
|
|
body.Id = primitive.NilObjectID
|
|
return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionCategories, curr.Id.Hex(), body)
|
|
return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionCategories, curr.Id.Hex(), body)
|
|
})
|
|
})
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func CreateCategoryRouter(r *GinRouter) {
|
|
|
|
+ defGetCategory(r, "boxlib", BOXLIB_SCOPE)
|
|
|
|
+ defGetCategory(r, "decorate", DECORATE_SCOPE)
|
|
|
|
+ defGetCategory(r, "paper", PAPER_SCOPE)
|
|
|
|
+ defGetCategory(r, "scene", SCENE_SCOPE)
|
|
|
|
|
|
|
|
+ defUpdateCategory(r, "boxlib", BOXLIB_SCOPE)
|
|
|
|
+ defUpdateCategory(r, "decorate", DECORATE_SCOPE)
|
|
|
|
+ defUpdateCategory(r, "paper", PAPER_SCOPE)
|
|
|
|
+ defUpdateCategory(r, "scene", SCENE_SCOPE)
|
|
}
|
|
}
|