lightControlService.go 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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 int, tenantId string, 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. //新加的 灯控1 给一个默认策略 116
  86. light := dao.IntelligentLight{TenantId: tenantId}
  87. light.CreateDefaultStrategyByLight(device.ID, 1, 116)
  88. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  89. common.DeviceTypeLightControl, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  90. return common.SuccessResponse(common.Succeeded, nil)
  91. }
  92. if err := device.Update(); err != nil {
  93. logger.Logger.Errorf("Update err = %s \n", err.Error())
  94. return common.FailResponse(err.Error(), nil)
  95. }
  96. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  97. common.DeviceTypeLightControl, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  98. return common.SuccessResponse(common.Succeeded, nil)
  99. }
  100. func (s *lightControlService) List(searchValue, controlType, zigbeeId string, current, size int) ([]model.LightControlDetail, int64,
  101. *common.Errors) {
  102. device := dao.LightControl{}
  103. if searchValue != "" {
  104. device.Sn = searchValue
  105. }
  106. if controlType != "" {
  107. cType, err := strconv.Atoi(controlType)
  108. if err == nil {
  109. device.ControlType = cType
  110. }
  111. }
  112. if zigbeeId != "" {
  113. zId, err := strconv.Atoi(zigbeeId)
  114. if err == nil {
  115. device.ZigbeeId = zId
  116. }
  117. }
  118. offset := (current - 1) * size
  119. limit := size
  120. devices, total, err := device.GetDevices(offset, limit)
  121. if err != nil {
  122. return nil, 0, common.FailResponse(err.Error(), nil)
  123. }
  124. var details []model.LightControlDetail
  125. for _, d := range devices {
  126. detail := model.LightControlDetail{LightControl: d}
  127. endTime, state := cache.GetDeviceState(d.Sn)
  128. detail.RunState = state
  129. detail.EndLineTime = endTime
  130. detail.NetworkState = state
  131. detail.ControlTypeName = "485"
  132. if detail.ControlType == 1 {
  133. detail.ControlTypeName = "nbiot"
  134. }
  135. details = append(details, detail)
  136. }
  137. return details, total, nil
  138. }
  139. func (s *lightControlService) Remove(userId int, tenantId string, id int) *common.Errors {
  140. // 创建查询实例
  141. device := &dao.LightControl{
  142. ID: id,
  143. IsDeleted: 1,
  144. UpdateUser: userId,
  145. UpdateTime: time.Now(),
  146. }
  147. err := device.Delete()
  148. if err != nil {
  149. return common.FailResponse(err.Error(), nil)
  150. }
  151. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  152. common.DeviceTypeLightControl, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  153. return nil
  154. }
  155. func (s *lightControlService) GetList(tenantId string) ([]dao.LightControl, *common.Errors) {
  156. device := &dao.LightControl{
  157. TenantId: tenantId,
  158. IsDeleted: 0,
  159. }
  160. devices, err := device.GetAllDevices()
  161. if err != nil {
  162. return nil, common.FailResponse(err.Error(), nil)
  163. }
  164. return devices, nil
  165. }
  166. func (s *lightControlService) Enable(id, status int) *common.Errors {
  167. // 创建查询实例
  168. device := &dao.LightControl{
  169. ID: id,
  170. IsEnable: status,
  171. }
  172. err := device.UpdateEnable()
  173. if err != nil {
  174. return common.FailResponse(err.Error(), nil)
  175. }
  176. return nil
  177. }
  178. func (s *lightControlService) GetOne(id int) (*dao.LightControl, *common.Errors) {
  179. device := &dao.LightControl{
  180. ID: id,
  181. }
  182. err := device.GetDevice()
  183. if err != nil {
  184. return nil, common.FailResponse(err.Error(), nil)
  185. }
  186. return device, nil
  187. }
  188. func (s *lightControlService) GetByGroupId(groupId int) ([]dao.LightControl, *common.Errors) {
  189. // 创建查询实例
  190. device := &dao.LightControl{
  191. GroupId: groupId,
  192. }
  193. devices, err := device.GetDevicesByGroup()
  194. if err != nil {
  195. return nil, common.FailResponse(err.Error(), nil)
  196. }
  197. return devices, nil
  198. }
  199. func (s *lightControlService) GetByGateway(id int) []dao.LightControl {
  200. // 创建查询实例
  201. device := &dao.LightControl{
  202. GatewayId: id,
  203. }
  204. return device.GetDevicesByGateway()
  205. }
  206. func (s *lightControlService) GetByLampPole(id int) []dao.LightControl {
  207. // 创建查询实例
  208. device := &dao.LightControl{
  209. LampPoleId: id,
  210. }
  211. return device.GetDevicesByLampPole()
  212. }
  213. // 检查灯控编号是否合规1-1——255-255
  214. func checkControlNoIsCompliance(controlNo string) bool {
  215. arr := strings.Split(controlNo, "-")
  216. if len(arr) != 2 {
  217. return false
  218. }
  219. one, err := strconv.Atoi(arr[0])
  220. if err != nil || one < 1 || one > 255 {
  221. return false
  222. }
  223. two, err := strconv.Atoi(arr[1])
  224. if err != nil || two < 1 || two > 255 {
  225. return false
  226. }
  227. return true
  228. }
  229. func (s *lightControlService) DeviceCount() dao.DeviceStatus {
  230. var rsp dao.DeviceStatus
  231. d := dao.LightControl{}
  232. rsp.Set(d.DeviceCount1())
  233. return rsp
  234. }
  235. func (s *lightControlService) ListDevices() []dao.Device {
  236. d := dao.LightControl{}
  237. return d.ListDevices1()
  238. }