securityController.go 609 B

1234567891011121314151617181920212223242526
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. "iot_manager_service/app/security/service"
  6. "iot_manager_service/util"
  7. "net/http"
  8. )
  9. // Security 安防
  10. var Security = new(securityCtl)
  11. type securityCtl struct{}
  12. func (c *securityCtl) GetCameraLiveList(ctx *gin.Context) {
  13. value, _ := ctx.Get(middleware.Authorization)
  14. claims := value.(*middleware.Claims)
  15. list, err := service.SecurityService.GetCameraLiveList(claims.TenantId)
  16. if err != nil {
  17. ctx.JSON(http.StatusOK, err)
  18. return
  19. }
  20. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Success, list))
  21. }