|
@@ -4,6 +4,7 @@ import (
|
|
|
"fmt"
|
|
|
"iot_manager_service/app/device/dao"
|
|
|
"iot_manager_service/app/device/model"
|
|
|
+ "iot_manager_service/app/system/service"
|
|
|
"iot_manager_service/util/cache"
|
|
|
"iot_manager_service/util/common"
|
|
|
"strconv"
|
|
@@ -14,16 +15,35 @@ var IntelligentLightingService = new(intelligentLightingService)
|
|
|
|
|
|
type intelligentLightingService struct{}
|
|
|
|
|
|
-func (s *intelligentLightingService) GetDetailByLight(tenantId, id int) (model.RspIntelligentLightDetail,
|
|
|
+func (s *intelligentLightingService) GetDetailByLight(tenantId, id int, reqType int) (model.RspIntelligentLightDetail,
|
|
|
*common.Errors) {
|
|
|
detail := model.RspIntelligentLightDetail{}
|
|
|
- lightControl, _ := LightControlService.GetOne(id)
|
|
|
- if lightControl != nil {
|
|
|
- lightControl.LampPoleName = lightControl.LampPoleName + "(" + lightControl.LampPoleSn + ")"
|
|
|
- detail.LightControlList = []dao.LightControl{*lightControl}
|
|
|
- detail.LampPoleName = lightControl.LampPoleName
|
|
|
+ if reqType == 2 {
|
|
|
+ lightControl, _ := LightControlService.GetByGroupId(id)
|
|
|
+ if lightControl != nil {
|
|
|
+ lightControlOne := lightControl[0]
|
|
|
+ for i, control := range lightControl {
|
|
|
+ _, state := cache.GetDeviceState(control.Sn)
|
|
|
+ lightControl[i].Status, _ = strconv.Atoi(state)
|
|
|
+ }
|
|
|
+ lightControlOne.LampPoleName = lightControlOne.LampPoleName + "(" + lightControlOne.LampPoleSn + ")"
|
|
|
+ detail.LightControlList = lightControl
|
|
|
+ detail.LampPoleName = lightControlOne.LampPoleName
|
|
|
+ //id = lightControl[0].ID
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+ lightControl, _ := LightControlService.GetOne(id)
|
|
|
+ if lightControl != nil {
|
|
|
+ _, state := cache.GetDeviceState(lightControl.Sn)
|
|
|
+ lightControl.Status, _ = strconv.Atoi(state)
|
|
|
+ lightControl.LampPoleName = lightControl.LampPoleName + "(" + lightControl.LampPoleSn + ")"
|
|
|
+ detail.LightControlList = []dao.LightControl{*lightControl}
|
|
|
+ detail.LampPoleName = lightControl.LampPoleName
|
|
|
+ }
|
|
|
}
|
|
|
- detail.LightRelMap = s.GetLightRelation(tenantId, id, model.RelationTypeLight)
|
|
|
+ //fmt.Printf("id = %v", id)
|
|
|
+ detail.LightRelMap = s.GetLightRelation(tenantId, id, reqType)
|
|
|
return detail, nil
|
|
|
}
|
|
|
|
|
@@ -37,6 +57,8 @@ func (s *intelligentLightingService) GetLightRelation(tenantId, rId, relationTyp
|
|
|
TenantId: tenantId,
|
|
|
}
|
|
|
relations, _ := intelligentLight.GetByRidAndType()
|
|
|
+ //fmt.Printf("rId = %v", rId)
|
|
|
+ //fmt.Printf("relations = %v", relations)
|
|
|
if len(relations) == 0 {
|
|
|
return detail
|
|
|
}
|
|
@@ -87,38 +109,118 @@ func (s *intelligentLightingService) BatchGet(ids []int) []dao.IntelligentLight
|
|
|
}
|
|
|
|
|
|
func (s *intelligentLightingService) List(tenantId int, searchValue string, current, size,
|
|
|
- groupId int) ([]model.RspIntelligentLightListDetail, error) {
|
|
|
- var result []model.RspIntelligentLightListDetail
|
|
|
+ groupId int) ([]dao.LightrelationVo, error) {
|
|
|
+ var result []dao.LightrelationVo
|
|
|
//获取策略关联信息
|
|
|
intelligent := &dao.IntelligentLight{
|
|
|
RelationType: model.RelationTypeLampPoleGroup,
|
|
|
TenantId: tenantId,
|
|
|
}
|
|
|
- list, err := intelligent.GetByGroup(searchValue, current, size, groupId)
|
|
|
+ //println("fasdf")
|
|
|
+ list, err := intelligent.GetByGroup2(searchValue, current, size, groupId)
|
|
|
if err != nil {
|
|
|
return nil, nil
|
|
|
}
|
|
|
for _, intelligentLight := range list {
|
|
|
- detail := model.RspIntelligentLightListDetail{
|
|
|
- PublicName: intelligentLight.LightControl.Name,
|
|
|
- PublicId: intelligentLight.LightControl.ID,
|
|
|
- LampPoleName: intelligentLight.LightControl.LampPoleName,
|
|
|
- LampPoleSn: intelligentLight.LightControl.LampPoleSn,
|
|
|
- StrategyName: intelligentLight.LightName,
|
|
|
- DeviceSn: intelligentLight.LightControl.Sn,
|
|
|
- ControlType: intelligentLight.LightControl.ControlType,
|
|
|
- IsShowOpts: true,
|
|
|
+ _, state := cache.GetDeviceState(intelligentLight.LightSn)
|
|
|
+ intelligentLight.RunState = state
|
|
|
+ intelligentLight.RelationType = 2
|
|
|
+ intelligentLight.DeviceSn = "全组"
|
|
|
+ intelligentLight.IsShowOpts = true
|
|
|
+ result = append(result, intelligentLight)
|
|
|
+ }
|
|
|
+ for i, vo := range result {
|
|
|
+ groupId := vo.Rid
|
|
|
+ group2, _ := intelligent.GetByGroup(searchValue, current, size, groupId)
|
|
|
+ for i2, group := range group2 {
|
|
|
+ _, state := cache.GetDeviceState(group.LightSn)
|
|
|
+ group.RunState = state
|
|
|
+ group.RelationType = 1
|
|
|
+ if vo.PublicID == group.GroupID {
|
|
|
+ group.IsShowOpts = true
|
|
|
+ }
|
|
|
+ //TODO: 这里要调用边缘接口 灯状态未实时
|
|
|
+ group.LightControlState = "2"
|
|
|
+ group2[i2] = group
|
|
|
}
|
|
|
+ result[i].Children = &group2
|
|
|
+ }
|
|
|
+ return result, nil
|
|
|
+}
|
|
|
|
|
|
- if intelligentLight.Luminance > 0 {
|
|
|
- detail.LightControlState = 1
|
|
|
- } else {
|
|
|
- detail.LightControlState = 2
|
|
|
- }
|
|
|
- _, state := cache.GetDeviceState(intelligentLight.LightControl.Sn)
|
|
|
- detail.RunState = state
|
|
|
- result = append(result, detail)
|
|
|
+// Relation 保存策略
|
|
|
+func (s *intelligentLightingService) Relation(userId int64, tenantId int, publicId int, lightId int, relationType int) error {
|
|
|
+ intelligent := &dao.IntelligentLight{
|
|
|
+ LightID: lightId,
|
|
|
+ Rid: publicId,
|
|
|
+ TenantId: tenantId,
|
|
|
+ RelationType: relationType,
|
|
|
}
|
|
|
+ //TODO:如果是同步组的,下方的都要修改???
|
|
|
+ if relationType == 2 {
|
|
|
+ }
|
|
|
+ intelligentLight, err := intelligent.Get()
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ intelligentLight.LightID = lightId
|
|
|
+ intelligentLight.Update()
|
|
|
+ //TODO:这里要调用边缘接口同步
|
|
|
+ //fmt.Printf("intelligentLight = %v", intelligentLight)
|
|
|
|
|
|
- return result, nil
|
|
|
+ service.OperationHisService.Save(userId, tenantId, common.OperationStrategyRelation, common.ModuleTypeLightStrategy,
|
|
|
+ common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "保存策略"+string(lightId)), common.OperationSuccess)
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// Recovery 恢复到分组
|
|
|
+func (s *intelligentLightingService) Recovery(userId int64, tenantId int, groupId int, id int) error {
|
|
|
+ //1.IntelligentLight查出 `relation_type` = '2' AND `rid` = '67' 查出组中的 light_id
|
|
|
+ //2.IntelligentLight保存 上面 的light_id 到 id中
|
|
|
+ intelligent := &dao.IntelligentLight{
|
|
|
+ Rid: groupId,
|
|
|
+ TenantId: tenantId,
|
|
|
+ RelationType: 2,
|
|
|
+ }
|
|
|
+ intelligentLight, err := intelligent.Get()
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ lightID := intelligentLight.LightID
|
|
|
+ intelligent2 := &dao.IntelligentLight{
|
|
|
+ ID: id,
|
|
|
+ LightID: lightID,
|
|
|
+ }
|
|
|
+ //TODO:这里要调用边缘接口同步
|
|
|
+ intelligent2.Update()
|
|
|
+ service.OperationHisService.Save(userId, tenantId, common.OperationStrategyRelation, common.ModuleTypeLightStrategy,
|
|
|
+ common.DeviceTypeLightControl, common.GetDeviceObject(id, "恢复到分组"+string(lightID)), common.OperationSuccess)
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// ChangeHandSwitch 开灯控制
|
|
|
+func (s *intelligentLightingService) ChangeHandSwitch(userId int64, tenantId int, handSwitch int, handType int, publicId int, handTime int, luminance int, explain string, name string) error {
|
|
|
+ light, err := s.GetDetailByLight(tenantId, publicId, handType)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ list := light.LightControlList
|
|
|
+ var sn []string
|
|
|
+ for _, control := range list {
|
|
|
+ sn = append(sn, control.Sn)
|
|
|
+ }
|
|
|
+ fmt.Printf("操作的sn = %v", sn)
|
|
|
+ //TODO:这里要调用边缘接口同步
|
|
|
+ str := "灯控"
|
|
|
+ if handType == 2 {
|
|
|
+ str = "灯杆分组"
|
|
|
+ }
|
|
|
+ if handSwitch == 1 {
|
|
|
+ str += "[开启]"
|
|
|
+ } else {
|
|
|
+ str += "[关闭]"
|
|
|
+ }
|
|
|
+ service.OperationHisService.Save(userId, tenantId, common.OperationControl, common.ModuleTypeLightStrategy,
|
|
|
+ common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "照明开关控制"), common.OperationSuccess)
|
|
|
+ return nil
|
|
|
}
|