package controller import ( "github.com/gin-gonic/gin" "iot_manager_service/app/device/model" "iot_manager_service/app/device/service" "iot_manager_service/util" "math" "net/http" "strconv" ) // CLight 照明策略 var LightStrategy = new(lightStrategyCtl) type lightStrategyCtl struct{} func (c *lightStrategyCtl) Detail(ctx *gin.Context) { id, e := strconv.Atoi(ctx.Query("id")) if e != nil { ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil)) return } device, err := service.CameraService.Get(id) if err != nil { ctx.JSON(http.StatusOK, err) return } ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, device)) } func (c *lightStrategyCtl) List(ctx *gin.Context) { searchValue := ctx.Query("searchValue") cameraType := ctx.Query("cameraType") current, _ := strconv.Atoi(ctx.Query("current")) size, _ := strconv.Atoi(ctx.Query("size")) if current == 0 { current = 1 } if size <= 0 || size > 100 { size = 10 } devices, err := service.CameraService.List(searchValue, cameraType, current, size) if err != nil { ctx.JSON(http.StatusOK, err) return } pages := math.Ceil(float64(len(devices)) / float64(size)) rsp := model.RspCameraList{ Current: current, Size: size, Total: len(devices), Pages: int(pages), Records: devices, } ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp)) } func (c *lightStrategyCtl) CreateOrUpdate(ctx *gin.Context) { // 参数验证 var req *model.CameraDetail if err := ctx.ShouldBind(&req); err != nil { ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil)) return } err := service.CameraService.CreateOrUpdate(req) if err != nil { ctx.JSON(http.StatusOK, err) return } ctx.JSON(http.StatusOK, nil) } func (c *lightStrategyCtl) Remove(ctx *gin.Context) { var req *model.ReqZigbeeRemove if err := ctx.ShouldBindJSON(&req); err != nil { ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil)) return } err := service.ZigbeeService.Remove(req.IDs) if err != nil { ctx.JSON(http.StatusOK, err) return } ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil)) }