onDemandGroupService.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package service
  2. import (
  3. "fmt"
  4. "iot_manager_service/app/device/dao"
  5. "iot_manager_service/app/device/model"
  6. "iot_manager_service/app/system/service"
  7. "iot_manager_service/util/cache"
  8. "iot_manager_service/util/common"
  9. "iot_manager_service/util/logger"
  10. "strconv"
  11. "time"
  12. )
  13. // 中间件管理服务
  14. var OnDemandGroupService = new(onDemandGroupService)
  15. type onDemandGroupService struct{}
  16. func (s *onDemandGroupService) Get(id int) (*dao.OnDemandGroup, *common.Errors) {
  17. // 创建查询实例
  18. device := &dao.OnDemandGroup{
  19. ID: id,
  20. }
  21. err := device.GetDevice()
  22. if err != nil {
  23. return nil, common.FailResponse(err.Error(), nil)
  24. }
  25. return device, nil
  26. }
  27. func (s *onDemandGroupService) CreateOrUpdate(userId int, tenantId string, req *dao.OnDemandGroup) *common.Errors {
  28. device := req
  29. device.TenantId = tenantId
  30. device.UpdateUser = userId
  31. device.UpdateTime = time.Now()
  32. if device.ID == 0 {
  33. device.CreateTime = time.Now()
  34. device.CreateUser = userId
  35. if device.IsExistedBySN() {
  36. logger.Logger.Errorf("Create IsExistedBySN \n")
  37. return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  38. }
  39. logger.Logger.Errorf("device = %+v \n", device)
  40. if err := device.Create(); err != nil {
  41. logger.Logger.Errorf("Create err = %s \n", err.Error())
  42. return common.FailResponse(err.Error(), nil)
  43. }
  44. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  45. common.DeviceTypeAlarmServer, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationSuccess)
  46. return common.SuccessResponse(common.Succeeded, nil)
  47. }
  48. if err := device.Update(); err != nil {
  49. logger.Logger.Errorf("Update err = %s \n", err.Error())
  50. return common.FailResponse(err.Error(), nil)
  51. }
  52. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  53. common.DeviceTypeAlarmServer, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationSuccess)
  54. return common.SuccessResponse(common.Succeeded, nil)
  55. }
  56. func (s *onDemandGroupService) List(searchValue string, current, size int) ([]dao.OnDemandGroup, *common.Errors) {
  57. device := dao.OnDemandGroup{}
  58. if searchValue != "" {
  59. device.PoleGroupName = searchValue
  60. }
  61. offset := (current - 1) * size
  62. limit := size
  63. devices, err := device.GetDevices(offset, limit)
  64. if err != nil {
  65. return nil, common.FailResponse(err.Error(), nil)
  66. }
  67. return devices, nil
  68. }
  69. func (s *onDemandGroupService) Remove(userId int, tenantId string, id int) *common.Errors {
  70. // 创建查询实例
  71. device := &dao.OnDemandGroup{
  72. ID: id,
  73. IsDeleted: 1,
  74. UpdateUser: userId,
  75. UpdateTime: time.Now(),
  76. }
  77. err := device.Delete()
  78. if err != nil {
  79. return common.FailResponse(err.Error(), nil)
  80. }
  81. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  82. common.DeviceTypeAlarmServer, common.GetDeviceObject(device.ID, device.PoleGroupName), common.OperationSuccess)
  83. return nil
  84. }
  85. func (s *onDemandGroupService) GetList(tenantId string) ([]*dao.OnDemandGroup, *common.Errors) {
  86. var devices []*dao.OnDemandGroup
  87. err := cache.Redis.Get(getOnDemandGroupListRedisKey(tenantId)).Scan(&devices)
  88. if err == nil {
  89. return devices, nil
  90. }
  91. device := &dao.OnDemandGroup{
  92. TenantId: tenantId,
  93. IsDeleted: 0,
  94. }
  95. devices, err = device.GetAllDevices()
  96. if err != nil {
  97. return nil, common.FailResponse(err.Error(), nil)
  98. }
  99. _ = cache.Redis.Set(getOnDemandGroupListRedisKey(tenantId), devices, 0).Err()
  100. return devices, nil
  101. }
  102. func getOnDemandGroupListRedisKey(tenantId string) string {
  103. return fmt.Sprintf(model.OnDemandGroupList, tenantId)
  104. }
  105. func (s *onDemandGroupService) GroupNumberList(id int) ([]model.RspOnDemandGroupNumber, *common.Errors) {
  106. // 创建查询实例
  107. device := &dao.OnDemandGroup{
  108. ID: id,
  109. }
  110. err := device.GetDevice()
  111. if err != nil {
  112. return nil, common.FailResponse(err.Error(), nil)
  113. }
  114. var list []model.RspOnDemandGroupNumber
  115. for i := 1; i <= device.LampPoleCount; i++ {
  116. list = append(list, model.RspOnDemandGroupNumber{Name: strconv.Itoa(i), Value: i})
  117. }
  118. return list, nil
  119. }