service-imgmat.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package api
  2. import (
  3. "fmt"
  4. "sku3dweb/db/model"
  5. "sku3dweb/db/repo"
  6. "github.com/gin-gonic/gin"
  7. "go.mongodb.org/mongo-driver/bson"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. )
  10. func RegImageMat(router *GinRouter) {
  11. pageSearchFn := func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  12. page, size, query := UtilQueryPageSize(c)
  13. scope := c.Param("scope")
  14. coll := UtilGetImgMatCollection(scope)
  15. pageOption := &repo.PageSearchOptions{
  16. CollectName: coll,
  17. Page: page,
  18. Size: size,
  19. Query: query,
  20. Project: []string{"name", "thumbnail", "cusNum", "createTime", "colorCards", "image", "categories"},
  21. Sort: bson.M{"createTime": -1},
  22. }
  23. pageResult, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), pageOption)
  24. if err != nil {
  25. return nil, err
  26. }
  27. for _, v := range pageResult.List {
  28. if v["userId"] != nil {
  29. userId := v["userId"].(primitive.ObjectID).Hex()
  30. u, _ := repo.RedisGetUserById(apictx.CreateRepoCtx(), userId)
  31. if u != nil {
  32. v["user"] = u
  33. }
  34. }
  35. }
  36. return pageResult, nil
  37. }
  38. router.GETJWT("/imgmat/list/:scope", pageSearchFn)
  39. router.GET("/imgmat/detail/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  40. id := c.Param("id")
  41. if len(id) < 1 {
  42. return nil, NewError("参数不能为空")
  43. }
  44. scope := c.Query("scope")
  45. out := &model.ImageMat{}
  46. uid, _ := primitive.ObjectIDFromHex(id)
  47. Collection := UtilGetImgMatCollection(scope)
  48. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  49. CollectName: Collection,
  50. Query: repo.Map{"_id": uid},
  51. Project: []string{"name", "image", "thumbnail", "category", "colorCards", "categories"},
  52. }, out)
  53. if err != nil {
  54. return nil, err
  55. }
  56. if !ok {
  57. return nil, NewError("没有查询到数据")
  58. }
  59. return out, nil
  60. })
  61. router.POSTJWT("/imgmat/update/:scope", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  62. fabric := &model.ImageMat{}
  63. err := c.ShouldBindJSON(fabric)
  64. if err != nil {
  65. fmt.Println(err)
  66. return nil, NewError("参数解析错误")
  67. }
  68. collection := UtilGetImgMatCollection(c.Param("scope"))
  69. if fabric.Id == primitive.NilObjectID {
  70. return nil, NewError("Id不能为空!")
  71. }
  72. id := fabric.Id.Hex()
  73. out, err := repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), collection, id, fabric)
  74. if err != nil {
  75. return nil, err
  76. }
  77. if out.MatchedCount != 1 {
  78. return nil, NewError("文件不存在!")
  79. }
  80. return true, nil
  81. })
  82. }