|
@@ -5,7 +5,9 @@ import (
|
|
|
"iot_manager_service/app/model"
|
|
|
"iot_manager_service/app/service"
|
|
|
"iot_manager_service/app/utils"
|
|
|
+ "math"
|
|
|
"net/http"
|
|
|
+ "strconv"
|
|
|
)
|
|
|
|
|
|
// 摄像头管理对象
|
|
@@ -14,14 +16,47 @@ var Camera = new(cameraCtl)
|
|
|
type cameraCtl struct{}
|
|
|
|
|
|
func (c *cameraCtl) Detail(ctx *gin.Context) {
|
|
|
- var req *model.CameraDetail
|
|
|
- if err := ctx.ShouldBind(&req); err != nil {
|
|
|
- ctx.JSON(http.StatusOK, nil)
|
|
|
+ id, e := strconv.Atoi(ctx.Query("id"))
|
|
|
+ if e != nil {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(e.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ device, err := service.CameraService.Get(id)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
return
|
|
|
}
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, device))
|
|
|
}
|
|
|
|
|
|
func (c *cameraCtl) 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, utils.SuccessResponse(utils.Succeeded, rsp))
|
|
|
}
|
|
|
|
|
|
func (c *cameraCtl) CreateOrUpdate(ctx *gin.Context) {
|
|
@@ -33,12 +68,24 @@ func (c *cameraCtl) CreateOrUpdate(ctx *gin.Context) {
|
|
|
}
|
|
|
err := service.CameraService.CreateOrUpdate(req)
|
|
|
if err != nil {
|
|
|
- ctx.JSON(http.StatusOK, nil)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
return
|
|
|
}
|
|
|
+ ctx.JSON(http.StatusOK, nil)
|
|
|
}
|
|
|
|
|
|
func (c *cameraCtl) Remove(ctx *gin.Context) {
|
|
|
+ var req *model.ReqCameraRemove
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.CameraService.Remove(req.IDs)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
|
|
|
}
|
|
|
|
|
|
func (c *cameraCtl) Count(ctx *gin.Context) {
|
|
@@ -54,7 +101,29 @@ func (c *cameraCtl) ExportTemplate(ctx *gin.Context) {
|
|
|
}
|
|
|
|
|
|
func (c *cameraCtl) GetList(ctx *gin.Context) {
|
|
|
+ devices, err := service.CameraService.GetList()
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
|
|
|
+
|
|
|
}
|
|
|
|
|
|
func (c *cameraCtl) Enable(ctx *gin.Context) {
|
|
|
+ var req *model.ReqCameraEnable
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.Status != model.Enable_Enable && req.Status != model.Enable_Disable {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(model.EnableInvalid, nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.CameraService.Enable(req.ID, req.Status)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
|
|
|
}
|