intelligentLightingService.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. package service
  2. import (
  3. "fmt"
  4. "iot_manager_service/app/device/dao"
  5. "iot_manager_service/app/device/model"
  6. "iot_manager_service/app/system/service"
  7. "iot_manager_service/util/cache"
  8. "iot_manager_service/util/common"
  9. "strconv"
  10. "time"
  11. )
  12. var IntelligentLightingService = new(intelligentLightingService)
  13. type intelligentLightingService struct{}
  14. func (s *intelligentLightingService) GetDetailByLight(tenantId, id int, reqType int) (model.RspIntelligentLightDetail,
  15. *common.Errors) {
  16. detail := model.RspIntelligentLightDetail{}
  17. if reqType == 2 {
  18. lightControl, _ := LightControlService.GetByGroupId(id)
  19. if lightControl != nil {
  20. lightControlOne := lightControl[0]
  21. for i, control := range lightControl {
  22. _, state := cache.GetDeviceState(control.Sn)
  23. lightControl[i].Status, _ = strconv.Atoi(state)
  24. }
  25. lightControlOne.LampPoleName = lightControlOne.LampPoleName + "(" + lightControlOne.LampPoleSn + ")"
  26. detail.LightControlList = lightControl
  27. detail.LampPoleName = lightControlOne.LampPoleName
  28. //id = lightControl[0].ID
  29. }
  30. } else {
  31. lightControl, _ := LightControlService.GetOne(id)
  32. if lightControl != nil {
  33. _, state := cache.GetDeviceState(lightControl.Sn)
  34. lightControl.Status, _ = strconv.Atoi(state)
  35. lightControl.LampPoleName = lightControl.LampPoleName + "(" + lightControl.LampPoleSn + ")"
  36. detail.LightControlList = []dao.LightControl{*lightControl}
  37. detail.LampPoleName = lightControl.LampPoleName
  38. }
  39. }
  40. //fmt.Printf("id = %v", id)
  41. detail.LightRelMap = s.GetLightRelation(tenantId, id, reqType)
  42. return detail, nil
  43. }
  44. func (s *intelligentLightingService) GetLightRelation(tenantId, rId, relationType int) model.IntelligentLightSimple {
  45. detail := model.IntelligentLightSimple{}
  46. // 获取照明策略关联
  47. intelligentLight := dao.IntelligentLight{
  48. Rid: rId,
  49. RelationType: relationType,
  50. TenantId: tenantId,
  51. }
  52. relations, _ := intelligentLight.GetByRidAndType()
  53. //fmt.Printf("rId = %v", rId)
  54. //fmt.Printf("relations = %v", relations)
  55. if len(relations) == 0 {
  56. return detail
  57. }
  58. lightId := relations[0].LightID
  59. // 获取策略详情(日期,如果是年,使用当前年起始日期)
  60. lightStrategy, _ := LightStrategyService.GetOne(lightId)
  61. if lightStrategy == nil {
  62. return detail
  63. }
  64. //获取灯控名称和SN
  65. detail.LightName = lightStrategy.LightName
  66. detail.LightSn = lightStrategy.LightSn
  67. //全年
  68. if lightStrategy.IsAllYear == model.IsYear {
  69. year := time.Now().Year()
  70. detail.EffectiveDate = fmt.Sprintf("%d-01-01 ~ %d-12-31", year, year)
  71. } else {
  72. detail.EffectiveDate = lightStrategy.StartTime + " ~ " + lightStrategy.EndTime
  73. }
  74. // 获取策略时间(每日的时间策略)
  75. timeConditions := TimeConditionService.GetByLightId(lightId)
  76. for _, timeCondition := range timeConditions {
  77. if timeCondition.StartTime == "" && timeCondition.EndTime == "" {
  78. timeCondition.StartTime = "日落"
  79. timeCondition.EndTime = "日出"
  80. }
  81. detail.TimeConditionList = append(detail.TimeConditionList, model.TimeConditionSimple{
  82. Luminance: strconv.Itoa(timeCondition.Luminance) + "%",
  83. Times: timeCondition.StartTime + " ~ " + timeCondition.EndTime,
  84. })
  85. }
  86. return detail
  87. }
  88. func (s *intelligentLightingService) BatchGet(ids []int) []dao.IntelligentLight {
  89. // 创建查询实例
  90. intelligent := &dao.IntelligentLight{}
  91. intelligentLights, err := intelligent.BatchGet(ids)
  92. if err != nil {
  93. return nil
  94. }
  95. return intelligentLights
  96. }
  97. func (s *intelligentLightingService) List(tenantId int, searchValue string, current, size,
  98. groupId int) ([]dao.LightrelationVo, error) {
  99. var result []dao.LightrelationVo
  100. //获取策略关联信息
  101. intelligent := &dao.IntelligentLight{
  102. RelationType: model.RelationTypeLampPoleGroup,
  103. TenantId: tenantId,
  104. }
  105. //println("fasdf")
  106. list, err := intelligent.GetByGroup2(searchValue, current, size, groupId)
  107. if err != nil {
  108. return nil, nil
  109. }
  110. for _, intelligentLight := range list {
  111. _, state := cache.GetDeviceState(intelligentLight.LightSn)
  112. intelligentLight.RunState = state
  113. intelligentLight.RelationType = 2
  114. intelligentLight.DeviceSn = "全组"
  115. intelligentLight.IsShowOpts = true
  116. result = append(result, intelligentLight)
  117. }
  118. for i, vo := range result {
  119. groupId := vo.Rid
  120. group2, _ := intelligent.GetByGroup(searchValue, current, size, groupId)
  121. for i2, group := range group2 {
  122. _, state := cache.GetDeviceState(group.LightSn)
  123. group.RunState = state
  124. group.RelationType = 1
  125. if vo.PublicID == group.GroupID {
  126. group.IsShowOpts = true
  127. }
  128. //TODO: 这里要调用边缘接口 灯状态未实时
  129. group.LightControlState = "2"
  130. group2[i2] = group
  131. }
  132. result[i].Children = &group2
  133. }
  134. return result, nil
  135. }
  136. // Relation 保存策略
  137. func (s *intelligentLightingService) Relation(userId int64, tenantId int, publicId int, lightId int, relationType int) error {
  138. intelligent := &dao.IntelligentLight{
  139. LightID: lightId,
  140. Rid: publicId,
  141. TenantId: tenantId,
  142. RelationType: relationType,
  143. }
  144. //TODO:如果是同步组的,下方的都要修改???
  145. if relationType == 2 {
  146. }
  147. intelligentLight, err := intelligent.Get()
  148. if err != nil {
  149. panic(err)
  150. }
  151. intelligentLight.LightID = lightId
  152. intelligentLight.Update()
  153. //TODO:这里要调用边缘接口同步
  154. //fmt.Printf("intelligentLight = %v", intelligentLight)
  155. service.OperationHisService.Save(userId, tenantId, common.OperationStrategyRelation, common.ModuleTypeLightStrategy,
  156. common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "保存策略"+string(lightId)), common.OperationSuccess)
  157. return nil
  158. }
  159. // Recovery 恢复到分组
  160. func (s *intelligentLightingService) Recovery(userId int64, tenantId int, groupId int, id int) error {
  161. //1.IntelligentLight查出 `relation_type` = '2' AND `rid` = '67' 查出组中的 light_id
  162. //2.IntelligentLight保存 上面 的light_id 到 id中
  163. intelligent := &dao.IntelligentLight{
  164. Rid: groupId,
  165. TenantId: tenantId,
  166. RelationType: 2,
  167. }
  168. intelligentLight, err := intelligent.Get()
  169. if err != nil {
  170. panic(err)
  171. }
  172. lightID := intelligentLight.LightID
  173. intelligent2 := &dao.IntelligentLight{
  174. ID: id,
  175. LightID: lightID,
  176. }
  177. //TODO:这里要调用边缘接口同步
  178. intelligent2.Update()
  179. service.OperationHisService.Save(userId, tenantId, common.OperationStrategyRelation, common.ModuleTypeLightStrategy,
  180. common.DeviceTypeLightControl, common.GetDeviceObject(id, "恢复到分组"+string(lightID)), common.OperationSuccess)
  181. return nil
  182. }
  183. // ChangeHandSwitch 开灯控制
  184. func (s *intelligentLightingService) ChangeHandSwitch(userId int64, tenantId int, handSwitch int, handType int, publicId int, handTime int, luminance int, explain string, name string) error {
  185. light, err := s.GetDetailByLight(tenantId, publicId, handType)
  186. if err != nil {
  187. panic(err)
  188. }
  189. list := light.LightControlList
  190. var sn []string
  191. for _, control := range list {
  192. sn = append(sn, control.Sn)
  193. }
  194. fmt.Printf("操作的sn = %v", sn)
  195. //TODO:这里要调用边缘接口同步
  196. str := "灯控"
  197. if handType == 2 {
  198. str = "灯杆分组"
  199. }
  200. if handSwitch == 1 {
  201. str += "[开启]"
  202. } else {
  203. str += "[关闭]"
  204. }
  205. service.OperationHisService.Save(userId, tenantId, common.OperationControl, common.ModuleTypeLightStrategy,
  206. common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "照明开关控制"), common.OperationSuccess)
  207. return nil
  208. }