lampPoleService.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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/common"
  7. "iot_manager_service/util/logger"
  8. "time"
  9. )
  10. // 中间件管理服务
  11. var LampPoleService = new(lampPoleService)
  12. type lampPoleService struct{}
  13. func (s *lampPoleService) Get(id int) (*dao.LampPole, *common.Errors) {
  14. // 创建查询实例
  15. device := &dao.LampPole{
  16. ID: id,
  17. }
  18. err := device.GetDevice()
  19. if err != nil {
  20. return nil, common.FailResponse(err.Error(), nil)
  21. }
  22. return device, nil
  23. }
  24. func (s *lampPoleService) GetRelevanceDetail(id int) (*model.LampPoleDetail, *common.Errors) {
  25. // 创建查询实例
  26. device := &dao.LampPole{
  27. ID: id,
  28. }
  29. err := device.GetDevice()
  30. if err != nil {
  31. return nil, common.FailResponse(err.Error(), nil)
  32. }
  33. return &model.LampPoleDetail{
  34. LampPole: *device,
  35. AlarmTerminalList: AlarmTerminalService.GetByLampPole(device.ID),
  36. CameraList: CameraService.GetByLampPole(device.ID),
  37. CaptureUnitList: CaptureUintService.GetByLampPole(device.ID),
  38. GatewayList: GatewayService.GetByLampPole(device.ID),
  39. InfoBoardList: InfoBoardService.GetByLampPole(device.ID),
  40. IpBroadcastList: IpBroadcastService.GetByLampPole(device.ID),
  41. LightControlList: LightControlService.GetByLampPole(device.ID),
  42. SensorList: OptoSensorService.GetByLampPole(device.ID),
  43. ZigbeeList: ZigbeeService.GetByLampPole(device.ID),
  44. }, nil
  45. }
  46. func (s *lampPoleService) CreateOrUpdate(userId int, tenantId string, req *dao.LampPole) *common.Errors {
  47. device := req
  48. device.TenantId = tenantId
  49. device.CoordType = 1
  50. device.UpdateUser = userId
  51. device.UpdateTime = time.Now()
  52. if device.ID == 0 {
  53. device.CreateTime = time.Now()
  54. device.CreateUser = userId
  55. if device.IsExistedBySN() {
  56. logger.Logger.Errorf("Create IsExistedBySN \n")
  57. return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  58. }
  59. logger.Logger.Errorf("device = %+v \n", device)
  60. if err := device.Create(); err != nil {
  61. logger.Logger.Errorf("Create err = %s \n", err.Error())
  62. return common.FailResponse(err.Error(), nil)
  63. }
  64. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  65. common.DeviceTypeLampPole, common.GetDeviceObject(device.ID, device.PoleName), common.OperationSuccess)
  66. return common.SuccessResponse(common.Succeeded, nil)
  67. }
  68. if err := device.Update(); err != nil {
  69. logger.Logger.Errorf("Update err = %s \n", err.Error())
  70. return common.FailResponse(err.Error(), nil)
  71. }
  72. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  73. common.DeviceTypeLampPole, common.GetDeviceObject(device.ID, device.PoleName), common.OperationSuccess)
  74. return common.SuccessResponse(common.Succeeded, nil)
  75. }
  76. func (s *lampPoleService) List(searchValue, groupId, boxId string, current, size int) ([]dao.LampPole, int64, *common.Errors) {
  77. device := dao.LampPole{}
  78. if searchValue != "" {
  79. device.PoleSN = searchValue
  80. }
  81. device.GroupId = common.StringToInt(groupId)
  82. device.BoxId = common.StringToInt(boxId)
  83. offset := (current - 1) * size
  84. limit := size
  85. devices, total, err := device.GetDevices(offset, limit)
  86. if err != nil {
  87. return nil, 0, common.FailResponse(err.Error(), nil)
  88. }
  89. return devices, total, nil
  90. }
  91. func (s *lampPoleService) Remove(userId int, tenantId string, id int) *common.Errors {
  92. // 创建查询实例
  93. device := &dao.LampPole{
  94. ID: id,
  95. IsDeleted: 1,
  96. UpdateUser: userId,
  97. UpdateTime: time.Now(),
  98. }
  99. err := device.Delete()
  100. if err != nil {
  101. return common.FailResponse(err.Error(), nil)
  102. }
  103. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  104. common.DeviceTypeLampPole, common.GetDeviceObject(device.ID, device.PoleName), common.OperationSuccess)
  105. return nil
  106. }
  107. func (s *lampPoleService) GetList(tenantId string) ([]*dao.LampPole, *common.Errors) {
  108. device := &dao.LampPole{
  109. TenantId: tenantId,
  110. IsDeleted: 0,
  111. }
  112. devices, err := device.GetAllDevices()
  113. for _, device := range devices {
  114. device.PoleName = device.PoleName + "(" + device.PoleSN + ")"
  115. }
  116. if err != nil {
  117. return nil, common.FailResponse(err.Error(), nil)
  118. }
  119. return devices, nil
  120. }
  121. func (s *lampPoleService) GetOne(id int) (*dao.LampPole, *common.Errors) {
  122. device := &dao.LampPole{
  123. ID: id,
  124. }
  125. err := device.GetDevice()
  126. if err != nil {
  127. return nil, common.FailResponse(err.Error(), nil)
  128. }
  129. return device, nil
  130. }
  131. func (s *lampPoleService) CountLampPole(groupId int) int64 {
  132. device := &dao.LampPole{
  133. GroupId: groupId,
  134. }
  135. return device.Count()
  136. }
  137. func (s *lampPoleService) DeviceCount() dao.DeviceStatus {
  138. var rsp dao.DeviceStatus
  139. d := dao.LampPole{}
  140. rsp.Set(d.DeviceCount1())
  141. return rsp
  142. }
  143. func (s *lampPoleService) ListDevices() []dao.Device {
  144. pole := dao.LampPole{}
  145. return pole.ListDevices1()
  146. }