service-asset.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. package api
  2. import (
  3. "assetcenter/conf"
  4. "assetcenter/db/model"
  5. "assetcenter/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. const (
  11. CategoyScopeGlobal = "global"
  12. CategoyScopeQiye = "qiye"
  13. )
  14. func AssetProfile(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  15. var floatv float32 = 1
  16. profile := map[string]interface{}{
  17. "name": apictx.Svc.Conf.Name,
  18. "version": apictx.Svc.Conf.Version,
  19. "saveType": apictx.Svc.Conf.SaveType,
  20. "assets": apictx.Svc.Conf.Assets,
  21. "category": apictx.Svc.Conf.Category,
  22. "assetConf": map[string]interface{}{
  23. "decorate": &model.AssetDecorateMesh{
  24. Components: []*model.MeshMatConf{
  25. &model.MeshMatConf{
  26. Name: "xx",
  27. Index: 1,
  28. Material: &model.MatConfig{},
  29. },
  30. },
  31. },
  32. "texture": &model.AssetTexture{},
  33. "env3d": &model.Env3d{},
  34. "material": model.AssetMaterial{
  35. Config: &model.MatConfig{
  36. Uvtransform: &model.MaterailUv{},
  37. CullFace: "",
  38. Version: 1,
  39. Type: "default",
  40. Albedo: &model.MatTextureColor{Color: &model.Vect3{}, Texture: &model.OssType{}, UseTexture: BoolValue(true)},
  41. Roughness: &model.MatTextureFactor{Texture: &model.OssType{}, Factor: &floatv},
  42. Normal: &model.MatNormal{Texture: &model.OssType{}, Factor: &floatv},
  43. Metalness: &model.MatTextureFactor{Texture: &model.OssType{}, Factor: &floatv},
  44. Opacity: &model.MatTextureFactorWithEnable{Enable: *BoolValue(false), Factor: &floatv, Texture: &model.OssType{}},
  45. Specular: &model.MatTextureColor{Color: &model.Vect3{}, Texture: &model.OssType{}, UseTexture: BoolValue(true)},
  46. },
  47. },
  48. "boxtpl": &model.Boxtpl{Components: []*model.BoxtplComponent{
  49. &model.BoxtplComponent{
  50. UV: &model.BoxtplCompUv{},
  51. },
  52. }},
  53. },
  54. }
  55. return profile, nil
  56. }
  57. func UploadAsset(c *gin.Context, apictx *ApiSession, asset *conf.AppAsset) (interface{}, error) {
  58. body := repo.RepoAssetCreateDefaultValue(asset)
  59. if body == nil {
  60. return nil, NewError("不支持的上传类型")
  61. }
  62. c.ShouldBindJSON(body.GetEntity())
  63. return body.Upload(apictx.CreateRepoCtx(), apictx.User.ID)
  64. }
  65. func UpdateAsset(c *gin.Context, apictx *ApiSession, asset *conf.AppAsset) (interface{}, error) {
  66. body := repo.RepoAssetCreateDefaultValue(asset)
  67. if body == nil {
  68. return nil, NewError("不支持的资产类型")
  69. }
  70. c.ShouldBindJSON(body.GetEntity())
  71. return body.Update(apictx.CreateRepoCtx())
  72. }
  73. func DetailAsset(c *gin.Context, apictx *ApiSession, asset *conf.AppAsset) (interface{}, error) {
  74. id := c.Param("id")
  75. body := repo.RepoAssetCreateDefaultValue(asset)
  76. if body == nil {
  77. return nil, NewError("不支持的资产类型")
  78. }
  79. c.ShouldBindJSON(body.GetEntity())
  80. return body.Detail(apictx.CreateRepoCtx(), id)
  81. }
  82. func RemoveAsset(c *gin.Context, apictx *ApiSession, asset *conf.AppAsset) (interface{}, error) {
  83. body := &struct {
  84. Id string
  85. }{}
  86. c.ShouldBindJSON(body)
  87. collectionName := "asset-" + asset.Type
  88. if len(body.Id) < 1 {
  89. return nil, NewError("id不能为空!")
  90. }
  91. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), collectionName, body.Id)
  92. }
  93. func UpdateAssetState(c *gin.Context, apictx *ApiSession, asset *conf.AppAsset) (interface{}, error) {
  94. body := &struct {
  95. Id string
  96. State int
  97. }{}
  98. c.ShouldBindJSON(body)
  99. collectionName := "asset-" + asset.Type
  100. if len(body.Id) < 1 {
  101. return nil, NewError("id不能为空!")
  102. }
  103. return repo.RepoUpdateSetDocProps(apictx.CreateRepoCtx(), collectionName, body.Id, bson.M{"$set": bson.M{"state": body.State}})
  104. }
  105. func UserAssetList(c *gin.Context, apictx *ApiSession, asset *conf.AppAsset) (interface{}, error) {
  106. page, size, query, fields := UtilQueryPageSize2(c)
  107. uid, _ := primitive.ObjectIDFromHex(apictx.User.ID)
  108. query["userId"] = uid
  109. collectionName := "asset-" + asset.Type
  110. // ParseCategories(query, apictx)
  111. project := []string{"name", "thumbnail", "createTime", "state", "categories", "meshState", "images", "file", "osgjs"}
  112. if len(fields) > 0 {
  113. project = fields
  114. }
  115. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  116. CollectName: collectionName,
  117. Page: page,
  118. Size: size,
  119. Query: query,
  120. Project: project,
  121. Sort: bson.M{"createTime": -1},
  122. })
  123. }
  124. func CreateAssetRouter(router *GinRouter) {
  125. assets := conf.AppConfig.Assets
  126. if len(assets) < 1 {
  127. return
  128. }
  129. for _, asset := range assets {
  130. targetAsset := &conf.AppAsset{Type: asset.Type, Name: asset.Name, IsMesh: asset.IsMesh, IsImage: asset.IsImage, DefaultCategory: asset.DefaultCategory}
  131. router.POSTJWT("/upload/"+asset.Type, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  132. return UploadAsset(c, apictx, targetAsset)
  133. })
  134. router.POSTJWT("/update/"+asset.Type, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  135. return UpdateAsset(c, apictx, targetAsset)
  136. })
  137. router.POSTJWT(asset.Type+"/state", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  138. return UpdateAssetState(c, apictx, targetAsset)
  139. })
  140. router.GET(asset.Type+"/detail/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  141. return DetailAsset(c, apictx, targetAsset)
  142. })
  143. router.POSTJWT("/delete/"+asset.Type, func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  144. return RemoveAsset(c, apictx, targetAsset)
  145. })
  146. router.GETJWT("/user/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  147. return UserAssetList(c, apictx, targetAsset)
  148. })
  149. router.GETJWT("/team/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  150. return UserAssetList(c, apictx, targetAsset)
  151. })
  152. router.GET("/platform/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  153. return UserAssetList(c, apictx, targetAsset)
  154. })
  155. }
  156. }