libraryController.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. "iot_manager_service/app/multimedia/model"
  6. "iot_manager_service/app/multimedia/service"
  7. "iot_manager_service/util/common"
  8. "math"
  9. "net/http"
  10. "strconv"
  11. )
  12. var Library = new(libraryCtl)
  13. type libraryCtl struct{}
  14. func (c *libraryCtl) List(ctx *gin.Context) {
  15. searchValue := ctx.Query("searchValue")
  16. current, _ := strconv.Atoi(ctx.Query("current"))
  17. size, _ := strconv.Atoi(ctx.Query("size"))
  18. if current == 0 {
  19. current = 1
  20. }
  21. if size <= 0 || size > 100 {
  22. size = 10
  23. }
  24. value, _ := ctx.Get(middleware.Authorization)
  25. claims := value.(*middleware.Claims)
  26. libraries, err := service.LibraryService.List(claims.TenantId, searchValue, current, size)
  27. if err != nil {
  28. ctx.JSON(http.StatusOK, err)
  29. return
  30. }
  31. pages := math.Ceil(float64(len(libraries)) / float64(size))
  32. rsp := model.RsqLibraryList{
  33. Current: current,
  34. Size: size,
  35. Total: len(libraries),
  36. Pages: int(pages),
  37. Records: libraries,
  38. }
  39. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, rsp))
  40. }