gallery.go 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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"
  10. "go.mongodb.org/mongo-driver/bson/primitive"
  11. )
  12. func Gallery(r *GinRouter) {
  13. r.POSTJWT("/gallery/create", CreateGallery)
  14. r.POSTJWT("/gallery/delete/:id", DeleteGallery)
  15. r.GETJWT("/gallery/list", GalleryList)
  16. r.GETJWT("/gallery/detail/:id", GalleryDetail)
  17. r.POSTJWT("/gallery/update", UpdateGallery)
  18. }
  19. func CreateGallery(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  20. var gallery model.Gallery
  21. err := c.ShouldBindJSON(&gallery)
  22. if err != nil {
  23. log.Error(err)
  24. return nil, err
  25. }
  26. gallery.CreateTime = time.Now()
  27. gallery.UpdateTime = time.Now()
  28. return repo.RepoAddDoc(apictx.CreateRepoCtx(), repo.CollectionGallery, &gallery)
  29. }
  30. func DeleteGallery(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  31. _id := c.Param("id")
  32. id, _ := primitive.ObjectIDFromHex(_id)
  33. if id.IsZero() {
  34. return nil, errors.New("id错误")
  35. }
  36. return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionGallery, _id)
  37. }
  38. func GalleryList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  39. page, size, query := UtilQueryPageSize(c)
  40. return repo.RepoPageSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{
  41. CollectName: repo.CollectionGallery,
  42. Page: page,
  43. Size: size,
  44. Query: query,
  45. Sort: bson.M{"createTime": -1},
  46. })
  47. }
  48. func GalleryDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  49. _id := c.Param("id")
  50. id, _ := primitive.ObjectIDFromHex(_id)
  51. if id.IsZero() {
  52. return nil, errors.New("id错误")
  53. }
  54. gallery := &model.Gallery{}
  55. found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
  56. CollectName: repo.CollectionGallery,
  57. Query: repo.Map{"_id": id},
  58. }, gallery)
  59. if err != nil {
  60. log.Error(err)
  61. return nil, err
  62. }
  63. if !found {
  64. return nil, errors.New("未找到该数据")
  65. }
  66. return gallery, nil
  67. }
  68. func UpdateGallery(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  69. var gallery model.Gallery
  70. err := c.ShouldBindJSON(&gallery)
  71. if err != nil {
  72. log.Error(err)
  73. return nil, err
  74. }
  75. if gallery.Id.IsZero() {
  76. return nil, errors.New("id错误")
  77. }
  78. return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionGallery, gallery.Id.Hex(), &gallery)
  79. }