service.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. package api
  2. import (
  3. "assetcenter/db/repo"
  4. "encoding/hex"
  5. "fmt"
  6. "reflect"
  7. "github.com/gin-gonic/gin"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. )
  10. type CreateModel func(c *gin.Context, apictx *ApiSession) (interface{}, error)
  11. type EmptyModel func(c *gin.Context, apictx *ApiSession) interface{}
  12. type PostCreateModel func(c *gin.Context, apictx *ApiSession, id string, entity interface{}) (interface{}, error)
  13. type CreateModel2 func(c *gin.Context, apictx *ApiSession) (interface{}, error)
  14. type SearchFilterFn func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{}
  15. type Update func(c *gin.Context, apictx *ApiSession, entity interface{})
  16. type SearchPostFn func(page *repo.PageResult, c *gin.Context, apictx *ApiSession, query map[string]interface{}) (interface{}, error)
  17. type RemoveFn func(c *gin.Context, apictx *ApiSession, id string) (interface{}, error)
  18. type CRUDOption struct {
  19. Collection string
  20. NewModel CreateModel
  21. PostNewModel PostCreateModel
  22. EmtyModel EmptyModel
  23. SearchFilter SearchFilterFn
  24. SearchPostProcess SearchPostFn
  25. SearchSort interface{}
  26. Remove RemoveFn
  27. JWT bool
  28. SearchProject []string
  29. DetailProject []string
  30. OnUpdate Update
  31. noUpdate bool
  32. }
  33. func CreateCRUD(router *GinRouter, prefix string, option *CRUDOption) {
  34. //创建
  35. if option.NewModel != nil {
  36. creatpath := fmt.Sprintf("%s/create", prefix)
  37. router.POSTJWT(creatpath, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  38. entity, err := option.NewModel(c, apictx)
  39. if err != nil {
  40. return nil, err
  41. }
  42. if entity == nil {
  43. return nil, NewError("数据已存在!")
  44. }
  45. _id, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), option.Collection, entity)
  46. if err != nil {
  47. return nil, err
  48. }
  49. if option.PostNewModel != nil {
  50. return option.PostNewModel(c, apictx, _id, entity)
  51. }
  52. return _id, err
  53. })
  54. }
  55. //更新
  56. if !option.noUpdate {
  57. updatePath := fmt.Sprintf("%s/update", prefix)
  58. router.POSTJWT(updatePath, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  59. m := option.EmtyModel(c, apictx)
  60. err := c.ShouldBindJSON(m)
  61. if err != nil {
  62. fmt.Println(err)
  63. return nil, NewError("参数解析错误")
  64. }
  65. v := reflect.ValueOf(m)
  66. v = v.Elem()
  67. mid := v.FieldByName("Id")
  68. if !mid.IsValid() {
  69. return nil, NewError("ID不能为空")
  70. }
  71. slice := mid.Slice(0, mid.Len())
  72. objId := hex.EncodeToString(slice.Bytes())
  73. for i := 0; i < 12; i++ {
  74. mid.Index(i).SetUint(0)
  75. }
  76. if option.OnUpdate != nil {
  77. option.OnUpdate(c, apictx, m)
  78. }
  79. out, err := repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), option.Collection, objId, m)
  80. if err != nil {
  81. return nil, err
  82. }
  83. if out.MatchedCount != 1 {
  84. return nil, NewError("文件不存在!")
  85. }
  86. return out, nil
  87. })
  88. }
  89. //分页查询
  90. SearchPath := fmt.Sprintf("%s/list", prefix)
  91. pageSearchFn := func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  92. page, size, query := UtilQueryPageSize(c)
  93. if option.SearchFilter != nil {
  94. filter := option.SearchFilter(c, apictx, query)
  95. for k, v := range filter {
  96. query[k] = v
  97. }
  98. }
  99. pageOption := &repo.PageSearchOptions{
  100. CollectName: option.Collection,
  101. Page: page,
  102. Size: size,
  103. Query: query,
  104. Project: option.SearchProject,
  105. }
  106. if option.SearchSort != nil {
  107. pageOption.Sort = option.SearchSort
  108. }
  109. pageResult, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), pageOption)
  110. if err != nil {
  111. return nil, err
  112. }
  113. if option.SearchPostProcess != nil {
  114. return option.SearchPostProcess(pageResult, c, apictx, query)
  115. }
  116. return pageResult, nil
  117. }
  118. if option.JWT {
  119. router.GETJWT(SearchPath, pageSearchFn)
  120. } else {
  121. router.GET(SearchPath, pageSearchFn)
  122. }
  123. //删除
  124. removePath := fmt.Sprintf("%s/delete/:id", prefix)
  125. router.POSTJWT(removePath, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  126. id := c.Param("id")
  127. if len(id) < 1 {
  128. return nil, NewError("参数不能为空")
  129. }
  130. if option.Remove != nil {
  131. return option.Remove(c, apictx, id)
  132. }
  133. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), option.Collection, id)
  134. })
  135. //详情
  136. if len(option.DetailProject) > 0 {
  137. detailPath := fmt.Sprintf("%s/detail/:id", prefix)
  138. router.GET(detailPath, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  139. id := c.Param("id")
  140. if len(id) < 1 {
  141. return nil, NewError("参数不能为空")
  142. }
  143. uid, _ := primitive.ObjectIDFromHex(id)
  144. ok, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  145. CollectName: option.Collection,
  146. Query: repo.Map{"_id": uid},
  147. Project: option.DetailProject,
  148. })
  149. if !ok {
  150. return nil, NewError("没有查询到数据")
  151. }
  152. return ret, nil
  153. })
  154. }
  155. }