|
@@ -0,0 +1,175 @@
|
|
|
+package service
|
|
|
+
|
|
|
+import (
|
|
|
+ "fmt"
|
|
|
+ "iot_manager_service/app/dao"
|
|
|
+ "iot_manager_service/app/model"
|
|
|
+ "iot_manager_service/app/utils"
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+// 中间件管理服务
|
|
|
+var LampPoleService = new(lampPoleService)
|
|
|
+
|
|
|
+type lampPoleService struct{}
|
|
|
+
|
|
|
+func (s *lampPoleService) Get(id int) (*dao.LampPole, *utils.Errors) {
|
|
|
+ // 创建查询实例
|
|
|
+ device := &dao.LampPole{
|
|
|
+ ID: id,
|
|
|
+ }
|
|
|
+ err := device.GetDevice()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ //todo runstate 需要使用各个设备的状态来处理
|
|
|
+ return device, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) GetRelevanceDetail(id int) (*model.LampPoleDetail, *utils.Errors) {
|
|
|
+ // 创建查询实例
|
|
|
+ device := &dao.LampPole{
|
|
|
+ ID: id,
|
|
|
+ }
|
|
|
+ err := device.GetDevice()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ //todo get gateway ipBroadcast lightcontroller... list
|
|
|
+ return &model.LampPoleDetail{
|
|
|
+ LampPole: *device,
|
|
|
+ AlarmTerminalList: nil,
|
|
|
+ CameraList: nil,
|
|
|
+ CaptureUnitList: nil,
|
|
|
+ GatewayList: nil,
|
|
|
+ InfoBoardList: nil,
|
|
|
+ IpBroadcastList: nil,
|
|
|
+ LightControlList: nil,
|
|
|
+ SensorList: nil,
|
|
|
+ ZigbeeList: nil,
|
|
|
+ }, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) CreateOrUpdate(req *dao.LampPole) *utils.Errors {
|
|
|
+ device := req
|
|
|
+ if device.TenantId == "" {
|
|
|
+ device.TenantId = "000000" // todo: 使用登录态
|
|
|
+ }
|
|
|
+ device.CoordType = 1
|
|
|
+
|
|
|
+ if device.ID == 0 {
|
|
|
+ device.CreateTime = time.Now()
|
|
|
+ device.CreateUser = "TODO" // todo: 使用登录态
|
|
|
+
|
|
|
+ if device.IsExistedBySN() {
|
|
|
+ fmt.Printf("Create IsExistedBySN \n")
|
|
|
+ return utils.ParamsInvalidResponse(model.RepeatedPrompts, nil)
|
|
|
+ }
|
|
|
+ fmt.Printf("device = %+v \n", device)
|
|
|
+ if err := device.Create(); err != nil {
|
|
|
+ fmt.Printf("Create err = %s \n", err.Error())
|
|
|
+ return utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return utils.SuccessResponse(utils.Succeeded, nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ device.UpdateUser = "TODO" // todo: 使用登录态
|
|
|
+ device.UpdateTime = time.Now()
|
|
|
+
|
|
|
+ if err := device.Update(); err != nil {
|
|
|
+ fmt.Printf("Update err = %s \n", err.Error())
|
|
|
+ return utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ //todo operation record
|
|
|
+ return utils.SuccessResponse(utils.Succeeded, nil)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) List(searchValue, groupId, boxId string, current, size int) ([]dao.LampPole, *utils.Errors) {
|
|
|
+ device := dao.LampPole{}
|
|
|
+ if searchValue != "" {
|
|
|
+ device.PoleSN = searchValue
|
|
|
+ device.PoleName = searchValue
|
|
|
+ }
|
|
|
+
|
|
|
+ device.GroupId = utils.StringToInt(groupId)
|
|
|
+ device.BoxId = utils.StringToInt(boxId)
|
|
|
+
|
|
|
+ offset := (current - 1) * size
|
|
|
+ limit := size
|
|
|
+ devices, err := device.GetDevices(offset, limit)
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return devices, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) Remove(id int) *utils.Errors {
|
|
|
+ // 创建查询实例
|
|
|
+ device := &dao.LampPole{
|
|
|
+ ID: id,
|
|
|
+ IsDeleted: 1,
|
|
|
+ UpdateUser: "TODO", // todo 使用登录态
|
|
|
+ UpdateTime: time.Now(),
|
|
|
+ }
|
|
|
+
|
|
|
+ //todo
|
|
|
+ // service.lampPoleService.CountRelation()
|
|
|
+
|
|
|
+ //todo operation record
|
|
|
+ err := device.Delete()
|
|
|
+ if err != nil {
|
|
|
+ return utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) GetList() ([]dao.LampPole, *utils.Errors) {
|
|
|
+ // todo use redis cache
|
|
|
+ device := &dao.LampPole{
|
|
|
+ TenantId: "000000", // todo 使用登录态
|
|
|
+ IsDeleted: 0,
|
|
|
+ }
|
|
|
+ devices, err := device.GetAllDevices()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ return devices, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) GetFiltration() ([]dao.LampPole, *utils.Errors) {
|
|
|
+ // todo use redis cache
|
|
|
+ device := &dao.LampPole{
|
|
|
+ TenantId: "000000", // todo 使用登录态
|
|
|
+ IsDeleted: 0,
|
|
|
+ }
|
|
|
+
|
|
|
+ //todo
|
|
|
+ // get t_dev_light_control _id
|
|
|
+ // Ids := lightControl.GetIds()
|
|
|
+
|
|
|
+ devices, err := device.GetAllDevices()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ return devices, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *lampPoleService) GetTree() ([]dao.LampPole, *utils.Errors) {
|
|
|
+ // todo use redis cache
|
|
|
+ device := &dao.LampPole{
|
|
|
+ TenantId: "000000", // todo 使用登录态
|
|
|
+ IsDeleted: 0,
|
|
|
+ }
|
|
|
+
|
|
|
+ //todo lampPole getALlDevice
|
|
|
+
|
|
|
+ devices, err := device.GetAllDevices()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ return devices, nil
|
|
|
+}
|