service-meshes.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package api
  2. import (
  3. "mats/bus"
  4. "mats/db/model"
  5. "mats/db/repo"
  6. "time"
  7. "github.com/gin-gonic/gin"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. )
  10. func RegQueenMeshes(router *GinRouter) {
  11. CollectionName := "hubmeshes"
  12. CreateCRUD(router, "/hubmeshes", &CRUDOption{
  13. Collection: CollectionName,
  14. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  15. hub := &model.HubMesh{}
  16. c.ShouldBindJSON(hub)
  17. if len(hub.Name) < 1 {
  18. return nil, NewError("参数不合法!")
  19. }
  20. hub.CreateTime = time.Now()
  21. hub.UserId, _ = primitive.ObjectIDFromHex(apictx.User.Parent)
  22. if hub.UserId == primitive.NilObjectID {
  23. return nil, NewError("参数不合法!")
  24. }
  25. hub.DbName = "queenmeshes"
  26. if len(hub.Thumbnail) < 1 {
  27. hub.Thumbnail = "https://gd1.alicdn.com/imgextra/i2/0/O1CN01BXPA5l1H9VvVhEQQ7_!!0-item_pic.jpg_400x400.jpg"
  28. }
  29. ret, err := bus.TreeAddDefineMeshpack("queenmeshes", apictx.User.Parent, hub.Name)
  30. if err != nil {
  31. return nil, err
  32. }
  33. hub.Host = ret.Host
  34. hub.DefineId = ret.DefineId
  35. hub.Collection = ret.Collection
  36. hub.DbId = ret.DbId
  37. return hub, nil
  38. },
  39. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  40. return &model.HubMesh{}
  41. },
  42. SearchFilter: func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  43. userId, _ := primitive.ObjectIDFromHex(apictx.User.Parent)
  44. return map[string]interface{}{"userId": userId}
  45. },
  46. JWT: true,
  47. SearchProject: []string{"name", "thumbnail", "createTime", "host", "dbid", "defineId"},
  48. DetailProject: []string{"name", "thumbnail", "createTime", "host", "dbid", "defineId"},
  49. Remove: func(c *gin.Context, apictx *ApiSession, id string) (interface{}, error) {
  50. hub := &model.HubMesh{}
  51. err := repo.RepoSeachDoc2(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: CollectionName, Query: repo.Map{"_id": id}}, hub)
  52. if err != nil {
  53. return nil, err
  54. }
  55. err = bus.TreeRemoveDefineMeshpack(hub.DbId, hub.DefineId)
  56. if err != nil {
  57. return nil, err
  58. }
  59. //todo queentree 添加删除状态
  60. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), CollectionName, id)
  61. },
  62. })
  63. }