123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790 |
- package api
- import (
- "assetcenter/bus"
- "assetcenter/conf"
- "assetcenter/db/model"
- "assetcenter/db/repo"
- "time"
- "github.com/gin-gonic/gin"
- "go.mongodb.org/mongo-driver/bson"
- "go.mongodb.org/mongo-driver/bson/primitive"
- "infish.cn/comm"
- )
- func UploadAsset2(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf) (interface{}, error) {
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- body.Source.ViewMode = "prod"
- if apictx.User != nil {
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- return UploadAssetPackage(apictx, dbConf, body)
- case model.AssetTypePackage:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- body.Source.ViewMode = "scene"
- if apictx.User != nil {
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- return UploadAssetPackage(apictx, dbConf, body)
- case model.AssetTypeEnv3d:
- body := &comm.AssetEnv3dHdr{}
- c.ShouldBindJSON(body)
- if apictx.User != nil {
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- return UploadEnv3d(apictx, dbConf, body)
- case model.AssetTypeMaterial:
- body := &comm.AssetMat{}
- c.ShouldBindJSON(body)
- if apictx.User != nil {
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- return UploadMaterial(apictx, dbConf, body)
- case model.AssetTypeMaterialGroup:
- body := &comm.AssetMatGroup{}
- err := c.ShouldBindJSON(body)
- if err != nil {
- return nil, err
- }
- if apictx.User != nil {
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- return UploadMaterialGroup(apictx, dbConf, body)
- case model.AssetTypeImage:
- body := &comm.AssetImage{}
- c.ShouldBindJSON(body)
- if apictx.User != nil {
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- return UploadImage(apictx, dbConf, body)
- }
- return nil, NewError("不支持的上传类型")
- }
- func PublicAssetList(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf) (interface{}, error) {
- page, size, query, fields := UtilQueryPageSize2(c)
- collectionName := dbConf.AssetConf.Collection
- err := bus.ParseCategories(query, apictx.CreateRepoCtx(), dbConf)
- if err != nil {
- return nil, err
- }
- project := []string{"name"}
- if dbConf.AssetConf.Type == model.AssetTypeMesh {
- project = []string{"name", "assetState", "source"}
- }
- if len(fields) > 0 {
- project = fields
- }
- out, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Page: page,
- Size: size,
- Query: query,
- Project: project,
- Sort: bson.M{"createTime": -1},
- })
- if err != nil {
- return nil, err
- }
- for _, item := range out.List {
- item["defineId"] = dbConf.AssetConf.Id
- }
- return out, nil
- }
- func AssetList(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf) (interface{}, error) {
- page, size, query, fields := UtilQueryPageSize2(c)
- collectionName := dbConf.AssetConf.Collection
- if query["userId"] != nil && len(query["userId"].(string)) > 0 {
- query["userId"], _ = primitive.ObjectIDFromHex(apictx.User.ID)
- }
- if query["ownerId"] != nil && len(query["ownerId"].(string)) > 0 {
- query["ownerId"], _ = primitive.ObjectIDFromHex(query["ownerId"].(string))
- }
- err := bus.ParseCategories(query, apictx.CreateRepoCtx(), dbConf)
- if err != nil {
- return nil, err
- }
- project := []string{"name"}
- assetType := dbConf.AssetConf.Type
- if assetType == model.AssetTypeMesh {
- project = []string{"name", "assetState", "source"}
- }
- if len(fields) > 0 {
- project = fields
- }
- var list interface{}
- if conf.AppConfig.IsSaveLocal() {
- if assetType == model.AssetTypePackage || assetType == model.AssetTypeMesh {
- list = []*comm.AssetPackage{}
- } else if assetType == model.AssetTypeMaterial {
- list = []*comm.AssetMat{}
- } else if assetType == model.AssetTypeMaterialGroup {
- list = []*comm.AssetMatGroup{}
- } else if assetType == model.AssetTypeImage {
- list = []*comm.AssetImage{}
- } else if assetType == model.AssetTypeEnv3d {
- list = []*comm.AssetEnv3dHdr{}
- }
- }
- if list != nil {
- out, err := repo.RepoPageSearchEntitys(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Page: page,
- Size: size,
- Query: query,
- Project: project,
- Sort: bson.M{"createTime": -1},
- List: &list,
- })
- if l, ok := list.([]*comm.AssetPackage); ok {
- for _, item := range l {
- item.UpdateSourceUrl(conf.AppConfig.GetSaveLocalUrl)
- }
- } else if l, ok := list.([]*comm.AssetMat); ok {
- for _, item := range l {
- item.UpdateSourceUrl(conf.AppConfig.GetSaveLocalUrl)
- }
- } else if l, ok := list.([]*comm.AssetMatGroup); ok {
- for _, item := range l {
- item.UpdateSourceUrl(conf.AppConfig.GetSaveLocalUrl)
- }
- } else if l, ok := list.([]*comm.AssetImage); ok {
- for _, item := range l {
- item.UpdateSourceUrl(conf.AppConfig.GetSaveLocalUrl)
- }
- } else if l, ok := list.([]*comm.AssetEnv3dHdr); ok {
- for _, item := range l {
- item.UpdateSourceUrl(conf.AppConfig.GetSaveLocalUrl)
- }
- }
- return out, err
- }
- out, err := repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Page: page,
- Size: size,
- Query: query,
- Project: project,
- Sort: bson.M{"createTime": -1},
- })
- if err != nil {
- return nil, err
- }
- for _, item := range out.List {
- item["defineId"] = dbConf.AssetConf.Id
- }
- return out, nil
- }
- func AssetDelete(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf, id string) (interface{}, error) {
- return repo.RepoDeleteDbDoc(apictx.CreateRepoCtx(), dbConf.Db.Name, dbConf.AssetConf.Collection, id)
- }
- func AssetCopy(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf, id string, toDbConf *comm.AssetDbConf, ownerId string, ownerType string, assetType string) (interface{}, error) {
- collectionName := dbConf.AssetConf.Collection
- var body model.IAsset
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- body = &comm.AssetPackage{}
- case model.AssetTypeEnv3d:
- body = &comm.AssetEnv3dHdr{}
- case model.AssetTypeMaterial:
- body = &comm.AssetMat{}
- case model.AssetTypeMaterialGroup:
- body = &comm.AssetMatGroup{}
- case model.AssetTypeImage:
- body = &comm.AssetImage{}
- case model.AssetTypePackage:
- body = &comm.AssetPackage{}
- }
- if body == nil {
- return nil, NewError("不支持的拷贝类型")
- }
- ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(),
- &repo.DocSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Query: repo.Map{"_id": id},
- }, body)
- if !ok {
- return nil, NewError("资产已删除!")
- }
- if err != nil {
- return nil, err
- }
- body.SetIdEmpty()
- body.ResetCreateTime()
- body.SetOwner(ownerId, ownerType)
- if len(assetType) > 0 {
- body.SetAssetType(assetType)
- }
- return repo.RepoDbAddDoc(apictx.CreateRepoCtx(), toDbConf.Db.Name, toDbConf.AssetConf.Collection, body)
- }
- func AssetCopy2My(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf, id string, toDbConf *comm.AssetDbConf, ownerId string, ownerType string, assetType string) (interface{}, error) {
- collectionName := dbConf.AssetConf.Collection
- var body model.IAsset
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- body = &comm.AssetPackage{}
- case model.AssetTypeEnv3d:
- body = &comm.AssetEnv3dHdr{}
- case model.AssetTypeMaterial:
- body = &comm.AssetMat{}
- case model.AssetTypeMaterialGroup:
- body = &comm.AssetMatGroup{}
- case model.AssetTypeImage:
- body = &comm.AssetImage{}
- case model.AssetTypePackage:
- body = &comm.AssetPackage{}
- }
- if body == nil {
- return nil, NewError("不支持的拷贝类型")
- }
- ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(),
- &repo.DocSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Query: repo.Map{"_id": id},
- }, body)
- if !ok {
- return nil, NewError("资产已删除!")
- }
- if err != nil {
- return nil, err
- }
- body.SetIdEmpty()
- body.ResetCreateTime()
- body.SetOwner(ownerId, ownerType)
- if len(assetType) > 0 {
- body.SetAssetType(assetType)
- }
- //todo fixme 设置用户自己的信息
- // info, err := bus.NatsCenter.GetUserInfo(apictx.User.ID)
- // if err != nil {
- // return nil, err
- // }
- //body.SetUserInfo(apictx.User.ID, &comm.AssetUserInfo{Name: info.Name, Thumbnail: &comm.OssType{Url: info.Avatar, Size: 0}})
- body.SetUserInfo(apictx.User.ID, nil)
- return repo.RepoDbAddDoc(apictx.CreateRepoCtx(), toDbConf.Db.Name, toDbConf.AssetConf.Collection, body)
- }
- type IAssetLocalable interface {
- UpdateSourceUrl(comm.UpdateUrlHandler)
- }
- func AssetDetail(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf, id string) (interface{}, error) {
- _, _, _, fields := UtilQueryPageSize2(c)
- collectionName := dbConf.AssetConf.Collection
- project := []string{"name", "thumbnail", "createTime", "assetType", "cusNum", "state", "categories", "cusCategories", "source", "assetState", "queenter", "userData"}
- if len(fields) > 0 {
- project = fields
- }
- if conf.AppConfig.IsSaveLocal() {
- var p IAssetLocalable
- aType := dbConf.AssetConf.Type
- if aType == model.AssetTypeMesh || aType == model.AssetTypePackage {
- p = &comm.AssetPackage{}
- } else if aType == model.AssetTypeMaterial {
- p = &comm.AssetMat{}
- } else if aType == model.AssetTypeMaterialGroup {
- p = &comm.AssetMatGroup{}
- } else if aType == model.AssetTypeImage {
- p = &comm.AssetImage{}
- } else if aType == model.AssetTypeEnv3d {
- p = &comm.AssetEnv3dHdr{}
- }
- if p != nil {
- ok, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Query: repo.Map{"_id": id},
- Project: project,
- }, p)
- if !ok {
- return nil, NewError("资产不存在!")
- }
- p.UpdateSourceUrl(conf.AppConfig.GetSaveLocalUrl)
- return p, err
- }
- }
- ok, body := repo.RepoSeachDocMap(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
- Db: dbConf.Db.Name,
- CollectName: collectionName,
- Query: repo.Map{"_id": id},
- Project: project,
- })
- if !ok {
- return nil, NewError("资产不存在!")
- }
- return body, nil
- }
- func AssetUpdateComm(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf) (interface{}, error) {
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- if body.Source != nil {
- body.Source.ViewMode = "prod"
- }
- return UpdateAssetPackageComm(apictx, dbConf, body)
- case model.AssetTypeEnv3d:
- body := &comm.AssetEnv3dHdr{}
- c.ShouldBindJSON(body)
- return UpdateHdrComm(apictx, dbConf, body)
- case model.AssetTypeMaterial:
- body := &comm.AssetMat{}
- c.ShouldBindJSON(body)
- return UpdateMaterialComm(apictx, dbConf, body)
- case model.AssetTypeMaterialGroup:
- body := &comm.AssetMatGroup{}
- c.ShouldBindJSON(body)
- return UpdateMaterialGroup(apictx, dbConf, body)
- case model.AssetTypeImage:
- body := &comm.AssetImage{}
- c.ShouldBindJSON(body)
- return UpdateImageComm(apictx, dbConf, body)
- case model.AssetTypePackage:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- if body.Source != nil {
- body.Source.ViewMode = "scene"
- }
- return UpdateAssetPackageComm(apictx, dbConf, body)
- }
- return nil, NewError("不支持的类型")
- }
- func AssetUpdateSource(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf) (interface{}, error) {
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- return UpdateAssetPackageSource(apictx, dbConf, body)
- case model.AssetTypePackage:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- return UpdateAssetPackageSource(apictx, dbConf, body)
- case model.AssetTypeEnv3d:
- body := &comm.AssetEnv3dHdr{}
- c.ShouldBindJSON(body)
- return UpdateHdrSource(apictx, dbConf, body)
- case model.AssetTypeMaterial:
- body := &comm.AssetMat{}
- c.ShouldBindJSON(body)
- return UpdateMaterialComm(apictx, dbConf, body)
- case model.AssetTypeMaterialGroup:
- body := &comm.AssetMatGroup{}
- c.ShouldBindJSON(body)
- return UpdateMaterialGroup(apictx, dbConf, body)
- case model.AssetTypeImage:
- body := &comm.AssetImage{}
- c.ShouldBindJSON(body)
- return UpdateImageSource(apictx, dbConf, body)
- }
- return nil, NewError("不支持的类型")
- }
- func InsertAsset(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf) (interface{}, error) {
- var asset interface{} = nil
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- case model.AssetTypePackage:
- body := &comm.AssetPackage{}
- c.ShouldBindJSON(body)
- body.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
- body.UpdateTime = time.Now()
- body.CreateTime = time.Now()
- body.Id = primitive.NilObjectID
- asset = body
- }
- if asset != nil {
- collectionName := dbConf.AssetConf.Collection
- return repo.RepoDbAddDoc(apictx.CreateRepoCtx(), dbConf.Db.Name, collectionName, asset)
- }
- return nil, NewError("不支持的类型")
- }
- func AssetProcess(c *gin.Context, apictx *ApiSession, dbConf *comm.AssetDbConf, id string) (interface{}, error) {
- switch dbConf.AssetConf.Type {
- case model.AssetTypeMesh:
- return ProcessPackage(apictx, dbConf, id)
- case model.AssetTypePackage:
- return ProcessPackage(apictx, dbConf, id)
- // case model.AssetTypeEnv3d:
- // return ProcessHdr(apictx, dbConf, id)
- }
- return nil, NewError("不支持的类型")
- }
- type AssetEvent struct {
- DefId string
- DbId string // 哪个资产库的统计表
- Api string
- }
- func CreateDatabaseAssetRouter(router *GinRouter) {
- //dbId的数据上传对应的资产库
- router.POSTJWT("/upload/:dbId/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbId")
- assetConfId := c.Param("assetConfId")
- if len(dbId) < 1 || len(assetConfId) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- ret, err := UploadAsset2(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf})
- if err != nil {
- return nil, err
- }
- bus.NatsCenter.PublishObj("asset.added", &AssetEvent{Api: "upload", DbId: dbId, DefId: assetConf.Id})
- return ret, nil
- })
- router.POSTJWT("/updatecomm/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- if len(dbId) < 1 || len(assetConfId) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetUpdateComm(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf})
- })
- router.POSTJWT("/updatesource/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- if len(dbId) < 1 || len(assetConfId) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetUpdateSource(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf})
- })
- //删除
- router.POSTJWT("/delete/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- id := c.Param("id")
- if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- ret, err := AssetDelete(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf}, id)
- if err != nil {
- return nil, err
- }
- bus.NatsCenter.PublishObj("asset.removed", &AssetEvent{Api: "upload", DbId: dbId, DefId: assetConf.Id})
- return ret, nil
- })
- //拷贝
- router.POSTJWT("/copy/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- id := c.Param("id")
- body := &struct {
- DbId string
- AssetType string
- DefineId string
- OwnerId string
- OwnerType string
- }{}
- err := c.ShouldBindJSON(body)
- if err != nil {
- return nil, err
- }
- if len(body.DbId) < 1 || len(body.DefineId) < 1 {
- return nil, NewError("目标库Id不合法")
- }
- if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- fromDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
- if fromDbConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- toDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), body.DbId, body.DefineId)
- if toDbConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetCopy(c, apictx, fromDbConf, id, toDbConf, body.OwnerId, body.OwnerType, body.AssetType)
- })
- router.POSTJWT("/insertById/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- id := c.Param("id")
- body := &struct {
- DbId string
- DefineId string
- OwnerId string
- OwnerType string
- AssetType string
- }{}
- err := c.ShouldBindJSON(body)
- if err != nil {
- return nil, err
- }
- if len(body.DbId) < 1 || len(body.DefineId) < 1 {
- return nil, NewError("目标库Id不合法")
- }
- if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- fromDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
- if fromDbConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- toDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), body.DbId, body.DefineId)
- if toDbConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetCopy2My(c, apictx, fromDbConf, id, toDbConf, body.OwnerId, body.OwnerType, body.AssetType)
- })
- //拷贝
- router.POSTJWT("/insert/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- toDbConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
- if toDbConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return InsertAsset(c, apictx, toDbConf)
- })
- //列表查询
- router.GETJWT("/list/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- if len(dbId) < 1 || len(assetConfId) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetList(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf})
- })
- //公开的列表查询
- router.GET("/public/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- if len(dbId) < 1 || len(assetConfId) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return PublicAssetList(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf})
- })
- //列表查询
- router.GET("/asset/:dbid/:assetConfId", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- if len(dbId) < 1 || len(assetConfId) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetList(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf})
- })
- //详情
- router.GET("/detail/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- id := c.Param("id")
- if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- assetConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
- if assetConf.AssetConf == nil || len(assetConf.Db.Name) < 1 {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetDetail(c, apictx, assetConf, id)
- })
- //资产处理
- router.POSTJWT("/process/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- id := c.Param("id")
- if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- db, assetConf := repo.GetDatabaseCollection(apictx.CreateRepoCtx(), dbId, assetConfId)
- if len(db.Name) < 1 || assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- return AssetProcess(c, apictx, &comm.AssetDbConf{Db: db, AssetConf: assetConf}, id)
- })
- //pack生成阴影
- router.POSTJWT("/processshadow/:dbid/:assetConfId/:id", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- dbId := c.Param("dbid")
- assetConfId := c.Param("assetConfId")
- id := c.Param("id")
- body := &struct {
- Scale int32
- Width int32
- }{}
- err := c.ShouldBindJSON(body)
- if err != nil {
- body.Scale = 15
- body.Width = 512
- }
- if body.Scale < 15 {
- return nil, NewError("scale需要>=15!")
- }
- if len(dbId) < 1 || len(assetConfId) < 1 || len(id) < 1 {
- return nil, NewError("数据Id不合法!")
- }
- assetConf := repo.GetDatabaseCollectionSimple(apictx.CreateRepoCtx(), dbId, assetConfId)
- if assetConf == nil {
- return nil, NewError("没有对应的资产定义!")
- }
- if assetConf.AssetConf.Type != model.AssetTypePackage && assetConf.AssetConf.Type != model.AssetTypeMesh {
- return nil, NewError("该类型不支持生成阴影!")
- }
- return ProcessPackageShadow(apictx, assetConf, id, body.Scale, body.Width)
- })
- // router.GETJWT("/team/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- // return UserAssetList(c, apictx, targetAsset)
- // })
- // router.GET("/platform/"+asset.Type+"/list", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
- // return UserAssetList(c, apictx, targetAsset)
- // })
- }
|