service-queenter.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package api
  2. import (
  3. "fmt"
  4. "mats/bus"
  5. "mats/db/model"
  6. "mats/db/repo"
  7. "time"
  8. "github.com/gin-gonic/gin"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. )
  11. func RegQueenterApi(router *GinRouter) {
  12. //设备列表管理
  13. CollectionName := "queenters"
  14. CreateCRUD(router, "/queenter/device", &CRUDOption{
  15. Collection: CollectionName,
  16. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  17. hub := &model.DeviceQueenter{}
  18. c.ShouldBindJSON(hub)
  19. hub.CreateTime = time.Now()
  20. hub.UserId, _ = primitive.ObjectIDFromHex(apictx.User.Parent)
  21. if hub.UserId == primitive.NilObjectID {
  22. return nil, NewError("参数不合法!")
  23. }
  24. hub.Thumbnail = "https://sku3d-test.obs.cn-east-3.myhuaweicloud.com/avatar/queenter2.png"
  25. hub.Name = "Queenter4.0"
  26. count, err := repo.RepoCountDoc(apictx.CreateRepoCtx(), repo.CollectionQueenters, repo.Map{"userId": hub.UserId})
  27. if err != nil {
  28. return nil, err
  29. }
  30. if count < 1 {
  31. isDefault := true
  32. hub.IsDefaut = &isDefault
  33. }
  34. return hub, nil
  35. },
  36. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  37. return &model.DeviceQueenter{}
  38. },
  39. SearchFilter: func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  40. userId, _ := primitive.ObjectIDFromHex(apictx.User.Parent)
  41. return map[string]interface{}{"userId": userId}
  42. },
  43. JWT: true,
  44. SearchProject: []string{"name", "thumbnail", "createTime", "bindOutId", "isDefault", "uuid", "lastRunTime", "lastUploadTime"},
  45. Remove: func(c *gin.Context, apictx *ApiSession, id string) (interface{}, error) {
  46. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), CollectionName, id)
  47. },
  48. })
  49. //设备输出管理
  50. CollectionOutput := "queenter-outputs"
  51. CreateCRUD(router, "/queenter/output", &CRUDOption{
  52. Collection: CollectionOutput,
  53. NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  54. hub := &model.DeviceOutput{}
  55. c.ShouldBindJSON(hub)
  56. hub.CreateTime = time.Now()
  57. hub.UserId, _ = primitive.ObjectIDFromHex(apictx.User.Parent)
  58. if hub.UserId == primitive.NilObjectID {
  59. return nil, NewError("参数不合法!")
  60. }
  61. if hub.Type != "sku3d" && hub.Type != "queenmat" {
  62. return nil, NewError("type 只支持 sku3d, queenmat")
  63. }
  64. if hub.Type == "sku3d" {
  65. hub.Name = "sku3d账号"
  66. if len(hub.Thumbnail) < 1 {
  67. hub.Thumbnail = "https://sku3d-test.obs.cn-east-3.myhuaweicloud.com/usercenter/png/1660096358418mwS8hW_256.png"
  68. }
  69. } else if hub.Type == "queenmat" {
  70. hub.Name = "材质库"
  71. if len(hub.Thumbnail) < 1 {
  72. hub.Thumbnail = "https://sku3d-test.obs.cn-east-3.myhuaweicloud.com/avatar/queenter2.png"
  73. }
  74. }
  75. return hub, nil
  76. },
  77. EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
  78. return &model.DeviceOutput{}
  79. },
  80. SearchFilter: func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
  81. userId, _ := primitive.ObjectIDFromHex(apictx.User.Parent)
  82. return map[string]interface{}{"userId": userId}
  83. },
  84. JWT: true,
  85. SearchProject: []string{"name", "thumbnail", "type", "createTime", "queenMatId", "sku3dUserId"},
  86. Remove: func(c *gin.Context, apictx *ApiSession, id string) (interface{}, error) {
  87. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), CollectionOutput, id)
  88. },
  89. })
  90. router.POSTJWT("/queenter/ouput/sku3dinfo", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  91. body := &struct {
  92. LoginName string
  93. }{}
  94. c.ShouldBindJSON(body)
  95. if len(body.LoginName) < 1 {
  96. return nil, fmt.Errorf("sku3d账号不能为空")
  97. }
  98. user := &model.User{}
  99. err := bus.NatsCenter.RequestApi("user.op.info", &map[string]string{"loginName": body.LoginName}, 5*time.Second, user)
  100. if err != nil {
  101. return nil, err
  102. }
  103. return map[string]string{"name": user.Name, "avatar": user.Avatar, "id": user.Id.Hex()}, nil
  104. })
  105. }