tree-asset-list.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. package bus
  2. import (
  3. "assetcenter/db"
  4. "assetcenter/db/repo"
  5. "assetcenter/tree"
  6. "strings"
  7. "context"
  8. "fmt"
  9. "time"
  10. "github.com/nats-io/nats.go"
  11. "go.mongodb.org/mongo-driver/bson"
  12. "go.mongodb.org/mongo-driver/bson/primitive"
  13. "infish.cn/comm"
  14. )
  15. type TreeListReq struct {
  16. DbName string
  17. Collection string
  18. Page int
  19. Size int
  20. Project []string
  21. Query map[string]interface{}
  22. }
  23. func RegTreeAssetList() *comm.NatsMsgReplyer {
  24. return &comm.NatsMsgReplyer{
  25. Subject: "tree.asset.list",
  26. Entity: func() interface{} { return &TreeListReq{} },
  27. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  28. req, ok := entity.(*TreeListReq)
  29. if !ok {
  30. return nil, fmt.Errorf("参数错误不是TreeListReq类型")
  31. }
  32. if len(req.DbName) < 1 || len(req.Collection) < 1 {
  33. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  34. }
  35. if req.Page == 0 {
  36. req.Page = 1
  37. }
  38. if req.Size == 0 {
  39. req.Size = 10
  40. }
  41. fmt.Println("tree.asset.list ==>: ", req.DbName, req.Collection)
  42. var CreateRepoCtx = func() *repo.RepoSession {
  43. return &repo.RepoSession{
  44. Ctx: context.Background(),
  45. Client: db.MongoClient,
  46. }
  47. }
  48. fmt.Println("list request query", req.Query)
  49. if req.Query["userId"] != nil {
  50. userId, ok := req.Query["userId"].(string)
  51. if ok {
  52. req.Query["userId"], _ = primitive.ObjectIDFromHex(userId)
  53. }
  54. }
  55. if req.Query["ownerId"] != nil && len(req.Query["ownerId"].(string)) > 0 {
  56. req.Query["ownerId"], _ = primitive.ObjectIDFromHex(req.Query["ownerId"].(string))
  57. }
  58. dbConf := &comm.AssetDbConf{}
  59. if req.Query["categories"] != nil {
  60. enity := &comm.Database{}
  61. ok, _ = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  62. CollectName: repo.CollectionDatabase,
  63. Query: repo.Map{"name": req.DbName},
  64. Project: []string{"categories"},
  65. }, enity)
  66. if !ok {
  67. return nil, fmt.Errorf("没有查询到数据库:%s", req.DbName)
  68. }
  69. dbConf.Db = enity
  70. }
  71. ctx := CreateRepoCtx()
  72. err := ParseCategories(req.Query, ctx, dbConf)
  73. if err != nil {
  74. return nil, err
  75. }
  76. return repo.RepoPageSearch(CreateRepoCtx(), &repo.PageSearchOptions{
  77. Db: req.DbName,
  78. CollectName: req.Collection,
  79. Page: int64(req.Page),
  80. Size: int64(req.Size),
  81. Query: req.Query,
  82. Project: req.Project,
  83. Sort: bson.M{"createTime": -1},
  84. })
  85. },
  86. }
  87. }
  88. type AssetInsertReq struct {
  89. DbName string
  90. Coll string
  91. Pack *comm.AssetPackage
  92. Mat3d *comm.AssetMatGroup
  93. Img *comm.AssetImage
  94. OtherMat *comm.AssetMat
  95. }
  96. type AssetInsertResp struct {
  97. Id string
  98. }
  99. func RegTreeAssetInsert() *comm.NatsMsgReplyer {
  100. return &comm.NatsMsgReplyer{
  101. Subject: "tree.asset.insert",
  102. Entity: func() interface{} { return &AssetInsertReq{} },
  103. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  104. req, ok := entity.(*AssetInsertReq)
  105. if !ok {
  106. return nil, fmt.Errorf("参数错误不是AssetInsertReq类型")
  107. }
  108. if len(req.DbName) < 1 || len(req.Coll) < 1 {
  109. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  110. }
  111. var CreateRepoCtx = func() *repo.RepoSession {
  112. return &repo.RepoSession{
  113. Ctx: context.Background(),
  114. Client: db.MongoClient,
  115. }
  116. }
  117. var insert interface{} = nil
  118. if req.Pack != nil {
  119. insert = req.Pack
  120. req.Pack.Id = primitive.NilObjectID
  121. req.Pack.CreateTime = time.Now()
  122. req.Pack.UpdateTime = time.Now()
  123. } else if req.Img != nil {
  124. insert = req.Img
  125. req.Img.Id = primitive.NilObjectID
  126. req.Img.CreateTime = time.Now()
  127. req.Img.UpdateTime = time.Now()
  128. } else if req.Mat3d != nil {
  129. insert = req.Mat3d
  130. req.Mat3d.Id = primitive.NilObjectID
  131. req.Mat3d.CreateTime = time.Now()
  132. req.Mat3d.UpdateTime = time.Now()
  133. } else if req.OtherMat != nil {
  134. insert = req.OtherMat
  135. req.OtherMat.Id = primitive.NilObjectID
  136. req.OtherMat.CreateTime = time.Now()
  137. req.OtherMat.UpdateTime = time.Now()
  138. } else {
  139. return nil, fmt.Errorf("不支持的类型")
  140. }
  141. fmt.Println("tree.asset.insert ==>: ", req.DbName, req.Coll)
  142. fmt.Println("tree.asset.insert req data==>: \n", req)
  143. id, err := repo.RepoDbAddDoc(CreateRepoCtx(), req.DbName, req.Coll, insert)
  144. return &AssetInsertResp{Id: id}, err
  145. },
  146. }
  147. }
  148. type TreeAssetReq struct {
  149. DbName string
  150. Coll string
  151. Id string
  152. }
  153. func RegTreeAssetPackDetail() *comm.NatsMsgReplyer {
  154. return &comm.NatsMsgReplyer{
  155. Subject: "tree.asset.scenepack.detail",
  156. Entity: func() interface{} { return &TreeAssetReq{} },
  157. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  158. req, ok := entity.(*TreeAssetReq)
  159. if !ok {
  160. return nil, fmt.Errorf("参数错误不是TreeAssetReq类型")
  161. }
  162. if len(req.DbName) < 1 || len(req.Coll) < 1 {
  163. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  164. }
  165. var CreateRepoCtx = func() *repo.RepoSession {
  166. return &repo.RepoSession{
  167. Ctx: context.Background(),
  168. Client: db.MongoClient,
  169. }
  170. }
  171. // out := &comm.AssetPackage{}
  172. // ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  173. // Db: req.DbName,
  174. // CollectName: req.Coll,
  175. // Query: repo.Map{"_id": req.Id},
  176. // }, out)
  177. // if !ok {
  178. // return nil, fmt.Errorf("没有对应的数据")
  179. // }
  180. // return out, err
  181. ok, ret := repo.RepoSeachDocMap(CreateRepoCtx(), &repo.DocSearchOptions{
  182. Db: req.DbName,
  183. CollectName: req.Coll,
  184. Query: repo.Map{"_id": req.Id},
  185. })
  186. if !ok {
  187. return nil, fmt.Errorf("没有对应的数据")
  188. }
  189. return ret, nil
  190. },
  191. }
  192. }
  193. func RegTreeAssetImageDetail() *comm.NatsMsgReplyer {
  194. return &comm.NatsMsgReplyer{
  195. Subject: "tree.asset.image.detail",
  196. Entity: func() interface{} { return &TreeAssetReq{} },
  197. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  198. req, ok := entity.(*TreeAssetReq)
  199. if !ok {
  200. return nil, fmt.Errorf("参数错误不是TreeAssetReq类型")
  201. }
  202. if len(req.DbName) < 1 || len(req.Coll) < 1 {
  203. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  204. }
  205. var CreateRepoCtx = func() *repo.RepoSession {
  206. return &repo.RepoSession{
  207. Ctx: context.Background(),
  208. Client: db.MongoClient,
  209. }
  210. }
  211. out := &comm.AssetImage{}
  212. ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  213. Db: req.DbName,
  214. CollectName: req.Coll,
  215. Query: repo.Map{"_id": req.Id},
  216. }, out)
  217. if !ok {
  218. return nil, fmt.Errorf("没有对应的数据")
  219. }
  220. return out, err
  221. },
  222. }
  223. }
  224. func RegTreeAssetMatgroupDetail() *comm.NatsMsgReplyer {
  225. return &comm.NatsMsgReplyer{
  226. Subject: "tree.asset.matgroup.detail",
  227. Entity: func() interface{} { return &TreeAssetReq{} },
  228. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  229. req, ok := entity.(*TreeAssetReq)
  230. if !ok {
  231. return nil, fmt.Errorf("参数错误不是TreeAssetReq类型")
  232. }
  233. if len(req.DbName) < 1 || len(req.Coll) < 1 {
  234. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  235. }
  236. var CreateRepoCtx = func() *repo.RepoSession {
  237. return &repo.RepoSession{
  238. Ctx: context.Background(),
  239. Client: db.MongoClient,
  240. }
  241. }
  242. out := &comm.AssetMatGroup{}
  243. ok, err := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  244. Db: req.DbName,
  245. CollectName: req.Coll,
  246. Query: repo.Map{"_id": req.Id},
  247. }, out)
  248. if !ok {
  249. return nil, fmt.Errorf("没有对应的数据")
  250. }
  251. return out, err
  252. },
  253. }
  254. }
  255. func RegTreeAssetDetail() *comm.NatsMsgReplyer {
  256. return &comm.NatsMsgReplyer{
  257. Subject: "tree.asset.detail",
  258. Entity: func() interface{} { return &TreeAssetReq{} },
  259. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  260. req, ok := entity.(*TreeAssetReq)
  261. if !ok {
  262. return nil, fmt.Errorf("参数错误不是TreeAssetReq类型")
  263. }
  264. if len(req.DbName) < 1 || len(req.Coll) < 1 || len(req.Id) < 1 {
  265. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  266. }
  267. var CreateRepoCtx = func() *repo.RepoSession {
  268. return &repo.RepoSession{
  269. Ctx: context.Background(),
  270. Client: db.MongoClient,
  271. }
  272. }
  273. // tree.asset.detail接口日志
  274. fmt.Println("[tree.asset.detail]: db:", req.DbName, "coll:", req.Coll, "id:", req.Id)
  275. ok, ret := repo.RepoSeachDocMap(CreateRepoCtx(), &repo.DocSearchOptions{
  276. Db: req.DbName,
  277. CollectName: req.Coll,
  278. Query: repo.Map{"_id": req.Id},
  279. })
  280. if !ok {
  281. return nil, fmt.Errorf("没有对应的数据")
  282. }
  283. return ret, nil
  284. },
  285. }
  286. }
  287. func RegTreeAssetRemove() *comm.NatsMsgReplyer {
  288. return &comm.NatsMsgReplyer{
  289. Subject: "tree.asset.remove",
  290. Entity: func() interface{} { return &TreeAssetReq{} },
  291. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  292. req, ok := entity.(*TreeAssetReq)
  293. if !ok {
  294. return nil, fmt.Errorf("参数错误不是TreeAssetReq类型")
  295. }
  296. if len(req.DbName) < 1 || len(req.Coll) < 1 || len(req.Id) < 1 {
  297. return nil, fmt.Errorf("DbName Collection AssetId 不能为空")
  298. }
  299. var CreateRepoCtx = func() *repo.RepoSession {
  300. return &repo.RepoSession{
  301. Ctx: context.Background(),
  302. Client: db.MongoClient,
  303. }
  304. }
  305. // 如果删除的时面料类型,则对应删除图片向量
  306. userId := ""
  307. if strings.Contains(req.Coll, "mat") {
  308. // 查询面料url
  309. result := map[string]interface{}{}
  310. found, _ := repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  311. Db: req.DbName,
  312. CollectName: req.Coll,
  313. Query: repo.Map{"_id": req.Id},
  314. Project: []string{"userId"},
  315. }, &result)
  316. if found {
  317. if u, ok := result["userId"]; ok {
  318. if _userId, ok := u.(primitive.ObjectID); ok {
  319. userId = _userId.Hex()
  320. }
  321. }
  322. }
  323. }
  324. fmt.Println("from mlivus remove: ", req.Coll, userId)
  325. _, err := repo.RepoDeleteDbDoc(CreateRepoCtx(), req.DbName, req.Coll, req.Id)
  326. // 成功删除
  327. if err != nil {
  328. if len(userId) > 0 {
  329. tableName := fmt.Sprintf("%s_%s", req.Coll, userId)
  330. // 删除向量数据库对应的图片
  331. go deleteImageToMlivus(tableName, req.Id)
  332. }
  333. }
  334. return nil, err
  335. },
  336. }
  337. }
  338. type UpdateCommReq struct {
  339. Pack *comm.AssetPackage
  340. OtherMat *comm.AssetMat
  341. Env3d *comm.AssetEnv3dHdr
  342. Mat3d *comm.AssetMatGroup
  343. Img *comm.AssetImage
  344. Coll string
  345. Db string
  346. }
  347. type CreateShadowReq struct {
  348. Width int
  349. Scale int
  350. Id string
  351. Coll string
  352. Db string
  353. }
  354. func RegTreeAssetUpdate() *comm.NatsMsgReplyer {
  355. return &comm.NatsMsgReplyer{
  356. Subject: "tree.asset.update.header",
  357. Entity: func() interface{} { return &UpdateCommReq{} },
  358. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  359. req, ok := entity.(*UpdateCommReq)
  360. if !ok {
  361. return nil, fmt.Errorf("参数错误不是UpdateCommReq类型")
  362. }
  363. if len(req.Db) < 1 || len(req.Coll) < 1 || (req.Pack == nil && req.Mat3d == nil && req.Img == nil) {
  364. return nil, fmt.Errorf("参数错误")
  365. }
  366. if req.Pack != nil {
  367. url, err := NatsCenter.RequestConfig("bus-network")
  368. if err != nil {
  369. return nil, err
  370. }
  371. req.Pack.UpdateTime = time.Now()
  372. // id := req.Pack.Id.Hex()
  373. // req.Pack.Id = primitive.NilObjectID
  374. // _, err := repo.RepoUpdateSeDbDoc(CreateRepoCtx(), req.Db, req.Coll, id, req.Pack)
  375. _, err = tree.UpdateAssetPackageHeader(CreateRepoCtx(), req.Db, req.Coll, req.Pack, url)
  376. return nil, err
  377. }
  378. if req.OtherMat != nil {
  379. id := req.OtherMat.Id.Hex()
  380. req.OtherMat.Id = primitive.NilObjectID
  381. _, err := repo.RepoUpdateSeDbDoc(CreateRepoCtx(), req.Db, req.Coll, id, req.OtherMat)
  382. return nil, err
  383. }
  384. if req.Env3d != nil {
  385. req.Env3d.UpdateTime = time.Now()
  386. id := req.Env3d.Id.Hex()
  387. req.Env3d.Id = primitive.NilObjectID
  388. _, err := repo.RepoUpdateSeDbDoc(CreateRepoCtx(), req.Db, req.Coll, id, req.Env3d)
  389. return nil, err
  390. }
  391. if req.Mat3d != nil {
  392. req.Mat3d.UpdateTime = time.Now()
  393. id := req.Mat3d.Id.Hex()
  394. req.Mat3d.Id = primitive.NilObjectID
  395. _, err := repo.RepoUpdateSeDbDoc(CreateRepoCtx(), req.Db, req.Coll, id, req.Mat3d)
  396. return nil, err
  397. }
  398. if req.Img != nil {
  399. req.Img.UpdateTime = time.Now()
  400. id := req.Img.Id.Hex()
  401. req.Img.Id = primitive.NilObjectID
  402. _, err := repo.RepoUpdateSeDbDoc(CreateRepoCtx(), req.Db, req.Coll, id, req.Img)
  403. return nil, err
  404. }
  405. return nil, fmt.Errorf("不支持的更新类型")
  406. },
  407. }
  408. }
  409. func RegTreeAssetPackProcess() *comm.NatsMsgReplyer {
  410. return &comm.NatsMsgReplyer{
  411. Subject: "tree.asset.pack.retreat",
  412. Entity: func() interface{} { return &UpdateCommReq{} },
  413. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  414. req, ok := entity.(*UpdateCommReq)
  415. if !ok {
  416. return nil, fmt.Errorf("参数错误不是UpdateCommReq类型")
  417. }
  418. if len(req.Db) < 1 || len(req.Coll) < 1 || req.Pack == nil {
  419. return nil, fmt.Errorf("参数错误")
  420. }
  421. var CreateRepoCtx = func() *repo.RepoSession {
  422. return &repo.RepoSession{
  423. Ctx: context.Background(),
  424. Client: db.MongoClient,
  425. }
  426. }
  427. url, err := NatsCenter.RequestConfig("bus-network")
  428. if err != nil {
  429. return nil, err
  430. }
  431. return nil, tree.ProcessPack(CreateRepoCtx(), req.Pack.Id.Hex(), req.Db, req.Coll, url)
  432. },
  433. }
  434. }
  435. func RegTreeAssetRecreateShadow() *comm.NatsMsgReplyer {
  436. return &comm.NatsMsgReplyer{
  437. Subject: "tree.asset.pack.reshadow",
  438. Entity: func() interface{} { return &CreateShadowReq{} },
  439. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  440. req, ok := entity.(*CreateShadowReq)
  441. if !ok {
  442. return nil, fmt.Errorf("参数错误不是CreateShadowReq类型")
  443. }
  444. if len(req.Db) < 1 || len(req.Coll) < 1 || len(req.Id) < 1 {
  445. return nil, fmt.Errorf("参数错误")
  446. }
  447. var CreateRepoCtx = func() *repo.RepoSession {
  448. return &repo.RepoSession{
  449. Ctx: context.Background(),
  450. Client: db.MongoClient,
  451. }
  452. }
  453. url, err := NatsCenter.RequestConfig("bus-network")
  454. if err != nil {
  455. return nil, err
  456. }
  457. return nil, tree.CreatePackShadow(CreateRepoCtx(), req.Id, req.Db, req.Coll, req.Scale, req.Width, url)
  458. },
  459. }
  460. }
  461. type AssetEvent struct {
  462. DefId string
  463. DbId string // 哪个资产库的统计表
  464. Api string
  465. }
  466. func RegTreeAssetCreate() *comm.NatsMsgReplyer {
  467. return &comm.NatsMsgReplyer{
  468. Subject: "tree.asset.create",
  469. Entity: func() interface{} { return &UpdateCommReq{} },
  470. Cb2: func(msg *nats.Msg, entity interface{}) (interface{}, error) {
  471. req, ok := entity.(*UpdateCommReq)
  472. if !ok {
  473. return nil, fmt.Errorf("参数错误不是UpdateCommReq类型")
  474. }
  475. if len(req.Db) < 1 || len(req.Coll) < 1 {
  476. return nil, fmt.Errorf("参数错误")
  477. }
  478. var CreateRepoCtx = func() *repo.RepoSession {
  479. return &repo.RepoSession{
  480. Ctx: context.Background(),
  481. Client: db.MongoClient,
  482. }
  483. }
  484. fmt.Println("tree.asset.create ==>: ", req.Db, req.Coll)
  485. fmt.Println("tree.asset.create req data==>: \n", req)
  486. url, err := NatsCenter.RequestConfig("bus-network")
  487. if err != nil {
  488. return nil, err
  489. }
  490. if req.Pack != nil {
  491. return tree.UploadAssetPackage(CreateRepoCtx(), req.Db, req.Coll, req.Pack, url)
  492. }
  493. if req.OtherMat != nil {
  494. return repo.RepoDbAddDoc(CreateRepoCtx(), req.Db, req.Coll, req.OtherMat)
  495. }
  496. if req.Env3d != nil {
  497. return repo.RepoDbAddDoc(CreateRepoCtx(), req.Db, req.Coll, req.Env3d)
  498. }
  499. if req.Mat3d != nil {
  500. matId, err := repo.RepoDbAddDoc(CreateRepoCtx(), req.Db, req.Coll, req.Mat3d)
  501. if err != nil {
  502. return "", err
  503. }
  504. // 上传成功存储对应封面图图片向量
  505. if len(req.Mat3d.Thumbnail.Url) > 0 {
  506. tableName := fmt.Sprintf("%s_%s", req.Coll, req.Mat3d.UserId.Hex())
  507. fmt.Println("upload to mlivus: ", tableName, req.Mat3d.Thumbnail.Url, matId)
  508. go uploadImageToMlivus(tableName, matId, req.Mat3d.Thumbnail.Url)
  509. }
  510. return matId, err
  511. }
  512. if req.Img != nil {
  513. return repo.RepoDbAddDoc(CreateRepoCtx(), req.Db, req.Coll, req.Img)
  514. }
  515. base := &comm.Database{}
  516. ok, _ = repo.RepoSeachDoc(CreateRepoCtx(), &repo.DocSearchOptions{
  517. CollectName: repo.CollectionDatabase,
  518. Query: repo.Map{"name": req.Db},
  519. Project: []string{"assets"},
  520. }, base)
  521. if ok {
  522. for _, v := range base.Assets {
  523. if v.Collection == req.Coll {
  524. NatsCenter.PublishObj("asset.added", &AssetEvent{Api: "upload", DbId: base.Id.Hex(), DefId: v.Id})
  525. break
  526. }
  527. }
  528. }
  529. return nil, fmt.Errorf("不支持的类型")
  530. },
  531. }
  532. }