asset-material.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package repo
  2. import (
  3. "errors"
  4. "mats/conf"
  5. "mats/db/model"
  6. "time"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. )
  9. type MaterialRepo struct {
  10. Conf *conf.AppAsset
  11. Model *model.AssetMaterial
  12. }
  13. func (repo *MaterialRepo) GetEntity() interface{} {
  14. return repo.Model
  15. }
  16. func (repo *MaterialRepo) Upload(ctx *RepoSession, userId string) (interface{}, error) {
  17. asset := repo.Model
  18. asset.CreateTime = time.Now()
  19. asset.UserId, _ = primitive.ObjectIDFromHex(userId)
  20. asset.UpdateTime = time.Now()
  21. asset.State = model.AssetState_Created
  22. collectionName := "asset-" + repo.Conf.Type
  23. assetId, err := RepoAddDoc(ctx, collectionName, asset)
  24. if err != nil {
  25. return nil, err
  26. }
  27. return assetId, err
  28. }
  29. func (repo *MaterialRepo) Update(ctx *RepoSession) (interface{}, error) {
  30. asset := repo.Model
  31. if len(asset.Id) < 1 {
  32. return nil, errors.New("id不能为空!")
  33. }
  34. id := asset.Id.Hex()
  35. asset.Id = primitive.NilObjectID
  36. asset.UpdateTime = time.Now()
  37. collectionName := "asset-" + repo.Conf.Type
  38. return RepoUpdateSetDoc(ctx, collectionName, id, asset)
  39. }
  40. func (repo *MaterialRepo) Detail(ctx *RepoSession, id string) (interface{}, error) {
  41. collectionName := "asset-" + repo.Conf.Type
  42. ok, ret := RepoSeachDocMap(ctx, &DocSearchOptions{
  43. CollectName: collectionName,
  44. Query: Map{"_id": id},
  45. })
  46. if !ok {
  47. return nil, errors.New("数据不存在!")
  48. }
  49. return ret, nil
  50. }