asset.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package api
  2. import (
  3. "errors"
  4. "spu3d/bus"
  5. "spu3d/db/repo"
  6. "github.com/gin-gonic/gin"
  7. "infish.cn/comm"
  8. )
  9. // spu3d-tree中资源
  10. func Asset(r *GinRouter) {
  11. r.POSTJWT("/asset/category", AssetCategory)
  12. r.POSTJWT("/asset/list", AssetList)
  13. }
  14. type TreeQueryDbCategoryReq struct {
  15. DefineCollection string //box
  16. DbName string //spu3d-tree
  17. UserId string
  18. AssetScope string // spu3d
  19. }
  20. func AssetCategory(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  21. var req TreeQueryDbCategoryReq
  22. err := c.ShouldBindJSON(&req)
  23. if err != nil {
  24. return nil, errors.New("参数错误!")
  25. }
  26. cates := comm.DbCategory{}
  27. err = bus.NatsCenter.RequestPackApi("tree.category.query", &req, &cates, &comm.RequestOptions{
  28. DeployPack: "spu3dtree",
  29. })
  30. return cates, err
  31. }
  32. type TreeListReq struct {
  33. DbName string
  34. Collection string
  35. Page int
  36. Size int
  37. Project []string
  38. Query map[string]interface{}
  39. }
  40. func AssetList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  41. var req TreeListReq
  42. err := c.ShouldBindJSON(&req)
  43. if err != nil {
  44. return nil, errors.New("参数错误!")
  45. }
  46. out := &repo.PageResult{}
  47. err = bus.NatsCenter.RequestPackApi("tree.asset.list", &req, &out, &comm.RequestOptions{
  48. DeployPack: "spu3dtree",
  49. })
  50. return out, err
  51. }