lightRecordController.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/record/dao"
  5. "iot_manager_service/app/record/service"
  6. "iot_manager_service/util/common"
  7. "math"
  8. "net/http"
  9. "strconv"
  10. )
  11. var LightRecord = new(lightRecordCtl)
  12. type lightRecordCtl struct{}
  13. type LightRecordRespose struct {
  14. Records []dao.LightRecord `json:"records"` //记录列表
  15. Current int `json:"current"` //当前分页
  16. Size int `json:"size"` //每页数量
  17. Total int `json:"total"` //总数
  18. Pages int `json:"pages"` //总页数
  19. }
  20. func (c *lightRecordCtl) List(ctx *gin.Context) {
  21. searchValue := ctx.Query("searchValue")
  22. start := ctx.Query("queryStartTime")
  23. end := ctx.Query("queryEndTime")
  24. groupId := ctx.Query("groupId")
  25. current, _ := strconv.Atoi(ctx.Query("current"))
  26. size, _ := strconv.Atoi(ctx.Query("size"))
  27. if current == 0 {
  28. current = 1
  29. }
  30. if size <= 0 || size > 100 {
  31. size = 10
  32. }
  33. id := -1
  34. if groupId != "" {
  35. id, _ = strconv.Atoi(groupId)
  36. }
  37. records, err := service.LightRecordService.List(searchValue, start, end, id, current, size)
  38. if err != nil {
  39. ctx.JSON(http.StatusOK, err)
  40. return
  41. }
  42. pages := math.Ceil(float64(len(records)) / float64(size))
  43. rsp := LightRecordRespose{
  44. Current: current,
  45. Size: size,
  46. Total: len(records),
  47. Pages: int(pages),
  48. Records: records,
  49. }
  50. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  51. }
  52. // refresh 同步亮灯记录
  53. func (c *lightRecordCtl) Refresh(ctx *gin.Context) {
  54. recordService := service.LightRecordService
  55. go func() {
  56. recordService.Refresh()
  57. }()
  58. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  59. }
  60. func (c *lightRecordCtl) Detail(ctx *gin.Context) {
  61. id, _ := strconv.Atoi(ctx.Query("id"))
  62. record, err := service.LightRecordService.Detail(id)
  63. if err != nil {
  64. ctx.JSON(http.StatusOK, err)
  65. return
  66. }
  67. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, record))
  68. }