service-lib.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package api
  2. import (
  3. "fmt"
  4. "mats/db/model"
  5. "mats/db/repo"
  6. "github.com/gin-gonic/gin"
  7. "go.mongodb.org/mongo-driver/bson"
  8. )
  9. /**
  10. db.designs.find({"editor.users":{$not:{$elemMatch:{$nin: [1,2,3]}}}, 'editor.users.0': {$exists: true}}).explain()
  11. **/
  12. func ParseCategory(filter []string, src []*model.ResCategory) []string {
  13. out := []string{}
  14. if len(filter) < 1 {
  15. for _, v := range src {
  16. out = append(out, v.Id.Hex())
  17. }
  18. return out
  19. }
  20. // rootCate := []string{}
  21. // for _, v := range src {
  22. // if v.Level == 0 {
  23. // rootCate = append(rootCate, v.Id.Hex())
  24. // }
  25. // }
  26. return out
  27. }
  28. func CreateLibRouter(router *GinRouter) {
  29. //获取款式列表
  30. router.GETJWT("/lib/public/design", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  31. page, size, query := UtilQueryPageSize(c)
  32. categories := query["categories"]
  33. if categories == nil {
  34. return nil, NewError("query.categories不能为空!")
  35. }
  36. strCategories := []string{}
  37. cates, ok := categories.([]interface{})
  38. if !ok {
  39. return nil, NewError("query.categories必须是数组!")
  40. }
  41. for _, c := range cates {
  42. strCategories = append(strCategories, c.(string))
  43. }
  44. designCates := []*model.ResCategory{}
  45. err := repo.RepoDocsSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{CollectName: repo.CollectionLibCategory, Query: repo.Map{"type": "design"}}, &designCates)
  46. if err != nil {
  47. return nil, err
  48. }
  49. //展开当前用户team的资源授权,如果没有则为所有
  50. fmt.Sprintln(cates)
  51. if len(strCategories) > 0 {
  52. query["categories"] = bson.M{"$not": bson.M{"$elemMatch": bson.M{"$nin": strCategories}}}
  53. query["categories.0"] = bson.M{"$exists": true}
  54. }
  55. //展开待查询的cates
  56. //{$not:{$elemMatch:{$nin: [1,2,3]}}}, 'editor.users.0': {$exists: true}}
  57. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  58. CollectName: repo.CollectionDesigns,
  59. Page: page,
  60. Size: size,
  61. Query: query,
  62. Project: []string{"name", "thumbnail", "createTime", "isPublic"},
  63. })
  64. })
  65. }