|
@@ -5,6 +5,7 @@ import (
|
|
|
"iot_manager_service/app/device/dao"
|
|
|
"iot_manager_service/app/device/model"
|
|
|
"iot_manager_service/util"
|
|
|
+ "sort"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
@@ -13,33 +14,56 @@ var LightStrategyService = new(lightStrategyService)
|
|
|
|
|
|
type lightStrategyService struct{}
|
|
|
|
|
|
-func (s *lightStrategyService) Get(id int) (*dao.LightStrategy, *util.Errors) {
|
|
|
+func (s *lightStrategyService) Get(id int) (*model.LightStrategyDetail, *util.Errors) {
|
|
|
// 创建查询实例
|
|
|
- device := &dao.LightStrategy{
|
|
|
+ strategy := &dao.LightStrategy{
|
|
|
ID: id,
|
|
|
}
|
|
|
- err := device.GetDevice()
|
|
|
+ err := strategy.GetStrategy()
|
|
|
if err != nil {
|
|
|
return nil, util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
- return device, nil
|
|
|
+
|
|
|
+ lightStrategy := &model.LightStrategyDetail{
|
|
|
+ LightStrategy: *strategy,
|
|
|
+ }
|
|
|
+
|
|
|
+ lightStrategy.LightConditionList = LightConditionService.BatchGet([]int{id})
|
|
|
+ lightStrategy.TimeConditionList = TimeConditionService.BatchGet([]int{id})
|
|
|
+
|
|
|
+ if len(lightStrategy.TimeConditionList) > 0 {
|
|
|
+ lightStrategy.LightType = "时间"
|
|
|
+ }
|
|
|
+ lightStrategy.LightType = lightStrategy.LightType + "策略"
|
|
|
+
|
|
|
+ lightingList := IntelligentLightingService.BatchGet([]int{id})
|
|
|
+ for _, lighting := range lightingList {
|
|
|
+ // 关联类型1=灯杆,2=灯杆分组
|
|
|
+ if lighting.RelationType == 2 {
|
|
|
+ lampPole, _ := LampPoleService.Get(lighting.Rid)
|
|
|
+ lightStrategy.LampPoleDetailList = append(lightStrategy.LampPoleDetailList,
|
|
|
+ model.LampPoleDetail{LampPole: *lampPole})
|
|
|
+ } else {
|
|
|
+ lampPoleGroup, _ := LampPoleGroupService.Get(lighting.Rid)
|
|
|
+ lightStrategy.LampPoleGroupDetailList = append(lightStrategy.LampPoleGroupDetailList,
|
|
|
+ model.LampPoleGroupDetail{LampPoleGroup: *lampPoleGroup})
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return lightStrategy, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
-func (s *lightStrategyService) CreateOrUpdate(req model.LightStrategyDetail) *util.Errors {
|
|
|
+func (s *lightStrategyService) CreateOrUpdate(req *model.LightStrategyDetail) *util.Errors {
|
|
|
// 创建查询实例
|
|
|
- device := req
|
|
|
- if device.TenantID == "" {
|
|
|
- device.TenantID = "000000" // todo: 使用登录态
|
|
|
- }
|
|
|
- device.UpdateUser = "TODO" // todo: 使用登录态
|
|
|
- device.UpdateTime = time.Now()
|
|
|
- lightConditions := device.LightConditionList
|
|
|
- timeConditions := device.TimeConditionList
|
|
|
- if len(lightConditions) == 0 {
|
|
|
- lightConditionDetailList := device.LightConditionDetailList
|
|
|
- for i := 0; i < len(lightConditionDetailList); i++ {
|
|
|
- var detail = lightConditionDetailList[i]
|
|
|
+ strategy := req
|
|
|
+ if strategy.TenantID == "" {
|
|
|
+ strategy.TenantID = "000000" // todo: 使用登录态
|
|
|
+ }
|
|
|
+ strategy.UpdateUser = "TODO" // todo: 使用登录态
|
|
|
+ strategy.UpdateTime = time.Now()
|
|
|
+ if len(strategy.LightConditionList) == 0 {
|
|
|
+ for i := 0; i < len(strategy.LightConditionDetailList); i++ {
|
|
|
+ var detail = strategy.LightConditionDetailList[i]
|
|
|
condition := dao.LightCondition{
|
|
|
ID: detail.ID,
|
|
|
Remark: detail.Remark,
|
|
@@ -48,13 +72,12 @@ func (s *lightStrategyService) CreateOrUpdate(req model.LightStrategyDetail) *ut
|
|
|
ScopeStart: detail.ScopeStart,
|
|
|
ScopeEnd: detail.ScopeEnd,
|
|
|
}
|
|
|
- lightConditions = append(lightConditions, condition)
|
|
|
+ strategy.LightConditionList = append(strategy.LightConditionList, condition)
|
|
|
}
|
|
|
}
|
|
|
- if len(timeConditions) == 0 {
|
|
|
- timeConditionDetailList := device.TimeConditionDetailList
|
|
|
- for i := 0; i < len(timeConditionDetailList); i++ {
|
|
|
- var detail = timeConditionDetailList[i]
|
|
|
+ if len(strategy.TimeConditionList) == 0 {
|
|
|
+ for i := 0; i < len(strategy.TimeConditionDetailList); i++ {
|
|
|
+ var detail = strategy.TimeConditionDetailList[i]
|
|
|
condition := dao.TimeCondition{
|
|
|
ID: detail.ID,
|
|
|
Remark: detail.Remark,
|
|
@@ -64,54 +87,131 @@ func (s *lightStrategyService) CreateOrUpdate(req model.LightStrategyDetail) *ut
|
|
|
EndTime: detail.EndTime,
|
|
|
Sunshine: detail.Sunshine,
|
|
|
}
|
|
|
- timeConditions = append(timeConditions, condition)
|
|
|
+ strategy.TimeConditionList = append(strategy.TimeConditionList, condition)
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
if req.ID == 0 {
|
|
|
- device.CreateTime = time.Now()
|
|
|
- device.CreateUser = "TODO" // todo: 使用登录态
|
|
|
- if device.IsExistedBySN() {
|
|
|
- fmt.Printf("Create GetDeviceID err \n")
|
|
|
+ strategy.CreateTime = time.Now()
|
|
|
+ strategy.CreateUser = "TODO" // todo: 使用登录态
|
|
|
+ if strategy.IsExistedBySN() {
|
|
|
+ fmt.Printf("Create GetstrategyID err \n")
|
|
|
return util.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
|
|
|
}
|
|
|
- if err := device.Create(); err != nil {
|
|
|
+ //todo 不能先存
|
|
|
+ if err := strategy.Create(); err != nil {
|
|
|
fmt.Printf("Create err = %s \n", err.Error())
|
|
|
return util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
return util.SuccessResponse(util.Succeeded, nil)
|
|
|
}
|
|
|
- //更新
|
|
|
- if device.IsExistedByNameAndCode() {
|
|
|
- return util.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
|
|
|
- }
|
|
|
|
|
|
- if err := device.Update(); err != nil {
|
|
|
+ //todo 不能先存
|
|
|
+ if err := strategy.Update(); err != nil {
|
|
|
fmt.Printf("Update err = %s \n", err.Error())
|
|
|
return util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
+
|
|
|
//用于比较光照度重叠
|
|
|
+ var overlapList []dao.LightCondition
|
|
|
+ for _, lightCondition := range strategy.LightConditionList {
|
|
|
+ if (lightCondition.ScopeStart != 0 && lightCondition.ScopeEnd == 0) || (lightCondition.
|
|
|
+ ScopeStart == 0 && lightCondition.ScopeEnd != 0) {
|
|
|
+ //todo 光照度请填写完整
|
|
|
+ return nil
|
|
|
+ } else if lightCondition.ScopeEnd > 0 && lightCondition.ScopeStart >= lightCondition.ScopeEnd {
|
|
|
+ //todo 光照度起始值不能大于结束值
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ overlapList = append(overlapList, lightCondition)
|
|
|
+
|
|
|
+ if lightCondition.ID == 0 {
|
|
|
+ lightCondition.CreateUser = "TODO" //todo 登录态
|
|
|
+ lightCondition.CreateTime = time.Now()
|
|
|
+ } else {
|
|
|
+ lightCondition.UpdateUser = "TODO" //todo 登录态
|
|
|
+ lightCondition.UpdateTime = time.Now()
|
|
|
+ }
|
|
|
+ lightCondition.LightId = req.ID
|
|
|
+
|
|
|
+ }
|
|
|
+ //光照条件查询是否区间重叠
|
|
|
+ if len(overlapList) > 0 {
|
|
|
+ sort.SliceIsSorted(overlapList, func(i, j int) bool {
|
|
|
+ return overlapList[i].
|
|
|
+ ScopeStart < overlapList[j].ScopeStart
|
|
|
+ })
|
|
|
+ tmp := -1
|
|
|
+ for _, overLap := range overlapList {
|
|
|
+ if tmp >= overLap.ScopeStart {
|
|
|
+ //todo 区间有重叠
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ tmp = overLap.ScopeEnd
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 时间策略参数校验
|
|
|
+ for _, timeCondition := range strategy.TimeConditionList {
|
|
|
+ if timeCondition.Sunshine == 0 {
|
|
|
+ timeCondition.Sunshine = 1
|
|
|
+ }
|
|
|
+ if timeCondition.Sunshine == 1 && (timeCondition.StartTime == "" && timeCondition.EndTime == "") {
|
|
|
+ //todo 请将时间区间填写完整!
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ if (timeCondition.StartTime == "" && timeCondition.EndTime != "") || (timeCondition.
|
|
|
+ StartTime != "" && timeCondition.EndTime == "") {
|
|
|
+ //todo 请将时间区间填写完整!
|
|
|
+ return nil
|
|
|
+ } else if timeCondition.EndTime != "" && timeCondition.StartTime >= timeCondition.EndTime {
|
|
|
+ //todo 时间区间开始时间不能大于结束时间,请重新调整!
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ if timeCondition.ID == 0 {
|
|
|
+ timeCondition.CreateUser = "TODO" //todo 登录态
|
|
|
+ timeCondition.CreateTime = time.Now()
|
|
|
+ } else {
|
|
|
+ timeCondition.UpdateUser = "TODO" //todo 登录态
|
|
|
+ timeCondition.UpdateTime = time.Now()
|
|
|
+ }
|
|
|
+ timeCondition.LightId = req.ID
|
|
|
+ }
|
|
|
+
|
|
|
+ //todo create or update
|
|
|
+ strategyDao := &dao.LightStrategy{}
|
|
|
+ if strategy.ID == 0 {
|
|
|
+ strategyDao.Create()
|
|
|
+ } else {
|
|
|
+ strategyDao.Update()
|
|
|
+ }
|
|
|
+
|
|
|
+ TimeConditionService.Save(strategy.TimeConditionList)
|
|
|
+ LightConditionService.Save(strategy.LightConditionList)
|
|
|
+
|
|
|
+ //todo 调用设备云端的新增或修改
|
|
|
|
|
|
//todo operation record
|
|
|
return util.SuccessResponse(util.Succeeded, nil)
|
|
|
}
|
|
|
func (s *lightStrategyService) List(searchValue string, current, size int) ([]dao.LightStrategy, *util.Errors) {
|
|
|
- device := dao.LightStrategy{}
|
|
|
+ strategy := dao.LightStrategy{}
|
|
|
if searchValue != "" {
|
|
|
- device.LightSn = searchValue
|
|
|
- device.LightName = searchValue
|
|
|
+ strategy.LightSn = searchValue
|
|
|
+ strategy.LightName = searchValue
|
|
|
}
|
|
|
|
|
|
offset := (current - 1) * size
|
|
|
limit := size
|
|
|
- devices, err := device.GetDevices(offset, limit)
|
|
|
+ strategies, err := strategy.GetStrategies(offset, limit)
|
|
|
if err != nil {
|
|
|
return nil, util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
- return devices, nil
|
|
|
+ return strategies, nil
|
|
|
}
|
|
|
func (s *lightStrategyService) Remove(id int) *util.Errors {
|
|
|
// 创建查询实例
|
|
|
- device := &dao.LightStrategy{
|
|
|
+ strategy := &dao.LightStrategy{
|
|
|
ID: id,
|
|
|
IsDeleted: 1,
|
|
|
UpdateUser: "TODO", // todo 使用登录态
|
|
@@ -121,7 +221,7 @@ func (s *lightStrategyService) Remove(id int) *util.Errors {
|
|
|
// service.transformerService.CountRelation()
|
|
|
|
|
|
//todo operation record
|
|
|
- err := device.Delete()
|
|
|
+ err := strategy.Delete()
|
|
|
if err != nil {
|
|
|
return util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
@@ -129,12 +229,12 @@ func (s *lightStrategyService) Remove(id int) *util.Errors {
|
|
|
}
|
|
|
|
|
|
func (s *lightStrategyService) GetOne(id int) (*dao.LightStrategy, *util.Errors) {
|
|
|
- device := &dao.LightStrategy{
|
|
|
+ strategy := &dao.LightStrategy{
|
|
|
ID: id,
|
|
|
}
|
|
|
- err := device.GetDevice()
|
|
|
+ err := strategy.GetStrategy()
|
|
|
if err != nil {
|
|
|
return nil, nil
|
|
|
}
|
|
|
- return device, nil
|
|
|
+ return strategy, nil
|
|
|
}
|