service-database-asset.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. package api
  2. import (
  3. "mats/db/model"
  4. "mats/db/repo"
  5. "time"
  6. "github.com/gin-gonic/gin"
  7. "go.mongodb.org/mongo-driver/bson"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. "infish.cn/comm"
  10. )
  11. func UploadAsset2(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf) (interface{}, error) {
  12. switch dbConf.AssetConf.Type {
  13. case model.AssetTypeMesh:
  14. body := &model.AssetPackage{}
  15. c.ShouldBindJSON(body)
  16. body.Source.ViewMode = "prod"
  17. if apictx.User != nil {
  18. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  19. }
  20. return UploadAssetPackage(apictx, dbConf, body)
  21. case model.AssetTypePackage:
  22. body := &model.AssetPackage{}
  23. c.ShouldBindJSON(body)
  24. body.Source.ViewMode = "scene"
  25. if apictx.User != nil {
  26. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  27. }
  28. return UploadAssetPackage(apictx, dbConf, body)
  29. case model.AssetTypeEnv3d:
  30. body := &model.AssetEnv3dHdr{}
  31. c.ShouldBindJSON(body)
  32. if apictx.User != nil {
  33. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  34. }
  35. return UploadEnv3d(apictx, dbConf, body)
  36. case model.AssetTypeMaterial:
  37. body := &comm.AssetMat{}
  38. c.ShouldBindJSON(body)
  39. if apictx.User != nil {
  40. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  41. }
  42. return UploadMaterial(apictx, dbConf, body)
  43. case model.AssetTypeMaterialGroup:
  44. body := &comm.AssetMatGroup{}
  45. err := c.ShouldBindJSON(body)
  46. if err != nil {
  47. return nil, err
  48. }
  49. if apictx.User != nil {
  50. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  51. }
  52. return UploadMaterialGroup(apictx, dbConf, body)
  53. case model.AssetTypeImage:
  54. body := &model.AssetImage{}
  55. c.ShouldBindJSON(body)
  56. if apictx.User != nil {
  57. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  58. }
  59. return UploadImage(apictx, dbConf, body)
  60. }
  61. return nil, NewError("不支持的上传类型")
  62. }
  63. func PublicAssetList(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf) (interface{}, error) {
  64. page, size, query, fields := UtilQueryPageSize2(c)
  65. collectionName := dbConf.AssetConf.Collection
  66. err := ParseCategories(query, apictx, dbConf)
  67. if err != nil {
  68. return nil, err
  69. }
  70. project := []string{"name"}
  71. if dbConf.AssetConf.Type == model.AssetTypeMesh {
  72. project = []string{"name", "assetState", "source"}
  73. }
  74. if len(fields) > 0 {
  75. project = fields
  76. }
  77. out, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  78. Db: dbConf.Db.Name,
  79. CollectName: collectionName,
  80. Page: page,
  81. Size: size,
  82. Query: query,
  83. Project: project,
  84. Sort: bson.M{"createTime": -1},
  85. })
  86. if err != nil {
  87. return nil, err
  88. }
  89. for _, item := range out.List {
  90. item["defineId"] = dbConf.AssetConf.Id
  91. }
  92. return out, nil
  93. }
  94. func AssetList(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf) (interface{}, error) {
  95. page, size, query, fields := UtilQueryPageSize2(c)
  96. collectionName := dbConf.AssetConf.Collection
  97. if query["userId"] != nil && len(query["userId"].(string)) > 0 {
  98. query["userId"], _ = primitive.ObjectIDFromHex(apictx.User.ID)
  99. }
  100. if query["ownerId"] != nil && len(query["ownerId"].(string)) > 0 {
  101. query["ownerId"], _ = primitive.ObjectIDFromHex(query["ownerId"].(string))
  102. }
  103. err := ParseCategories(query, apictx, dbConf)
  104. if err != nil {
  105. return nil, err
  106. }
  107. project := []string{"name"}
  108. if dbConf.AssetConf.Type == model.AssetTypeMesh {
  109. project = []string{"name", "assetState", "source"}
  110. }
  111. if len(fields) > 0 {
  112. project = fields
  113. }
  114. out, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  115. Db: dbConf.Db.Name,
  116. CollectName: collectionName,
  117. Page: page,
  118. Size: size,
  119. Query: query,
  120. Project: project,
  121. Sort: bson.M{"createTime": -1},
  122. })
  123. if err != nil {
  124. return nil, err
  125. }
  126. for _, item := range out.List {
  127. item["defineId"] = dbConf.AssetConf.Id
  128. }
  129. return out, nil
  130. }
  131. func AssetDelete(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf, id string) (interface{}, error) {
  132. return repo.RepoDeleteDbDoc(apictx.CreateRepoCtx(), dbConf.Db.Name, dbConf.AssetConf.Collection, id)
  133. }
  134. func AssetCopy(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf, id string, toDbConf *model.AssetDbConf, ownerId string, ownerType string, assetType string) (interface{}, error) {
  135. collectionName := dbConf.AssetConf.Collection
  136. var body model.IAsset
  137. switch dbConf.AssetConf.Type {
  138. case model.AssetTypeMesh:
  139. body = &model.AssetPackage{}
  140. case model.AssetTypeEnv3d:
  141. body = &model.AssetEnv3dHdr{}
  142. case model.AssetTypeMaterial:
  143. body = &comm.AssetMat{}
  144. case model.AssetTypeMaterialGroup:
  145. body = &comm.AssetMatGroup{}
  146. case model.AssetTypeImage:
  147. body = &model.AssetImage{}
  148. case model.AssetTypePackage:
  149. body = &model.AssetPackage{}
  150. }
  151. if body == nil {
  152. return nil, NewError("不支持的拷贝类型")
  153. }
  154. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(),
  155. &repo.DocSearchOptions{
  156. Db: dbConf.Db.Name,
  157. CollectName: collectionName,
  158. Query: repo.Map{"_id": id},
  159. }, body)
  160. if !ok {
  161. return nil, NewError("资产已删除!")
  162. }
  163. if err != nil {
  164. return nil, err
  165. }
  166. body.SetIdEmpty()
  167. body.ResetCreateTime()
  168. body.SetOwner(ownerId, ownerType)
  169. if len(assetType) > 0 {
  170. body.SetAssetType(assetType)
  171. }
  172. return repo.RepoDbAddDoc(apictx.CreateRepoCtx(), toDbConf.Db.Name, toDbConf.AssetConf.Collection, body)
  173. }
  174. func AssetCopy2My(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf, id string, toDbConf *model.AssetDbConf, ownerId string, ownerType string, assetType string) (interface{}, error) {
  175. collectionName := dbConf.AssetConf.Collection
  176. var body model.IAsset
  177. switch dbConf.AssetConf.Type {
  178. case model.AssetTypeMesh:
  179. body = &model.AssetPackage{}
  180. case model.AssetTypeEnv3d:
  181. body = &model.AssetEnv3dHdr{}
  182. case model.AssetTypeMaterial:
  183. body = &comm.AssetMat{}
  184. case model.AssetTypeMaterialGroup:
  185. body = &comm.AssetMatGroup{}
  186. case model.AssetTypeImage:
  187. body = &model.AssetImage{}
  188. case model.AssetTypePackage:
  189. body = &model.AssetPackage{}
  190. }
  191. if body == nil {
  192. return nil, NewError("不支持的拷贝类型")
  193. }
  194. ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(),
  195. &repo.DocSearchOptions{
  196. Db: dbConf.Db.Name,
  197. CollectName: collectionName,
  198. Query: repo.Map{"_id": id},
  199. }, body)
  200. if !ok {
  201. return nil, NewError("资产已删除!")
  202. }
  203. if err != nil {
  204. return nil, err
  205. }
  206. body.SetIdEmpty()
  207. body.ResetCreateTime()
  208. body.SetOwner(ownerId, ownerType)
  209. if len(assetType) > 0 {
  210. body.SetAssetType(assetType)
  211. }
  212. //todo fixme 设置用户自己的信息
  213. // info, err := bus.NatsCenter.GetUserInfo(apictx.User.ID)
  214. // if err != nil {
  215. // return nil, err
  216. // }
  217. //body.SetUserInfo(apictx.User.ID, &comm.AssetUserInfo{Name: info.Name, Thumbnail: &comm.OssType{Url: info.Avatar, Size: 0}})
  218. body.SetUserInfo(apictx.User.ID, nil)
  219. return repo.RepoDbAddDoc(apictx.CreateRepoCtx(), toDbConf.Db.Name, toDbConf.AssetConf.Collection, body)
  220. }
  221. func AssetDetail(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf, id string) (interface{}, error) {
  222. _, _, _, fields := UtilQueryPageSize2(c)
  223. collectionName := dbConf.AssetConf.Collection
  224. project := []string{"name", "thumbnail", "createTime", "assetType", "cusNum", "state", "categories", "cusCategories", "source", "assetState", "userData"}
  225. if len(fields) > 0 {
  226. project = fields
  227. }
  228. ok, body := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  229. Db: dbConf.Db.Name,
  230. CollectName: collectionName,
  231. Query: repo.Map{"_id": id},
  232. Project: project,
  233. })
  234. if !ok {
  235. return nil, NewError("资产不存在!")
  236. }
  237. return body, nil
  238. }
  239. func AssetUpdateComm(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf) (interface{}, error) {
  240. switch dbConf.AssetConf.Type {
  241. case model.AssetTypeMesh:
  242. body := &model.AssetPackage{}
  243. c.ShouldBindJSON(body)
  244. body.Source.ViewMode = "prod"
  245. return UpdateAssetPackageComm(apictx, dbConf, body)
  246. case model.AssetTypeEnv3d:
  247. body := &model.AssetEnv3dHdr{}
  248. c.ShouldBindJSON(body)
  249. return UpdateHdrComm(apictx, dbConf, body)
  250. case model.AssetTypeMaterial:
  251. body := &comm.AssetMat{}
  252. c.ShouldBindJSON(body)
  253. return UpdateMaterialComm(apictx, dbConf, body)
  254. case model.AssetTypeMaterialGroup:
  255. body := &comm.AssetMatGroup{}
  256. c.ShouldBindJSON(body)
  257. return UpdateMaterialGroup(apictx, dbConf, body)
  258. case model.AssetTypeImage:
  259. body := &model.AssetImage{}
  260. c.ShouldBindJSON(body)
  261. return UpdateImageComm(apictx, dbConf, body)
  262. case model.AssetTypePackage:
  263. body := &model.AssetPackage{}
  264. c.ShouldBindJSON(body)
  265. if body.Source != nil {
  266. body.Source.ViewMode = "scene"
  267. }
  268. return UpdateAssetPackageComm(apictx, dbConf, body)
  269. }
  270. return nil, NewError("不支持的类型")
  271. }
  272. func AssetUpdateSource(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf) (interface{}, error) {
  273. switch dbConf.AssetConf.Type {
  274. case model.AssetTypeMesh:
  275. body := &model.AssetPackage{}
  276. c.ShouldBindJSON(body)
  277. return UpdateAssetPackageSource(apictx, dbConf, body)
  278. case model.AssetTypePackage:
  279. body := &model.AssetPackage{}
  280. c.ShouldBindJSON(body)
  281. return UpdateAssetPackageSource(apictx, dbConf, body)
  282. case model.AssetTypeEnv3d:
  283. body := &model.AssetEnv3dHdr{}
  284. c.ShouldBindJSON(body)
  285. return UpdateHdrSource(apictx, dbConf, body)
  286. case model.AssetTypeMaterial:
  287. body := &comm.AssetMat{}
  288. c.ShouldBindJSON(body)
  289. return UpdateMaterialComm(apictx, dbConf, body)
  290. case model.AssetTypeMaterialGroup:
  291. body := &comm.AssetMatGroup{}
  292. c.ShouldBindJSON(body)
  293. return UpdateMaterialGroup(apictx, dbConf, body)
  294. case model.AssetTypeImage:
  295. body := &model.AssetImage{}
  296. c.ShouldBindJSON(body)
  297. return UpdateImageSource(apictx, dbConf, body)
  298. }
  299. return nil, NewError("不支持的类型")
  300. }
  301. func InsertAsset(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf) (interface{}, error) {
  302. var asset interface{} = nil
  303. switch dbConf.AssetConf.Type {
  304. case model.AssetTypeMesh:
  305. case model.AssetTypePackage:
  306. body := &model.AssetPackage{}
  307. c.ShouldBindJSON(body)
  308. body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  309. body.UpdateTime = time.Now()
  310. body.CreateTime = time.Now()
  311. body.Id = primitive.NilObjectID
  312. asset = body
  313. }
  314. if asset != nil {
  315. collectionName := dbConf.AssetConf.Collection
  316. return repo.RepoDbAddDoc(apictx.CreateRepoCtx(), dbConf.Db.Name, collectionName, asset)
  317. }
  318. return nil, NewError("不支持的类型")
  319. }
  320. func AssetProcess(c *gin.Context, apictx *ApiSession, dbConf *model.AssetDbConf, id string) (interface{}, error) {
  321. switch dbConf.AssetConf.Type {
  322. case model.AssetTypeMesh:
  323. return ProcessPackage(apictx, dbConf, id)
  324. case model.AssetTypePackage:
  325. return ProcessPackage(apictx, dbConf, id)
  326. // case model.AssetTypeEnv3d:
  327. // return ProcessHdr(apictx, dbConf, id)
  328. }
  329. return nil, NewError("不支持的类型")
  330. }
  331. func CreateDatabaseAssetRouter(router *GinRouter) {
  332. //dbId的数据上传对应的资产库
  333. router.POSTJWT("/upload/:dbId/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  334. dbId := c.Param("dbId")
  335. assetConfId := c.Param("assetConfId")
  336. if len(dbId) < 1 || len(assetConfId) < 1 {
  337. return nil, NewError("数据Id不合法!")
  338. }
  339. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  340. if len(db.Name) < 1 || assetConf == nil {
  341. return nil, NewError("没有对应的资产定义!")
  342. }
  343. return UploadAsset2(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf})
  344. })
  345. router.POSTJWT("/updatecomm/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  346. dbId := c.Param("dbid")
  347. assetConfId := c.Param("assetConfId")
  348. if len(dbId) < 1 || len(assetConfId) < 1 {
  349. return nil, NewError("数据Id不合法!")
  350. }
  351. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  352. if len(db.Name) < 1 || assetConf == nil {
  353. return nil, NewError("没有对应的资产定义!")
  354. }
  355. return AssetUpdateComm(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf})
  356. })
  357. router.POSTJWT("/updatesource/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  358. dbId := c.Param("dbid")
  359. assetConfId := c.Param("assetConfId")
  360. if len(dbId) < 1 || len(assetConfId) < 1 {
  361. return nil, NewError("数据Id不合法!")
  362. }
  363. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  364. if len(db.Name) < 1 || assetConf == nil {
  365. return nil, NewError("没有对应的资产定义!")
  366. }
  367. return AssetUpdateSource(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf})
  368. })
  369. //删除
  370. router.POSTJWT("/delete/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  371. dbId := c.Param("dbid")
  372. assetConfId := c.Param("assetConfId")
  373. id := c.Param("id")
  374. if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
  375. return nil, NewError("数据Id不合法!")
  376. }
  377. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  378. if len(db.Name) < 1 || assetConf == nil {
  379. return nil, NewError("没有对应的资产定义!")
  380. }
  381. return AssetDelete(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf}, id)
  382. })
  383. //拷贝
  384. router.POSTJWT("/copy/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  385. dbId := c.Param("dbid")
  386. assetConfId := c.Param("assetConfId")
  387. id := c.Param("id")
  388. body := &struct {
  389. DbId string
  390. AssetType string
  391. DefineId string
  392. OwnerId string
  393. OwnerType string
  394. }{}
  395. err := c.ShouldBindJSON(body)
  396. if err != nil {
  397. return nil, err
  398. }
  399. if len(body.DbId) < 1 || len(body.DefineId) < 1 {
  400. return nil, NewError("目标库Id不合法")
  401. }
  402. if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
  403. return nil, NewError("数据Id不合法!")
  404. }
  405. fromDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
  406. if fromDbConf == nil {
  407. return nil, NewError("没有对应的资产定义!")
  408. }
  409. toDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), body.DbId, body.DefineId)
  410. if toDbConf == nil {
  411. return nil, NewError("没有对应的资产定义!")
  412. }
  413. return AssetCopy(c, apictx, fromDbConf, id, toDbConf, body.OwnerId, body.OwnerType, body.AssetType)
  414. })
  415. router.POSTJWT("/insertById/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  416. dbId := c.Param("dbid")
  417. assetConfId := c.Param("assetConfId")
  418. id := c.Param("id")
  419. body := &struct {
  420. DbId string
  421. DefineId string
  422. OwnerId string
  423. OwnerType string
  424. AssetType string
  425. }{}
  426. err := c.ShouldBindJSON(body)
  427. if err != nil {
  428. return nil, err
  429. }
  430. if len(body.DbId) < 1 || len(body.DefineId) < 1 {
  431. return nil, NewError("目标库Id不合法")
  432. }
  433. if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
  434. return nil, NewError("数据Id不合法!")
  435. }
  436. fromDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
  437. if fromDbConf == nil {
  438. return nil, NewError("没有对应的资产定义!")
  439. }
  440. toDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), body.DbId, body.DefineId)
  441. if toDbConf == nil {
  442. return nil, NewError("没有对应的资产定义!")
  443. }
  444. return AssetCopy2My(c, apictx, fromDbConf, id, toDbConf, body.OwnerId, body.OwnerType, body.AssetType)
  445. })
  446. //拷贝
  447. router.POSTJWT("/insert/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  448. dbId := c.Param("dbid")
  449. assetConfId := c.Param("assetConfId")
  450. toDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
  451. if toDbConf == nil {
  452. return nil, NewError("没有对应的资产定义!")
  453. }
  454. return InsertAsset(c, apictx, toDbConf)
  455. })
  456. //列表查询
  457. router.GETJWT("/list/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  458. dbId := c.Param("dbid")
  459. assetConfId := c.Param("assetConfId")
  460. if len(dbId) < 1 || len(assetConfId) < 1 {
  461. return nil, NewError("数据Id不合法!")
  462. }
  463. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  464. if len(db.Name) < 1 || assetConf == nil {
  465. return nil, NewError("没有对应的资产定义!")
  466. }
  467. return AssetList(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf})
  468. })
  469. //公开的列表查询
  470. router.GET("/public/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  471. dbId := c.Param("dbid")
  472. assetConfId := c.Param("assetConfId")
  473. if len(dbId) < 1 || len(assetConfId) < 1 {
  474. return nil, NewError("数据Id不合法!")
  475. }
  476. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  477. if len(db.Name) < 1 || assetConf == nil {
  478. return nil, NewError("没有对应的资产定义!")
  479. }
  480. return PublicAssetList(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf})
  481. })
  482. //列表查询
  483. router.GET("/asset/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  484. dbId := c.Param("dbid")
  485. assetConfId := c.Param("assetConfId")
  486. if len(dbId) < 1 || len(assetConfId) < 1 {
  487. return nil, NewError("数据Id不合法!")
  488. }
  489. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  490. if len(db.Name) < 1 || assetConf == nil {
  491. return nil, NewError("没有对应的资产定义!")
  492. }
  493. return AssetList(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf})
  494. })
  495. //详情
  496. router.GET("/detail/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  497. dbId := c.Param("dbid")
  498. assetConfId := c.Param("assetConfId")
  499. id := c.Param("id")
  500. if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
  501. return nil, NewError("数据Id不合法!")
  502. }
  503. assetConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
  504. if assetConf.AssetConf == nil || len(assetConf.Db.Name) < 1 {
  505. return nil, NewError("没有对应的资产定义!")
  506. }
  507. return AssetDetail(c, apictx, assetConf, id)
  508. })
  509. //资产处理
  510. router.POSTJWT("/process/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  511. dbId := c.Param("dbid")
  512. assetConfId := c.Param("assetConfId")
  513. id := c.Param("id")
  514. if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
  515. return nil, NewError("数据Id不合法!")
  516. }
  517. db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
  518. if len(db.Name) < 1 || assetConf == nil {
  519. return nil, NewError("没有对应的资产定义!")
  520. }
  521. return AssetProcess(c, apictx, &model.AssetDbConf{Db: db, AssetConf: assetConf}, id)
  522. })
  523. //pack生成阴影
  524. router.POSTJWT("/processshadow/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  525. dbId := c.Param("dbid")
  526. assetConfId := c.Param("assetConfId")
  527. id := c.Param("id")
  528. body := &struct {
  529. Scale int32
  530. Width int32
  531. }{}
  532. err := c.ShouldBindJSON(body)
  533. if err != nil {
  534. body.Scale = 15
  535. body.Width = 512
  536. }
  537. if body.Scale < 15 {
  538. return nil, NewError("scale需要>=15!")
  539. }
  540. if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
  541. return nil, NewError("数据Id不合法!")
  542. }
  543. assetConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
  544. if assetConf == nil {
  545. return nil, NewError("没有对应的资产定义!")
  546. }
  547. if assetConf.AssetConf.Type != model.AssetTypePackage && assetConf.AssetConf.Type != model.AssetTypeMesh {
  548. return nil, NewError("该类型不支持生成阴影!")
  549. }
  550. return ProcessPackageShadow(apictx, assetConf, id, body.Scale, body.Width)
  551. })
  552. // router.GETJWT("/team/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  553. // return UserAssetList(c, apictx, targetAsset)
  554. // })
  555. // router.GET("/platform/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  556. // return UserAssetList(c, apictx, targetAsset)
  557. // })
  558. }
  559. type IteChildren func(n *comm.CategoryNode) []string
  560. type FindChild func(n *comm.CategoryNode, id string) []string
  561. func FindCategoryIds(c *comm.DbCategory, parents []string) []string {
  562. out := []string{}
  563. var allChildren IteChildren
  564. allChildren = func(n *comm.CategoryNode) []string {
  565. ids := []string{}
  566. if n == nil {
  567. return ids
  568. }
  569. ids = append(ids, n.Id)
  570. if n.Children != nil {
  571. for _, c := range n.Children {
  572. cids := allChildren(c)
  573. if len(cids) > 0 {
  574. ids = append(ids, cids...)
  575. }
  576. }
  577. }
  578. return ids
  579. }
  580. var findChildrens FindChild
  581. findChildrens = func(n *comm.CategoryNode, id string) []string {
  582. ids := []string{}
  583. if n == nil {
  584. return ids
  585. }
  586. if n.Id == id {
  587. ids = allChildren(n)
  588. return ids
  589. }
  590. if n.Children == nil {
  591. return ids
  592. }
  593. //查找孩子节点
  594. for _, c := range n.Children {
  595. ids = findChildrens(c, id)
  596. if len(ids) > 0 {
  597. break
  598. }
  599. }
  600. return ids
  601. }
  602. for _, v := range parents {
  603. for _, catnode := range c.Categories {
  604. extends := findChildrens(catnode, v)
  605. if len(extends) > 0 {
  606. out = append(out, extends...)
  607. break
  608. }
  609. }
  610. }
  611. return out
  612. }
  613. func ParseCategories(query map[string]interface{}, apictx *ApiSession, dbConf *model.AssetDbConf) error {
  614. filters := []bson.M{}
  615. keyfilters := []bson.M{}
  616. //keyword
  617. if query["keyword"] != nil {
  618. keyword := query["keyword"].(string)
  619. if len(keyword) > 0 {
  620. keyfilters = append(keyfilters, bson.M{"name": bson.M{"$regex": keyword, "$options": "$i"}})
  621. keyfilters = append(keyfilters, bson.M{"cusNum": bson.M{"$regex": keyword, "$options": "$i"}})
  622. filters = append(filters, bson.M{"$or": keyfilters})
  623. }
  624. query["keyword"] = nil
  625. }
  626. if query["cusCategories"] != nil && query["cateId"] != nil {
  627. categories := query["categories"].([]interface{})
  628. cateId := query["cateId"].(string)
  629. //查询所有子内容
  630. if len(categories) > 0 {
  631. cateConf := &comm.DbCategory{}
  632. filterCaties := []string{}
  633. //查询用户的
  634. ok, _ := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{CollectName: repo.CollectionCategories, Query: repo.Map{"_id": cateId}}, cateConf)
  635. if !ok {
  636. return NewError("cate get error")
  637. }
  638. for _, c := range categories {
  639. filterCaties = append(filterCaties, c.(string))
  640. }
  641. extends := FindCategoryIds(cateConf, filterCaties)
  642. if len(extends) > 0 {
  643. filter := bson.M{"categories": bson.M{"$elemMatch": bson.M{"$in": extends}}}
  644. filters = append(filters, filter)
  645. }
  646. }
  647. query["cusCategories"] = nil
  648. query["cateId"] = nil
  649. }
  650. if query["categories"] != nil && dbConf.Db.Categories != nil {
  651. categories := query["categories"].([]interface{})
  652. //查询所有子内容
  653. if len(categories) > 0 {
  654. cateConf := dbConf.Db.Categories
  655. filterCaties := []string{}
  656. for _, c := range categories {
  657. filterCaties = append(filterCaties, c.(string))
  658. }
  659. extends := FindCategoryIds(cateConf, filterCaties)
  660. if len(extends) > 0 {
  661. filter := bson.M{"categories": bson.M{"$elemMatch": bson.M{"$in": extends}}}
  662. filters = append(filters, filter)
  663. }
  664. }
  665. query["categories"] = nil
  666. }
  667. if len(filters) > 0 {
  668. query["$and"] = filters
  669. }
  670. return nil
  671. }