|
@@ -2,6 +2,13 @@ package controller
|
|
|
|
|
|
import (
|
|
|
"github.com/gin-gonic/gin"
|
|
|
+ "iot_manager_service/app/dao"
|
|
|
+ "iot_manager_service/app/model"
|
|
|
+ "iot_manager_service/app/service"
|
|
|
+ "iot_manager_service/app/utils"
|
|
|
+ "math"
|
|
|
+ "net/http"
|
|
|
+ "strconv"
|
|
|
)
|
|
|
|
|
|
// 桥梁传感器管理对象
|
|
@@ -10,15 +17,71 @@ var BridgeSensor = new(bridgeSensorCtl)
|
|
|
type bridgeSensorCtl struct{}
|
|
|
|
|
|
func (c *bridgeSensorCtl) Detail(ctx *gin.Context) {
|
|
|
+ id, e := strconv.Atoi(ctx.Query("id"))
|
|
|
+ if e != nil {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(e.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ device, err := service.BridgeSensorService.Get(id)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, device))
|
|
|
}
|
|
|
|
|
|
func (c *bridgeSensorCtl) List(ctx *gin.Context) {
|
|
|
+ searchValue := ctx.Query("searchValue")
|
|
|
+ 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.BridgeSensorService.List(searchValue, current, size)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ pages := math.Ceil(float64(len(devices)) / float64(size))
|
|
|
+ rsp := model.RspBridgeSensorList{
|
|
|
+ Current: current,
|
|
|
+ Size: size,
|
|
|
+ Total: len(devices),
|
|
|
+ Pages: int(pages),
|
|
|
+ }
|
|
|
+ for _, device := range devices {
|
|
|
+
|
|
|
+ rsp.Records = append(rsp.Records, device)
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, rsp))
|
|
|
}
|
|
|
|
|
|
func (c *bridgeSensorCtl) CreateOrUpdate(ctx *gin.Context) {
|
|
|
+ var req dao.BridgeSensor
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.BridgeSensorService.CreateOrUpdate(req)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
}
|
|
|
|
|
|
func (c *bridgeSensorCtl) Remove(ctx *gin.Context) {
|
|
|
+ var req *model.ReqBridgeSensorRemove
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.BridgeSensorService.Remove(req.IDs)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
|
|
|
}
|
|
|
|
|
|
func (c *bridgeSensorCtl) ImportExcel(ctx *gin.Context) {
|
|
@@ -31,7 +94,28 @@ func (c *bridgeSensorCtl) ExportTemplate(ctx *gin.Context) {
|
|
|
}
|
|
|
|
|
|
func (c *bridgeSensorCtl) GetList(ctx *gin.Context) {
|
|
|
+ devices, err := service.BridgeSensorService.GetList()
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
|
|
|
}
|
|
|
|
|
|
func (c *bridgeSensorCtl) Enable(ctx *gin.Context) {
|
|
|
+ var req *model.ReqBridgeSensorEnable
|
|
|
+ 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.BridgeSensorService.Enable(req.ID, req.Status)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
|
|
|
}
|