shape.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package api
  2. import (
  3. "cmf/db/model"
  4. "cmf/db/repo"
  5. "cmf/log"
  6. "errors"
  7. "time"
  8. "github.com/gin-gonic/gin"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. )
  11. func Shape(r *GinRouter) {
  12. r.POST("/shape/create", CreateShape)
  13. r.POST("/shape/delete/:id", DeleteShape)
  14. r.GET("/shape/list", ShapeList)
  15. r.GET("/shape/detail/:id", ShapeDetail)
  16. r.POST("/shape/update", UpdateShape)
  17. }
  18. func CreateShape(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  19. var shape model.Shape
  20. err := c.ShouldBindJSON(&shape)
  21. if err != nil {
  22. log.Error(err)
  23. return nil, err
  24. }
  25. shape.CreateTime = time.Now()
  26. shape.UpdateTime = time.Now()
  27. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionShape, &shape)
  28. }
  29. func DeleteShape(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  30. _id := c.Param("id")
  31. id, _ := primitive.ObjectIDFromHex(_id)
  32. if id.IsZero() {
  33. return nil, errors.New("id错误")
  34. }
  35. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionShape, _id)
  36. }
  37. func ShapeList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  38. page, size, query := UtilQueryPageSize(c)
  39. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  40. CollectName: repo.CollectionShape,
  41. Page: page,
  42. Size: size,
  43. Query: query,
  44. })
  45. }
  46. func ShapeDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  47. _id := c.Param("id")
  48. id, _ := primitive.ObjectIDFromHex(_id)
  49. if id.IsZero() {
  50. return nil, errors.New("id错误")
  51. }
  52. cate := &model.Shape{}
  53. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  54. CollectName: repo.CollectionShape,
  55. Query: repo.Map{"_id": id},
  56. }, cate)
  57. if err != nil {
  58. log.Error(err)
  59. return nil, err
  60. }
  61. if !found {
  62. return nil, errors.New("未找到该数据")
  63. }
  64. return cate, nil
  65. }
  66. func UpdateShape(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  67. var cate model.Shape
  68. err := c.ShouldBindJSON(&cate)
  69. if err != nil {
  70. log.Error(err)
  71. return nil, err
  72. }
  73. if cate.Id.IsZero() {
  74. return nil, errors.New("id错误")
  75. }
  76. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionShape, cate.Id.Hex(), &cate)
  77. }