lampPoleGroupService.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. "iot_manager_service/util/logger"
  10. "time"
  11. )
  12. // 中间件管理服务
  13. var LampPoleGroupService = new(lampPoleGroupService)
  14. type lampPoleGroupService struct{}
  15. func (s *lampPoleGroupService) Get(id int) (*dao.LampPoleGroup, *common.Errors) {
  16. // 创建查询实例
  17. device := &dao.LampPoleGroup{
  18. ID: id,
  19. }
  20. err := device.GetDevice()
  21. if err != nil {
  22. return nil, common.FailResponse(err.Error(), nil)
  23. }
  24. return device, nil
  25. }
  26. func (s *lampPoleGroupService) CreateOrUpdate(userId int, tenantId string, req *dao.LampPoleGroup) *common.Errors {
  27. device := req
  28. device.TenantId = tenantId
  29. device.UpdateUser = userId
  30. device.UpdateTime = common.Time(time.Now())
  31. if req.ID == 0 {
  32. device.CreateTime = common.Time(time.Now())
  33. device.CreateUser = userId
  34. if device.IsExistedByName() {
  35. logger.Logger.Errorf("Create IsExistedByName \n")
  36. return common.ParamsInvalidResponse(model.RepeatedName, nil)
  37. }
  38. if err := device.Create(); err != nil {
  39. logger.Logger.Errorf("Create err = %s \n", err.Error())
  40. return common.FailResponse(err.Error(), nil)
  41. }
  42. //新加的 灯控1 给一个默认策略 116
  43. light := dao.IntelligentLight{TenantId: tenantId}
  44. light.CreateDefaultStrategyByLight(device.ID, 2, 116)
  45. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  46. common.DeviceTypeLampPoleGroup, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationSuccess)
  47. return common.SuccessResponse(common.Succeeded, nil)
  48. } else {
  49. if err := device.Update(); err != nil {
  50. logger.Logger.Errorf("Update err = %s \n", err.Error())
  51. return common.FailResponse(err.Error(), nil)
  52. }
  53. }
  54. if device.IsExistedByNameAndCode() {
  55. logger.Logger.Errorf("Update IsExistedByNameAndCode \n")
  56. return common.ParamsInvalidResponse(model.RepeatedName, nil)
  57. }
  58. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  59. common.DeviceTypeLampPoleGroup, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationSuccess)
  60. return common.SuccessResponse(common.Succeeded, nil)
  61. }
  62. func (s *lampPoleGroupService) List(poleGroupName string, current, size int) ([]dao.LampPoleGroup, int64, *common.Errors) {
  63. // 创建查询实例
  64. device := &dao.LampPoleGroup{
  65. PoleGroupName: poleGroupName,
  66. }
  67. offset := (current - 1) * size
  68. limit := size
  69. devices, total, err := device.GetDevices(offset, limit)
  70. if err != nil {
  71. return nil, 0, common.FailResponse(err.Error(), nil)
  72. }
  73. for i, group := range devices {
  74. poleGroup := dao.LampPole{}
  75. poleGroup.GroupId = group.ID
  76. devices[i].CountLampPole, _ = poleGroup.GetGroupIdCount()
  77. }
  78. return devices, total, nil
  79. }
  80. func (s *lampPoleGroupService) Remove(userId int, tenantId string, id int, name string) *common.Errors {
  81. device := &dao.LampPoleGroup{
  82. ID: id,
  83. IsDeleted: 1,
  84. UpdateUser: userId,
  85. UpdateTime: common.Time(time.Now()),
  86. }
  87. //todo
  88. // service.lampPoleService.CountRelation()
  89. err := device.Delete()
  90. if err != nil {
  91. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  92. common.DeviceTypeLampPoleGroup, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationFail)
  93. return common.FailResponse(err.Error(), nil)
  94. }
  95. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  96. common.DeviceTypeLampPoleGroup, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationSuccess)
  97. return nil
  98. }
  99. func (s *lampPoleGroupService) GetList(tenantId string) ([]*dao.LampPoleGroup, *common.Errors) {
  100. var devices []*dao.LampPoleGroup
  101. err := cache.Redis.Get(getLampPoleGroupListRedisKey(tenantId)).Scan(&devices)
  102. if err == nil {
  103. return devices, nil
  104. }
  105. device := &dao.LampPoleGroup{
  106. TenantId: tenantId,
  107. IsDeleted: 0,
  108. }
  109. devices, err = device.GetAllDevices()
  110. if err != nil {
  111. return nil, common.FailResponse(err.Error(), nil)
  112. }
  113. _ = cache.Redis.Set(getLampPoleGroupListRedisKey(tenantId), devices, 0).Err()
  114. return devices, nil
  115. }
  116. func getLampPoleGroupListRedisKey(tenantId string) string {
  117. return fmt.Sprintf(model.LampPoleGroupList, tenantId)
  118. }
  119. func (s *lampPoleGroupService) GetFiltration(tenantId string) ([]*dao.LampPoleGroup, *common.Errors) {
  120. var devices []*dao.LampPoleGroup
  121. err := cache.Redis.Get(getGroupFiltrationListRedisKey(tenantId)).Scan(&devices)
  122. if err == nil {
  123. return devices, nil
  124. }
  125. device := &dao.LampPoleGroup{
  126. TenantId: tenantId,
  127. IsDeleted: 0,
  128. }
  129. //todo
  130. // get device_light_control group_id
  131. // groupIds := lightControl.GetGroupIds()
  132. devices, err = device.GetAllDevices()
  133. if err != nil {
  134. return nil, common.FailResponse(err.Error(), nil)
  135. }
  136. _ = cache.Redis.Set(getGroupFiltrationListRedisKey(tenantId), devices, 0).Err()
  137. return devices, nil
  138. }
  139. func getGroupFiltrationListRedisKey(tenantId string) string {
  140. return fmt.Sprintf(model.GroupFiltrationList, tenantId)
  141. }
  142. func (s *lampPoleGroupService) GetTree(tenantId string) ([]*dao.LampPoleGroup, *common.Errors) {
  143. // todo use redis cache
  144. device := &dao.LampPoleGroup{
  145. TenantId: tenantId,
  146. IsDeleted: 0,
  147. }
  148. //todo lampPole getALlDevice
  149. devices, err := device.GetAllDevices()
  150. if err != nil {
  151. return nil, common.FailResponse(err.Error(), nil)
  152. }
  153. return devices, nil
  154. }
  155. func (s *lampPoleGroupService) GetByIds(tenantId string, ids []int) []*dao.LampPoleGroup {
  156. device := &dao.LampPoleGroup{
  157. TenantId: tenantId,
  158. IsDeleted: 0,
  159. }
  160. return device.BatchGet(ids)
  161. }