asset-texture.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package repo
  2. import (
  3. "assetcenter/conf"
  4. "assetcenter/db/model"
  5. "errors"
  6. "time"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. )
  9. type AssetTextureRepo struct {
  10. Conf *conf.AppAsset
  11. Model *model.AssetTexture
  12. }
  13. func (repo *AssetTextureRepo) GetEntity() interface{} {
  14. return repo.Model
  15. }
  16. func (repo *AssetTextureRepo) Upload(ctx *RepoSession, userId string) (interface{}, error) {
  17. asset := repo.Model
  18. if asset.Image == nil || len(asset.Image.Url) < 0 || len(asset.Name) < 0 {
  19. return nil, errors.New("图片或名称不能为空!")
  20. }
  21. asset.CreateTime = time.Now()
  22. asset.UserId, _ = primitive.ObjectIDFromHex(userId)
  23. asset.UpdateTime = time.Now()
  24. asset.State = model.AssetState_Created
  25. collectionName := "asset-" + repo.Conf.Type
  26. return RepoAddDoc(ctx, collectionName, asset)
  27. }
  28. func (repo *AssetTextureRepo) Update(ctx *RepoSession) (interface{}, error) {
  29. asset := repo.Model
  30. if len(asset.Id) < 1 {
  31. return nil, errors.New("id不能为空!")
  32. }
  33. id := asset.Id.Hex()
  34. asset.Id = primitive.NilObjectID
  35. asset.UpdateTime = time.Now()
  36. collectionName := "asset-" + repo.Conf.Type
  37. return RepoUpdateSetDoc(ctx, collectionName, id, asset)
  38. }
  39. func (repo *AssetTextureRepo) Detail(ctx *RepoSession, id string) (interface{}, error) {
  40. return nil, errors.New("no impl")
  41. }