intelligentLightingService.go 7.6 KB

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