intelligentLightingService.go 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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, int64, 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, 0, err
  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. var total int64
  119. for i, vo := range result {
  120. groupId := vo.Rid
  121. group2, _ := intelligent.GetByGroup(searchValue, current, size, groupId)
  122. for i2, group := range group2 {
  123. _, state := cache.GetDeviceState(group.LightSn)
  124. group.RunState = state
  125. group.RelationType = 1
  126. if vo.PublicID == group.GroupID {
  127. group.IsShowOpts = true
  128. }
  129. //TODO: 这里要调用边缘接口 灯状态未实时
  130. group.LightControlState = "2"
  131. group2[i2] = group
  132. }
  133. total += 1
  134. result[i].Children = &group2
  135. }
  136. return result, total, nil
  137. }
  138. // Relation 保存策略
  139. func (s *intelligentLightingService) Relation(userId int64, tenantId int, publicId int, lightId int, relationType int) error {
  140. intelligent := &dao.IntelligentLight{
  141. LightID: lightId,
  142. Rid: publicId,
  143. TenantId: tenantId,
  144. RelationType: relationType,
  145. }
  146. //TODO:如果是同步组的,下方的都要修改???
  147. if relationType == 2 {
  148. }
  149. intelligentLight, err := intelligent.Get()
  150. if err != nil {
  151. panic(err)
  152. }
  153. intelligentLight.LightID = lightId
  154. intelligentLight.Update()
  155. //TODO:这里要调用边缘接口同步
  156. //fmt.Printf("intelligentLight = %v", intelligentLight)
  157. service.OperationHisService.Save(userId, tenantId, common.OperationStrategyRelation, common.ModuleTypeLightStrategy,
  158. common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "保存策略"+string(lightId)), common.OperationSuccess)
  159. return nil
  160. }
  161. // Recovery 恢复到分组
  162. func (s *intelligentLightingService) Recovery(userId int64, tenantId int, groupId int, id int) error {
  163. //1.IntelligentLight查出 `relation_type` = '2' AND `rid` = '67' 查出组中的 light_id
  164. //2.IntelligentLight保存 上面 的light_id 到 id中
  165. intelligent := &dao.IntelligentLight{
  166. Rid: groupId,
  167. TenantId: tenantId,
  168. RelationType: 2,
  169. }
  170. intelligentLight, err := intelligent.Get()
  171. if err != nil {
  172. panic(err)
  173. }
  174. lightID := intelligentLight.LightID
  175. intelligent2 := &dao.IntelligentLight{
  176. ID: id,
  177. LightID: lightID,
  178. }
  179. //TODO:这里要调用边缘接口同步
  180. intelligent2.Update()
  181. service.OperationHisService.Save(userId, tenantId, common.OperationStrategyRelation, common.ModuleTypeLightStrategy,
  182. common.DeviceTypeLightControl, common.GetDeviceObject(id, "恢复到分组"+string(lightID)), common.OperationSuccess)
  183. return nil
  184. }
  185. // ChangeHandSwitch 开灯控制
  186. func (s *intelligentLightingService) ChangeHandSwitch(userId int64, tenantId int, handSwitch int, handType int, publicId int, handTime int, luminance int, explain string, name string) error {
  187. light, err := s.GetDetailByLight(tenantId, publicId, handType)
  188. if err != nil {
  189. panic(err)
  190. }
  191. list := light.LightControlList
  192. var sn []string
  193. for _, control := range list {
  194. sn = append(sn, control.Sn)
  195. }
  196. fmt.Printf("操作的sn = %v", sn)
  197. //TODO:这里要调用边缘接口同步
  198. str := "灯控"
  199. if handType == 2 {
  200. str = "灯杆分组"
  201. }
  202. if handSwitch == 1 {
  203. str += "[开启]"
  204. } else {
  205. str += "[关闭]"
  206. }
  207. service.OperationHisService.Save(userId, tenantId, common.OperationControl, common.ModuleTypeLightStrategy,
  208. common.DeviceTypeLightControl, common.GetDeviceObject(publicId, "照明开关控制"), common.OperationSuccess)
  209. return nil
  210. }