1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- "iot_manager_service/app/device/service"
- "iot_manager_service/app/middleware"
- "iot_manager_service/util"
- "net/http"
- )
- // 工作台管理对象
- var Workbench = new(workbenchCtl)
- type workbenchCtl struct{}
- func (c *workbenchCtl) CountDevice(ctx *gin.Context) {
- value, isExist := ctx.Get(middleware.Authorization)
- if !isExist || value == nil {
- ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
- }
- devices, err := service.WorkbenchService.CountDevice(value.(*middleware.JwtToken).TenantId)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, devices))
- }
- func (c *workbenchCtl) CountAlarm(ctx *gin.Context) {
- value, isExist := ctx.Get(middleware.Authorization)
- if !isExist || value == nil {
- ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
- }
- alarms, err := service.WorkbenchService.CountAlarm(value.(*middleware.JwtToken).TenantId)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
- }
- func (c *workbenchCtl) Aqi(ctx *gin.Context) {
- value, isExist := ctx.Get(middleware.Authorization)
- if !isExist || value == nil {
- ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
- }
- alarms, err := service.WorkbenchService.CountAlarm(value.(*middleware.JwtToken).TenantId)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
- }
|