service-database-asset.go 23 KB

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