service-upload-mat.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package api
  2. import (
  3. "assetcenter/db/model"
  4. "assetcenter/db/repo"
  5. "time"
  6. "github.com/gin-gonic/gin"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. )
  9. func CreateUserUploadMatRouter(router *GinRouter) {
  10. //上传2d面料
  11. router.POSTJWT("/upload/imgmat", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  12. body := &struct {
  13. Name string
  14. Category string
  15. Category2 string
  16. Image *model.OssType
  17. }{}
  18. c.ShouldBindJSON(&body)
  19. if body.Image == nil || len(body.Image.Url) < 1 {
  20. return nil, NewError("图片不能为空")
  21. }
  22. nopublic := false
  23. platform := true
  24. imgmat := &model.ImageMat{
  25. Category: body.Category,
  26. Category2: body.Category2,
  27. Name: "2d面料",
  28. IsPublic: &nopublic,
  29. Image: body.Image,
  30. Platform: &platform,
  31. CreateTime: time.Now(),
  32. State: model.LibState_Created,
  33. }
  34. imgmat.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  35. if len(body.Name) > 0 {
  36. imgmat.Name = body.Name
  37. }
  38. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionImageMat, imgmat)
  39. })
  40. //面料
  41. router.POSTJWT("/upload/fabric", func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  42. body := &struct {
  43. Name string
  44. Category string
  45. Category2 string
  46. Thumbnail *model.OssType
  47. }{}
  48. c.ShouldBindJSON(&body)
  49. if body.Thumbnail == nil || len(body.Thumbnail.Url) < 1 {
  50. return nil, NewError("封面不能为空")
  51. }
  52. public := false
  53. fabric := &model.Fabric{
  54. Category: body.Category,
  55. Category2: body.Category2,
  56. ColorCards: []*model.MaterialHeader{},
  57. Name: "面料1",
  58. Thumbnail: &model.OssType{Url: "", Size: 0},
  59. CreateTime: time.Now(),
  60. IsPublic: &public,
  61. Price: 0,
  62. State: model.LibState_Created,
  63. }
  64. fabric.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  65. if len(body.Name) > 0 {
  66. fabric.Name = body.Name
  67. }
  68. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionFabric, fabric)
  69. })
  70. }