bridgeService.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/system/service"
  5. "iot_manager_service/util/common"
  6. "iot_manager_service/util/logger"
  7. "time"
  8. )
  9. var BridgeService = new(bridgeService)
  10. type bridgeService struct{}
  11. func (s *bridgeService) Get(id int) (*dao.Bridge, *common.Errors) {
  12. // 创建查询实例
  13. device := &dao.Bridge{
  14. ID: id,
  15. }
  16. err := device.GetDevice()
  17. if err != nil {
  18. return nil, common.FailResponse(err.Error(), nil)
  19. }
  20. return device, nil
  21. }
  22. func (s *bridgeService) CreateOrUpdate(userId int, tenantId string, req dao.Bridge) *common.Errors {
  23. // 创建查询实例
  24. device := req
  25. device.TenantId = tenantId
  26. device.UpdateUser = userId
  27. device.UpdateTime = time.Now()
  28. if req.ID == 0 {
  29. device.CreateTime = time.Now()
  30. device.CreateUser = userId
  31. if device.IsExistedBySN() {
  32. logger.Logger.Errorf("Create GetDeviceID err \n")
  33. return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  34. }
  35. if err := device.Create(); err != nil {
  36. logger.Logger.Errorf("Create err = %s \n", err.Error())
  37. return common.FailResponse(err.Error(), nil)
  38. }
  39. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  40. common.DeviceTypeBridge, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  41. return common.SuccessResponse(common.Succeeded, nil)
  42. }
  43. if device.IsExistedByNameAndCode() {
  44. return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  45. }
  46. if err := device.Update(); err != nil {
  47. logger.Logger.Errorf("Update err = %s \n", err.Error())
  48. return common.FailResponse(err.Error(), nil)
  49. }
  50. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  51. common.DeviceTypeBridge, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  52. return common.SuccessResponse(common.Succeeded, nil)
  53. }
  54. func (s *bridgeService) List(searchValue string, current, size int) ([]dao.Bridge, int64, *common.Errors) {
  55. device := dao.Bridge{}
  56. if searchValue != "" {
  57. device.SN = searchValue
  58. device.Name = searchValue
  59. }
  60. offset := (current - 1) * size
  61. limit := size
  62. devices, total, err := device.GetDevices(offset, limit)
  63. if err != nil {
  64. return nil, 0, common.FailResponse(err.Error(), nil)
  65. }
  66. return devices, total, nil
  67. }
  68. func (s *bridgeService) Remove(userId int, tenantId string, id int) *common.Errors {
  69. // 创建查询实例
  70. device := &dao.Bridge{
  71. ID: id,
  72. IsDeleted: 1,
  73. UpdateUser: userId,
  74. UpdateTime: time.Now(),
  75. }
  76. err := device.Delete()
  77. if err != nil {
  78. return common.FailResponse(err.Error(), nil)
  79. }
  80. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  81. common.DeviceTypeBridge, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  82. return nil
  83. }
  84. func (s *bridgeService) GetList(tenantId string) ([]*dao.Bridge, *common.Errors) {
  85. // todo use redis cache
  86. device := &dao.Bridge{
  87. TenantId: tenantId,
  88. IsDeleted: 0,
  89. }
  90. devices, err := device.GetAllDevices()
  91. if err != nil {
  92. return nil, common.FailResponse(err.Error(), nil)
  93. }
  94. return devices, nil
  95. }
  96. func (s *bridgeService) DeviceCount() dao.DeviceStatus {
  97. var rsp dao.DeviceStatus
  98. d := dao.Bridge{}
  99. rsp.Set(d.DeviceCount1())
  100. return rsp
  101. }
  102. func (s *bridgeService) ListDevices() []dao.Device {
  103. d := dao.Bridge{}
  104. return d.ListDevices1()
  105. }