captureUintService.go 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. "time"
  10. )
  11. // 中间件管理服务
  12. var CaptureUintService = new(captureUintService)
  13. type captureUintService struct{}
  14. func (s *captureUintService) CaptureSubmit(userId int64, tenantId string, req *model.CaptureDetail) *common.Errors {
  15. device := req.CaptureUnit
  16. device.TenantId = tenantId
  17. device.UpdateUser = userId
  18. device.UpdateTime = time.Now()
  19. if gateway, err := GatewayService.GetOne(device.GatewayId); err == nil {
  20. device.GatewayName = gateway.GatewayName
  21. device.GatewaySn = gateway.GatewaySn
  22. }
  23. if device.ID == 0 {
  24. device.CreateTime = time.Now()
  25. device.CreateUser = userId
  26. if device.IsExistedBySN() {
  27. logger.Logger.Errorf("Create IsExistedBySN \n")
  28. return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  29. }
  30. logger.Logger.Errorf("device = %+v \n", device)
  31. if err := device.Create(); err != nil {
  32. logger.Logger.Errorf("Create err = %s \n", err.Error())
  33. return common.FailResponse(err.Error(), nil)
  34. }
  35. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  36. common.DeviceTypeCaptureUnit, common.GetDeviceObject(device.ID, device.GatewayName), common.OperationSuccess)
  37. return common.SuccessResponse(common.Succeeded, nil)
  38. }
  39. if err := device.Update(); err != nil {
  40. logger.Logger.Errorf("Update err = %s \n", err.Error())
  41. return common.FailResponse(err.Error(), nil)
  42. }
  43. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  44. common.DeviceTypeCaptureUnit, common.GetDeviceObject(device.ID, device.GatewayName), common.OperationSuccess)
  45. return common.SuccessResponse(common.Succeeded, nil)
  46. }
  47. func (s *captureUintService) GetCapture(id int) (*model.CaptureDetail, *common.Errors) {
  48. // 创建查询实例
  49. device := &dao.CaptureUnit{
  50. ID: id,
  51. }
  52. err := device.GetDevice()
  53. if err != nil {
  54. return nil, common.FailResponse(err.Error(), nil)
  55. }
  56. detail := &model.CaptureDetail{CaptureUnit: *device}
  57. endTime, state := cache.GetDeviceState(device.CaptureSn)
  58. detail.NetworkState = state
  59. detail.EndLineTime = endTime
  60. return detail, nil
  61. }
  62. func (s *captureUintService) CaptureList(searchValue string, current, size int) ([]model.CaptureDetail, int64, *common.Errors) {
  63. var details []model.CaptureDetail
  64. device := dao.CaptureUnit{}
  65. if searchValue != "" {
  66. device.CaptureSn = searchValue
  67. }
  68. offset := (current - 1) * size
  69. limit := size
  70. devices, total, err := device.GetDevices(offset, limit)
  71. if err != nil {
  72. return nil, 0, common.FailResponse(err.Error(), nil)
  73. }
  74. for _, d := range devices {
  75. endTime, state := cache.GetDeviceState(d.CaptureSn)
  76. details = append(details, model.CaptureDetail{
  77. CaptureUnit: d,
  78. EndLineTime: endTime,
  79. NetworkState: state,
  80. })
  81. }
  82. return details, total, nil
  83. }
  84. func (s *captureUintService) CaptureGetList(tenantId string, ) ([]*dao.CaptureUnit, *common.Errors) {
  85. device := &dao.CaptureUnit{
  86. TenantId: tenantId,
  87. IsDeleted: 0,
  88. }
  89. devices, err := device.GetAllDevices()
  90. if err != nil {
  91. return nil, common.FailResponse(err.Error(), nil)
  92. }
  93. for _, d := range devices {
  94. d.CaptureName = d.CaptureName + "(" + d.CaptureSn + ")"
  95. }
  96. return devices, nil
  97. }
  98. func (s *captureUintService) GetPoint(id int) (*dao.CheckPoint, *common.Errors) {
  99. // 创建查询实例
  100. device := &dao.CheckPoint{
  101. ID: id,
  102. }
  103. err := device.GetDevice()
  104. if err != nil {
  105. return nil, common.FailResponse(err.Error(), nil)
  106. }
  107. return device, nil
  108. }
  109. func (s *captureUintService) PointSubmit(userId int64, tenantId string, req *dao.CheckPoint) *common.Errors {
  110. device := req
  111. device.TenantId = tenantId
  112. device.UpdateUser = userId
  113. device.UpdateTime = time.Now()
  114. if device.ID == 0 {
  115. device.CreateTime = time.Now()
  116. device.CreateUser = userId
  117. if device.IsExistedBySN() {
  118. logger.Logger.Errorf("Create IsExistedBySN \n")
  119. return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  120. }
  121. logger.Logger.Errorf("device = %+v \n", device)
  122. if err := device.Create(); err != nil {
  123. logger.Logger.Errorf("Create err = %s \n", err.Error())
  124. return common.FailResponse(err.Error(), nil)
  125. }
  126. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  127. common.DeviceTypePoint, common.GetDeviceObject(device.ID, device.PointName), common.OperationSuccess)
  128. return common.SuccessResponse(common.Succeeded, nil)
  129. }
  130. if err := device.Update(); err != nil {
  131. logger.Logger.Errorf("Update err = %s \n", err.Error())
  132. return common.FailResponse(err.Error(), nil)
  133. }
  134. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  135. common.DeviceTypePoint, common.GetDeviceObject(device.ID, device.PointName), common.OperationSuccess)
  136. return common.SuccessResponse(common.Succeeded, nil)
  137. }
  138. func (s *captureUintService) PointList(searchValue string, current, size int) ([]dao.CheckPoint, int64, *common.Errors) {
  139. device := dao.CheckPoint{}
  140. if searchValue != "" {
  141. device.PointSN = searchValue
  142. }
  143. offset := (current - 1) * size
  144. limit := size
  145. devices, total, err := device.GetDevices(offset, limit)
  146. if err != nil {
  147. return nil, 0, common.FailResponse(err.Error(), nil)
  148. }
  149. return devices, total, nil
  150. }
  151. func (s *captureUintService) PointGetList(tenantId string, ) ([]*dao.CheckPoint, *common.Errors) {
  152. device := &dao.CheckPoint{
  153. TenantId: tenantId,
  154. IsDeleted: 0,
  155. }
  156. devices, err := device.GetAllDevices()
  157. if err != nil {
  158. return nil, common.FailResponse(err.Error(), nil)
  159. }
  160. for _, d := range devices {
  161. d.PointName = d.PointName + "(" + d.PointSN + ")"
  162. }
  163. return devices, nil
  164. }
  165. func (s *captureUintService) RemoveCapture(userId int64, tenantId string, id int) *common.Errors {
  166. // 创建查询实例
  167. device := &dao.CaptureUnit{
  168. ID: id,
  169. IsDeleted: 1,
  170. UpdateUser: userId,
  171. UpdateTime: time.Now(),
  172. }
  173. err := device.Delete()
  174. if err != nil {
  175. return common.FailResponse(err.Error(), nil)
  176. }
  177. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  178. common.DeviceTypeCaptureUnit, common.GetDeviceObject(device.ID, device.CaptureName), common.OperationSuccess)
  179. return nil
  180. }
  181. func (s *captureUintService) RemovePoint(userId int64, tenantId string, id int) *common.Errors {
  182. // 创建查询实例
  183. device := &dao.CheckPoint{
  184. ID: id,
  185. IsDeleted: 1,
  186. UpdateUser: userId,
  187. UpdateTime: time.Now(),
  188. }
  189. err := device.Delete()
  190. if err != nil {
  191. return common.FailResponse(err.Error(), nil)
  192. }
  193. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  194. common.DeviceTypePoint, common.GetDeviceObject(device.ID, device.PointName), common.OperationSuccess)
  195. return nil
  196. }
  197. func (s *captureUintService) GetCaptureByGateway(id int) []dao.CaptureUnit {
  198. // 创建查询实例
  199. device := &dao.CaptureUnit{
  200. GatewayId: id,
  201. }
  202. return device.GetDevicesByGateway()
  203. }
  204. func (s *captureUintService) GetByLampPole(id int) []dao.CaptureUnit {
  205. // 创建查询实例
  206. device := &dao.CaptureUnit{
  207. LampPoleId: id,
  208. }
  209. return device.GetDevicesByLampPole()
  210. }