securityController.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. edgeService "iot_manager_service/app/security/edge_service"
  6. "iot_manager_service/app/security/service"
  7. "iot_manager_service/util/common"
  8. "net/http"
  9. "strconv"
  10. )
  11. // TODO: 未记录日志
  12. var Security = new(securityCtl)
  13. type securityCtl struct{}
  14. func (c *securityCtl) GetCameraLiveList(ctx *gin.Context) {
  15. value, _ := ctx.Get(middleware.Authorization)
  16. claims := value.(*middleware.Claims)
  17. list, err := service.SecurityService.GetCameraLiveList(claims.TenantId)
  18. if err != nil {
  19. ctx.JSON(http.StatusOK, err)
  20. return
  21. }
  22. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, list))
  23. }
  24. func (c *securityCtl) Operate(ctx *gin.Context) {
  25. code := ctx.Query("code")
  26. name := ctx.Query("name")
  27. atoi, _ := strconv.Atoi(ctx.Query("direction"))
  28. speed, _ := strconv.Atoi(ctx.Query("speed"))
  29. vidiconService := edgeService.ForVidiconService{}
  30. operate, err := vidiconService.Operate(code, name, atoi, speed)
  31. if err != nil {
  32. ctx.JSON(http.StatusOK, err)
  33. }
  34. if !operate {
  35. ctx.JSON(http.StatusOK, nil)
  36. return
  37. }
  38. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  39. }
  40. func (c *securityCtl) Ptzhome(ctx *gin.Context) {
  41. code := ctx.Query("sn")
  42. name := ctx.Query("name")
  43. flag, _ := strconv.Atoi(ctx.Query("flag"))
  44. vidiconService := edgeService.ForVidiconService{}
  45. operate, err := vidiconService.Ptzhome(code, name, flag)
  46. if err != nil {
  47. ctx.JSON(http.StatusOK, err)
  48. }
  49. if !operate {
  50. ctx.JSON(http.StatusOK, nil)
  51. return
  52. }
  53. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, nil))
  54. }