service-database-category.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. package api
  2. import (
  3. "assetcenter/db/repo"
  4. "time"
  5. "github.com/gin-gonic/gin"
  6. "go.mongodb.org/mongo-driver/bson/primitive"
  7. "infish.cn/comm"
  8. )
  9. func CreateDatabaseCategoryRouter(router *GinRouter) {
  10. //创建分类定义
  11. router.POSTJWT("/user/category/:scope", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  12. scope := c.Param("scope")
  13. if len(scope) < 1 || !primitive.IsValidObjectID(apictx.User.Parent) {
  14. return nil, NewError("Id参数非法!")
  15. }
  16. body := &comm.DbCategory{}
  17. c.ShouldBindJSON(body)
  18. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.Parent)
  19. body.Scope = scope
  20. body.CreateTime = time.Now()
  21. if body.Id.IsZero() {
  22. body.CreateTime = time.Now()
  23. } else {
  24. body.UpdateTime = time.Now()
  25. }
  26. curr := &comm.DbCategory{}
  27. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  28. CollectName: repo.CollectionCategories,
  29. Project: []string{"_id"},
  30. Query: repo.Map{"userId": body.UserId, "scope": body.Scope},
  31. }, curr)
  32. if err != nil {
  33. return nil, err
  34. }
  35. if !ok { //没有查询到新增
  36. id, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionCategories, body)
  37. if err != nil {
  38. return nil, err
  39. }
  40. body.Id, _ = primitive.ObjectIDFromHex(id)
  41. return body, nil
  42. }
  43. body.Id = primitive.NilObjectID
  44. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionCategories, curr.Id.Hex(), body)
  45. })
  46. // //更新
  47. // router.POSTJWT("/dbcategory/update/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  48. // id := c.Param("id")
  49. // if len(id) < 1 {
  50. // return nil, NewError("数据库Id不能为空")
  51. // }
  52. // body := &model.DbCategory{}
  53. // c.ShouldBindJSON(body)
  54. // if len(body.Id) < 1 {
  55. // return nil, NewError("id不能为空")
  56. // }
  57. // optSet := repo.Map{}
  58. // if len(body.Name) > 0 {
  59. // optSet["categories.$.name"] = body.Name
  60. // }
  61. // if len(body.Value) > 0 {
  62. // optSet["categories.$.value"] = body.Value
  63. // }
  64. // option := &repo.ArrayOneUpdateOption{
  65. // CollectName: repo.CollectionDatabase,
  66. // Id: id,
  67. // Query: repo.Map{"categories.id": body.Id},
  68. // Set: optSet,
  69. // }
  70. // return repo.RepoDocArrayOneUpdate(
  71. // apictx.CreateRepoCtx(),
  72. // option,
  73. // )
  74. // })
  75. //获取用户的所有分类定义和 资产分类定义
  76. router.GETJWT("/user/category/:scope", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  77. scope := c.Param("scope")
  78. if len(scope) < 1 || !primitive.IsValidObjectID(apictx.User.Parent) {
  79. return nil, NewError("Id参数非法!")
  80. }
  81. uidObj, _ := primitive.ObjectIDFromHex(apictx.User.Parent)
  82. ok, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  83. CollectName: repo.CollectionCategories,
  84. Query: repo.Map{"userId": uidObj, "scope": scope},
  85. })
  86. if !ok {
  87. return nil, NewError("no find!")
  88. }
  89. return ret, nil
  90. })
  91. //创建资产分类
  92. router.POSTJWT("/user/assetcategory/:scope", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  93. scope := c.Param("scope")
  94. if len(scope) < 1 || !primitive.IsValidObjectID(apictx.User.Parent) {
  95. return nil, NewError("Id参数非法!")
  96. }
  97. body := &comm.DbAssetUserCategory{}
  98. c.ShouldBindJSON(body)
  99. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.Parent)
  100. body.Scope = scope
  101. body.CreateTime = time.Now()
  102. curr := &comm.DbAssetUserCategory{}
  103. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  104. CollectName: repo.CollectionDbAssetCategory,
  105. Project: []string{"_id"},
  106. Query: repo.Map{"userId": body.UserId, "scope": body.Scope},
  107. }, curr)
  108. if err != nil {
  109. return nil, err
  110. }
  111. if !ok { //没有查询到新增
  112. body.CreateTime = time.Now()
  113. id, err := repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionDbAssetCategory, body)
  114. if err != nil {
  115. return nil, err
  116. }
  117. body.Id, _ = primitive.ObjectIDFromHex(id)
  118. return body, nil
  119. }
  120. body.Id = primitive.NilObjectID
  121. body.UpdateTime = time.Now()
  122. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionDbAssetCategory, curr.Id.Hex(), body)
  123. })
  124. router.GETJWT("/user/assetcategory/:scope", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  125. scope := c.Param("scope")
  126. if len(scope) < 1 || !primitive.IsValidObjectID(apictx.User.Parent) {
  127. return nil, NewError("Id参数非法!")
  128. }
  129. uidObj, _ := primitive.ObjectIDFromHex(apictx.User.Parent)
  130. ok, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  131. CollectName: repo.CollectionDbAssetCategory,
  132. Query: repo.Map{"userId": uidObj, "scope": scope},
  133. })
  134. if !ok {
  135. return nil, NewError("no find!")
  136. }
  137. return ret, nil
  138. })
  139. router.GETJWT("/user/categoryconf/:scope", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  140. scope := c.Param("scope")
  141. if len(scope) < 1 || !primitive.IsValidObjectID(apictx.User.Parent) {
  142. return nil, NewError("Id参数非法!")
  143. }
  144. uidObj, _ := primitive.ObjectIDFromHex(apictx.User.Parent)
  145. _, ret1 := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  146. CollectName: repo.CollectionCategories,
  147. Query: repo.Map{"userId": uidObj, "scope": scope},
  148. })
  149. _, ret2 := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  150. CollectName: repo.CollectionDbAssetCategory,
  151. Query: repo.Map{"userId": uidObj, "scope": scope},
  152. })
  153. return map[string]interface{}{
  154. "categories": ret1,
  155. "assetCategories": ret2,
  156. }, nil
  157. })
  158. router.GET("/public/category/:cateId/:assetCateConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  159. cateId := c.Param("cateId")
  160. assetCateConfId := c.Param("assetCateConfId")
  161. if !primitive.IsValidObjectID(cateId) || !primitive.IsValidObjectID(assetCateConfId) {
  162. return nil, NewError("Id参数非法!")
  163. }
  164. cateIdObj, _ := primitive.ObjectIDFromHex(cateId)
  165. ok, ret := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  166. CollectName: repo.CollectionCategories,
  167. Query: repo.Map{"_id": cateIdObj},
  168. })
  169. if !ok {
  170. return nil, NewError("no find!")
  171. }
  172. assetCateIdObj, _ := primitive.ObjectIDFromHex(assetCateConfId)
  173. _, assetConf := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  174. CollectName: repo.CollectionDbAssetCategory,
  175. Query: repo.Map{"_id": assetCateIdObj},
  176. })
  177. return map[string]interface{}{
  178. "categories": ret,
  179. "assetCategories": assetConf,
  180. }, nil
  181. })
  182. }