intelligentLightingService.go 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. // 智能照明服务
  15. type intelligentLightingService struct{}
  16. // 根据灯控获取详细信息
  17. func (s *intelligentLightingService) GetDetailByLight(tenantId string, id int, reqType int) (model.RspIntelligentLightDetail,
  18. *common.Errors) {
  19. detail := model.RspIntelligentLightDetail{}
  20. if reqType == 2 {
  21. lightControl, _ := LightControlService.GetByGroupId(id)
  22. if lightControl != nil {
  23. lightControlOne := lightControl[0]
  24. for i, control := range lightControl {
  25. _, state := cache.GetDeviceState(control.Sn)
  26. lightControl[i].Status, _ = strconv.Atoi(state)
  27. }
  28. lightControlOne.LampPoleName = lightControlOne.LampPoleName + "(" + lightControlOne.LampPoleSn + ")"
  29. detail.LightControlList = lightControl
  30. detail.LampPoleName = lightControlOne.LampPoleName
  31. //id = lightControl[0].ID
  32. }
  33. } else {
  34. lightControl, _ := LightControlService.GetOne(id)
  35. if lightControl != nil {
  36. _, state := cache.GetDeviceState(lightControl.Sn)
  37. lightControl.Status, _ = strconv.Atoi(state)
  38. lightControl.LampPoleName = lightControl.LampPoleName + "(" + lightControl.LampPoleSn + ")"
  39. detail.LightControlList = []dao.LightControl{*lightControl}
  40. detail.LampPoleName = lightControl.LampPoleName
  41. }
  42. }
  43. detail.LightRelMap = s.GetLightRelation(tenantId, id, reqType)
  44. return detail, nil
  45. }
  46. // 根据灯光策略
  47. func (s *intelligentLightingService) GetLightRelation(tenantId string, rId, relationType int) model.IntelligentLightSimple {
  48. detail := model.IntelligentLightSimple{}
  49. // 获取照明策略关联
  50. intelligentLight := dao.IntelligentLight{
  51. Rid: rId,
  52. RelationType: relationType,
  53. TenantId: tenantId,
  54. }
  55. relations, _ := intelligentLight.GetByRidAndType()
  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. // 批量获取
  90. func (s *intelligentLightingService) BatchGet(ids []int) []dao.IntelligentLight {
  91. // 创建查询实例
  92. intelligent := &dao.IntelligentLight{}
  93. intelligentLights, err := intelligent.BatchGet(ids)
  94. if err != nil {
  95. return nil
  96. }
  97. return intelligentLights
  98. }
  99. func (s *intelligentLightingService) List(tenantId string, searchValue string, current, size,
  100. groupId int) ([]dao.LightrelationVo, int64, error) {
  101. var result []dao.LightrelationVo
  102. //获取策略关联信息
  103. intelligent := &dao.IntelligentLight{
  104. RelationType: model.RelationTypeLampPoleGroup,
  105. TenantId: tenantId,
  106. }
  107. //println("fasdf")
  108. list, err := intelligent.GetByGroup2(searchValue, current, size, groupId)
  109. if err != nil {
  110. return nil, 0, err
  111. }
  112. for _, intelligentLight := range list {
  113. _, state := cache.GetDeviceState(intelligentLight.LightSn)
  114. intelligentLight.RunState = state
  115. intelligentLight.RelationType = 2
  116. intelligentLight.DeviceSn = "全组"
  117. intelligentLight.IsShowOpts = true
  118. result = append(result, intelligentLight)
  119. }
  120. var total int64
  121. for i, vo := range result {
  122. groupId := vo.Rid
  123. group2, count, _ := intelligent.GetByGroup(searchValue, current, size, groupId)
  124. for i2, group := range group2 {
  125. _, state := cache.GetDeviceState(group.DeviceSn)
  126. group.RunState = state
  127. group.RelationType = 1
  128. if vo.PublicID == group.GroupID {
  129. group.IsShowOpts = true
  130. }
  131. // 灯状态
  132. switchState := cache.GetSwitchState(group.DeviceSn)
  133. group.LightControlState = "2"
  134. if switchState {
  135. group.LightControlState = "1"
  136. }
  137. group2[i2] = group
  138. }
  139. //total += 1
  140. total = count
  141. result[i].Children = &group2
  142. }
  143. return result, total, nil
  144. }
  145. // Relation 保存策略
  146. func (s *intelligentLightingService) Relation(userId int, tenantId string, publicId int, lightId int, relationType int) error {
  147. intelligent := &dao.IntelligentLight{
  148. LightID: lightId,
  149. Rid: publicId,
  150. TenantId: tenantId,
  151. RelationType: relationType,
  152. }
  153. //TODO:如果是同步组的,下方的都要修改???
  154. if relationType == 2 {
  155. }
  156. intelligentLight, err := intelligent.Get()
  157. if err != nil {
  158. panic(err)
  159. }
  160. intelligentLight.LightID = lightId
  161. intelligentLight.Update()
  162. //TODO:这里要调用边缘接口同步
  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 int, 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 int, 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. // 这里要调用云端 操作灯控
  203. var forLightControlReq edge_service.ForLightControlReq
  204. forLightControlReq.Codes = sn
  205. forLightControlReq.Tenant = tenantId
  206. forLightControlReq.Recovery = handTime
  207. forLightControlReq.Brightness = luminance
  208. str := "灯控"
  209. if handType == 2 {
  210. str = "灯杆分组"
  211. }
  212. if handSwitch == 1 {
  213. str += "[开启]"
  214. forLightControlReq.Switchon = 1
  215. } else {
  216. str += "[关闭]"
  217. forLightControlReq.Switchon = 0
  218. }
  219. edge_service.ForLightControl{}.SwitchLightCtr(forLightControlReq)
  220. service.OperationHisService.Save(userId, tenantId, common.OperationControl, common.ModuleTypeLightStrategy,
  221. common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "照明开关控制"), common.OperationSuccess)
  222. return nil
  223. }