rewindController.go 655 B

12345678910111213141516171819202122232425262728
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. edgeService "iot_manager_service/app/security/edge_service"
  5. "iot_manager_service/util/common"
  6. "net/http"
  7. )
  8. // TODO: 未记录日志
  9. var Rewind = new(rewindCtl)
  10. type rewindCtl struct{}
  11. func (c rewindCtl) RewindText(ctx *gin.Context) {
  12. streamId := ctx.Query("streamId")
  13. date := ctx.Query("date")
  14. edgeService := edgeService.ForRewindService{}
  15. operate, err := edgeService.GetRewindText(streamId, date)
  16. if err != nil {
  17. ctx.JSON(http.StatusOK, err)
  18. }
  19. if operate == "" {
  20. ctx.JSON(http.StatusOK, nil)
  21. return
  22. }
  23. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, operate))
  24. }