service-project.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package api
  2. import (
  3. "sku3dweb/db/model"
  4. "sku3dweb/db/repo"
  5. "time"
  6. "github.com/gin-gonic/gin"
  7. "go.mongodb.org/mongo-driver/bson/primitive"
  8. )
  9. func ServiceProjectCreate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  10. body := &struct {
  11. Name string
  12. }{}
  13. err := c.ShouldBindJSON(body)
  14. if err != nil {
  15. return nil, NewError("参数解析错误")
  16. }
  17. if len(body.Name) < 1 {
  18. return nil, NewError("名称不能为空")
  19. }
  20. project := &model.Project{
  21. Name: body.Name,
  22. CreateTime: time.Now(),
  23. Products: []*model.Product{},
  24. Scenes: []*model.Scene{},
  25. }
  26. project.UserId, _ = primitive.ObjectIDFromHex(apictx.User.ID)
  27. return repo.AddProject(apictx.CreateRepoCtx(), project)
  28. }
  29. func ServiceProjectList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  30. page, size, query := UtilQueryPageSize(c)
  31. if query == nil {
  32. query = map[string]interface{}{}
  33. }
  34. query["userId"], _ = primitive.ObjectIDFromHex(apictx.User.ID)
  35. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  36. CollectName: repo.CollectionProject,
  37. Page: page,
  38. Size: size,
  39. Query: query,
  40. Project: []string{"name", "thumbnail", "createTime"},
  41. })
  42. }
  43. func ServiceProjectDelete(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  44. id := c.Param("id")
  45. if len(id) < 1 {
  46. return nil, NewError("参数不能为空")
  47. }
  48. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionProject, id)
  49. }