hdr.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package bus
  2. import (
  3. "assetcenter/db/model"
  4. )
  5. type ConvHdrResult struct {
  6. AssetId string `json:"assetId"`
  7. DbId string `json:"dbId"`
  8. Table string `json:"table"`
  9. FileUrl string `json:"meshUrl"`
  10. Env3d *Env3d `bson:"env3d,omitempty" json:"env3d"` //模型文件字段名字
  11. }
  12. type Env3d struct {
  13. Thumbnail *model.OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  14. HDR string `bson:"hdr,omitempty" json:"hdr"`
  15. Config *model.Evn3dHdrConf `bson:"config,omitempty" json:"config"`
  16. }
  17. // func CreateHdrResultWather(app *conf.AppConf) *comm.NatsStreamWather {
  18. // topics := strings.Split(app.Nats.HdrConvStreamTopic, "#")
  19. // return &comm.NatsStreamWather{
  20. // Stream: topics[0],
  21. // Topic: topics[1],
  22. // Queue: topics[2],
  23. // Entity: func() interface{} { return &ConvHdrResult{} },
  24. // Cb: func(msg *nats.Msg, entity interface{}) {
  25. // result := entity.(*ConvHdrResult)
  26. // //保存osgjs
  27. // if result.Env3d == nil || len(result.DbId) < 1 || len(result.Table) < 1 {
  28. // msg.AckSync()
  29. // return
  30. // }
  31. // err := RepoHrResult(result)
  32. // if err != nil {
  33. // msg.Nak()
  34. // return
  35. // }
  36. // msg.AckSync()
  37. // },
  38. // }
  39. // }
  40. // !hdr 没用上
  41. // func RepoHrResult(data *ConvHdrResult) error {
  42. // // 查询源资源文档,是否存在config.source
  43. // // 存在,下载源source文件,更新对应模型路径后上传到原本位置
  44. // assetConfig := &comm.AssetEnv3dHdr{}
  45. // _, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  46. // Db: data.DbId,
  47. // CollectName: data.Table,
  48. // Query: repo.Map{"_id": data.AssetId},
  49. // Project: []string{"config"},
  50. // }, assetConfig)
  51. // if err != nil {
  52. // fmt.Printf("%#v/n", data)
  53. // fmt.Println("查询资源错误", err)
  54. // return err
  55. // }
  56. // update := bson.M{}
  57. // update["thumbnail"] = data.Env3d.Thumbnail
  58. // if assetConfig.Config != nil && len(assetConfig.Config.Source) > 0 {
  59. // assetConfigSource := assetConfig.Config.Source
  60. // if !strings.Contains(assetConfigSource, "http:") || !strings.Contains(assetConfigSource, "https:") {
  61. // assetConfigSource = fmt.Sprintf("%s%s", "https:", assetConfigSource)
  62. // }
  63. // // 下载
  64. // source, err := comm.DownloadToSourceHdrMap(assetConfigSource)
  65. // if err != nil {
  66. // fmt.Println("下载source文件出错:", err)
  67. // return err
  68. // }
  69. // // 修改文件
  70. // source["config"] = data.Env3d.Config
  71. // // 转换为json
  72. // newSource, err := json.Marshal(source)
  73. // if err != nil {
  74. // fmt.Println("newSource json文件出错:", err)
  75. // return err
  76. // }
  77. // bucketName := conf.AppConfig.Obs.Bucket
  78. // client, err := CreateObsClient()
  79. // if err != nil {
  80. // fmt.Println("create huawei client 出错:", err)
  81. // return err
  82. // }
  83. // obsKey, err := comm.ParseUrl(assetConfig.Config.Source)
  84. // if err != nil {
  85. // fmt.Println("get obsKey 出错:", err)
  86. // return err
  87. // }
  88. // obsret := UploadFile(client, bucketName, obsKey, newSource)
  89. // if obsret.Size < 0 {
  90. // fmt.Println("obs 上传出错")
  91. // return errors.New("obs 上传出错")
  92. // }
  93. // fmt.Printf("上传结果: %#v\n", obsret)
  94. // update["assetState"] = model.AssetState_Succ
  95. // } else {
  96. // update["source.config"] = data.Env3d.Config
  97. // update["assetState"] = model.AssetState_Succ
  98. // }
  99. // ret, err := repo.RepoUpdateSetDbDocProps(CreateRepoCtx(), data.DbId, data.Table, data.AssetId, bson.M{"$set": update})
  100. // fmt.Println("updated hdr=>", ret)
  101. // return err
  102. // }