lightControlService.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/device/model"
  5. "iot_manager_service/app/system/service"
  6. "iot_manager_service/util/cache"
  7. "iot_manager_service/util/common"
  8. "iot_manager_service/util/logger"
  9. "strconv"
  10. "strings"
  11. "time"
  12. )
  13. // 中间件管理服务
  14. var LightControlService = new(lightControlService)
  15. type lightControlService struct{}
  16. func (s *lightControlService) Get(id int) (*model.LightControlDetail, *common.Errors) {
  17. // 创建查询实例
  18. device := &dao.LightControl{
  19. ID: id,
  20. }
  21. err := device.GetDevice()
  22. if err != nil {
  23. return nil, common.FailResponse(err.Error(), nil)
  24. }
  25. endTime, state := cache.GetDeviceState(device.Sn)
  26. detail := model.LightControlDetail{
  27. LightControl: *device,
  28. EndLineTime: endTime,
  29. NetworkState: state,
  30. RunState: state,
  31. }
  32. return &detail, nil
  33. }
  34. func (s *lightControlService) CreateOrUpdate(userId int64, tenantId int, req *dao.LightControl) *common.Errors {
  35. device := req
  36. device.TenantId = tenantId
  37. device.UpdateUser = userId
  38. device.UpdateTime = time.Now()
  39. if device.LampPoleId != 0 {
  40. lampPole, err := LampPoleService.GetOne(device.LampPoleId)
  41. if err == nil {
  42. device.LampLat = lampPole.PoleLat
  43. device.LampLng = lampPole.PoleLng
  44. device.LampPoleName = lampPole.PoleName
  45. device.LampPoleSn = lampPole.PoleSN
  46. device.LampPoleLocation = lampPole.InstallLocation
  47. device.GroupId = lampPole.GroupId
  48. } else {
  49. logger.Logger.Errorf("LampPoleService.GetOne err = %v \n", err)
  50. }
  51. }
  52. if device.ControlType == model.ControlType_ZigBee {
  53. if device.ZigbeeId == 0 {
  54. return common.ParamsInvalidResponse(model.ZigbeeSelect, nil)
  55. }
  56. if device.IsOnDemand == 0 {
  57. if device.ControlNo == "" {
  58. return common.ParamsInvalidResponse(model.ControlNONull, nil)
  59. }
  60. if !checkControlNoIsCompliance(device.ControlNo) {
  61. return common.ParamsInvalidResponse(model.ControlNOInvalid, nil)
  62. }
  63. }
  64. zigbee, err := ZigbeeService.Get(device.ZigbeeId)
  65. if err != nil {
  66. return err
  67. }
  68. device.ZigbeeName = zigbee.Name
  69. device.ZigbeeSn = zigbee.Sn
  70. device.ChannelNum = zigbee.ChannelNum
  71. device.NetworkNum = zigbee.NetworkNum
  72. }
  73. if device.ID == 0 {
  74. device.CreateTime = time.Now()
  75. device.CreateUser = userId
  76. if device.IsExistedBySN() {
  77. logger.Logger.Errorf("Create IsExistedBySN \n")
  78. return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  79. }
  80. logger.Logger.Errorf("device = %+v \n", device)
  81. if err := device.Create(); err != nil {
  82. logger.Logger.Errorf("Create err = %s \n", err.Error())
  83. return common.FailResponse(err.Error(), nil)
  84. }
  85. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  86. common.DeviceTypeLightControl, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  87. return common.SuccessResponse(common.Succeeded, nil)
  88. }
  89. if err := device.Update(); err != nil {
  90. logger.Logger.Errorf("Update err = %s \n", err.Error())
  91. return common.FailResponse(err.Error(), nil)
  92. }
  93. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  94. common.DeviceTypeLightControl, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  95. return common.SuccessResponse(common.Succeeded, nil)
  96. }
  97. func (s *lightControlService) List(searchValue, controlType, zigbeeId string, current, size int) ([]model.LightControlDetail,
  98. *common.Errors) {
  99. device := dao.LightControl{}
  100. if searchValue != "" {
  101. device.Sn = searchValue
  102. }
  103. if controlType != "" {
  104. cType, err := strconv.Atoi(controlType)
  105. if err == nil {
  106. device.ControlType = cType
  107. }
  108. }
  109. if zigbeeId != "" {
  110. zId, err := strconv.Atoi(zigbeeId)
  111. if err == nil {
  112. device.ZigbeeId = zId
  113. }
  114. }
  115. offset := (current - 1) * size
  116. limit := size
  117. devices, err := device.GetDevices(offset, limit)
  118. if err != nil {
  119. return nil, common.FailResponse(err.Error(), nil)
  120. }
  121. var details []model.LightControlDetail
  122. for _, d := range devices {
  123. detail := model.LightControlDetail{LightControl: d}
  124. endTime, state := cache.GetDeviceState(d.Sn)
  125. detail.RunState = state
  126. detail.EndLineTime = endTime
  127. detail.NetworkState = state
  128. details = append(details, detail)
  129. }
  130. return details, nil
  131. }
  132. func (s *lightControlService) Remove(userId int64, tenantId int, id int) *common.Errors {
  133. // 创建查询实例
  134. device := &dao.LightControl{
  135. ID: id,
  136. IsDeleted: 1,
  137. UpdateUser: userId,
  138. UpdateTime: time.Now(),
  139. }
  140. err := device.Delete()
  141. if err != nil {
  142. return common.FailResponse(err.Error(), nil)
  143. }
  144. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  145. common.DeviceTypeLightControl, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  146. return nil
  147. }
  148. func (s *lightControlService) GetList(tenantId int) ([]dao.LightControl, *common.Errors) {
  149. device := &dao.LightControl{
  150. TenantId: tenantId,
  151. IsDeleted: 0,
  152. }
  153. devices, err := device.GetAllDevices()
  154. if err != nil {
  155. return nil, common.FailResponse(err.Error(), nil)
  156. }
  157. return devices, nil
  158. }
  159. func (s *lightControlService) Enable(id, status int) *common.Errors {
  160. // 创建查询实例
  161. device := &dao.LightControl{
  162. ID: id,
  163. IsEnable: status,
  164. }
  165. err := device.UpdateEnable()
  166. if err != nil {
  167. return common.FailResponse(err.Error(), nil)
  168. }
  169. return nil
  170. }
  171. func (s *lightControlService) GetOne(id int) (*dao.LightControl, *common.Errors) {
  172. device := &dao.LightControl{
  173. ID: id,
  174. }
  175. err := device.GetDevice()
  176. if err != nil {
  177. return nil, common.FailResponse(err.Error(), nil)
  178. }
  179. return device, nil
  180. }
  181. func (s *lightControlService) GetByGroupId(groupId int) ([]dao.LightControl, *common.Errors) {
  182. // 创建查询实例
  183. device := &dao.LightControl{
  184. GroupId: groupId,
  185. }
  186. devices, err := device.GetDevicesByGroup()
  187. if err != nil {
  188. return nil, common.FailResponse(err.Error(), nil)
  189. }
  190. return devices, nil
  191. }
  192. func (s *lightControlService) GetByGateway(id int) []dao.LightControl {
  193. // 创建查询实例
  194. device := &dao.LightControl{
  195. GatewayId: id,
  196. }
  197. return device.GetDevicesByGateway()
  198. }
  199. func (s *lightControlService) GetByLampPole(id int) []dao.LightControl {
  200. // 创建查询实例
  201. device := &dao.LightControl{
  202. LampPoleId: id,
  203. }
  204. return device.GetDevicesByLampPole()
  205. }
  206. //检查灯控编号是否合规1-1——255-255
  207. func checkControlNoIsCompliance(controlNo string) bool {
  208. arr := strings.Split(controlNo, "-")
  209. if len(arr) != 2 {
  210. return false
  211. }
  212. one, err := strconv.Atoi(arr[0])
  213. if err != nil || one < 1 || one > 255 {
  214. return false
  215. }
  216. two, err := strconv.Atoi(arr[1])
  217. if err != nil || two < 1 || two > 255 {
  218. return false
  219. }
  220. return true
  221. }