asset-env3d.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package repo
  2. import (
  3. "errors"
  4. "mats/conf"
  5. "mats/db/model"
  6. "time"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. )
  9. type AssetEnv3dRepo struct {
  10. Conf *conf.AppAsset
  11. Model *model.Env3d
  12. }
  13. func (repo *AssetEnv3dRepo) GetEntity() interface{} {
  14. return repo.Model
  15. }
  16. func (repo *AssetEnv3dRepo) Upload(ctx *RepoSession, userId string) (interface{}, error) {
  17. asset := repo.Model
  18. if asset.HDR == nil || asset.HDR.Size < 1 || len(asset.HDR.Url) < 1 {
  19. return nil, errors.New("模型文件不能为空")
  20. }
  21. asset.CreateTime = time.Now()
  22. asset.UserId, _ = primitive.ObjectIDFromHex(userId)
  23. asset.UpdateTime = time.Now()
  24. asset.State = model.AssetState_Created
  25. collectionName := "asset-" + repo.Conf.Type
  26. assetId, err := RepoAddDoc(ctx, collectionName, asset)
  27. if err != nil {
  28. return nil, err
  29. }
  30. _, err = CreateHdrConverterTask(ctx, asset.HDR, assetId, collectionName, userId)
  31. if err != nil { //模型转换失败,删除对应的模型
  32. RepoDeleteDoc(ctx, collectionName, assetId)
  33. return nil, err
  34. }
  35. return assetId, err
  36. }
  37. func (repo *AssetEnv3dRepo) Update(ctx *RepoSession) (interface{}, error) {
  38. asset := repo.Model
  39. if len(asset.Id) < 1 {
  40. return nil, errors.New("id不能为空!")
  41. }
  42. id := asset.Id.Hex()
  43. asset.Id = primitive.NilObjectID
  44. asset.UpdateTime = time.Now()
  45. collectionName := "asset-" + repo.Conf.Type
  46. return RepoUpdateSetDoc(ctx, collectionName, id, asset)
  47. }
  48. func (repo *AssetEnv3dRepo) Detail(ctx *RepoSession, id string) (interface{}, error) {
  49. collectionName := "asset-" + repo.Conf.Type
  50. ok, ret := RepoSeachDocMap(ctx, &DocSearchOptions{
  51. CollectName: collectionName,
  52. Query: Map{"_id": id},
  53. Project: []string{"name", "createTime", "updateTime", "state", "thumbnail", "config"},
  54. })
  55. if !ok {
  56. return nil, errors.New("数据为空!")
  57. }
  58. return ret, nil
  59. }