intelligentLightingService.go 7.8 KB

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