LightStrategyService.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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/util"
  7. "time"
  8. )
  9. // 中间件管理服务
  10. var LightStrategyService = new(lightStrategyService)
  11. type lightStrategyService struct{}
  12. func (s *lightStrategyService) Get(id int) (*dao.LightStrategy, *util.Errors) {
  13. // 创建查询实例
  14. device := &dao.LightStrategy{
  15. ID: id,
  16. }
  17. err := device.GetDevice()
  18. if err != nil {
  19. return nil, util.FailResponse(err.Error(), nil)
  20. }
  21. return device, nil
  22. }
  23. func (s *lightStrategyService) CreateOrUpdate(req model.LightStrategyDetail) *util.Errors {
  24. // 创建查询实例
  25. device := req
  26. if device.TenantID == "" {
  27. device.TenantID = "000000" // todo: 使用登录态
  28. }
  29. device.UpdateUser = "TODO" // todo: 使用登录态
  30. device.UpdateTime = time.Now()
  31. lightConditions := device.LightConditionList
  32. timeConditions := device.TimeConditionList
  33. if len(lightConditions) == 0 {
  34. lightConditionDetailList := device.LightConditionDetailList
  35. for i := 0; i < len(lightConditionDetailList); i++ {
  36. var detail = lightConditionDetailList[i]
  37. condition := dao.LightCondition{
  38. ID: detail.ID,
  39. Remark: detail.Remark,
  40. LightId: detail.LightId,
  41. Luminance: detail.Luminance,
  42. ScopeStart: detail.ScopeStart,
  43. ScopeEnd: detail.ScopeEnd,
  44. }
  45. lightConditions = append(lightConditions, condition)
  46. }
  47. }
  48. if len(timeConditions) == 0 {
  49. timeConditionDetailList := device.TimeConditionDetailList
  50. for i := 0; i < len(timeConditionDetailList); i++ {
  51. var detail = timeConditionDetailList[i]
  52. condition := dao.TimeCondition{
  53. ID: detail.ID,
  54. Remark: detail.Remark,
  55. LightId: detail.LightId,
  56. Luminance: detail.Luminance,
  57. StartTime: detail.StartTime,
  58. EndTime: detail.EndTime,
  59. Sunshine: detail.Sunshine,
  60. }
  61. timeConditions = append(timeConditions, condition)
  62. }
  63. }
  64. if req.ID == 0 {
  65. device.CreateTime = time.Now()
  66. device.CreateUser = "TODO" // todo: 使用登录态
  67. if device.IsExistedBySN() {
  68. fmt.Printf("Create GetDeviceID err \n")
  69. return util.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  70. }
  71. if err := device.Create(); err != nil {
  72. fmt.Printf("Create err = %s \n", err.Error())
  73. return util.FailResponse(err.Error(), nil)
  74. }
  75. return util.SuccessResponse(util.Succeeded, nil)
  76. }
  77. //更新
  78. if device.IsExistedByNameAndCode() {
  79. return util.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  80. }
  81. if err := device.Update(); err != nil {
  82. fmt.Printf("Update err = %s \n", err.Error())
  83. return util.FailResponse(err.Error(), nil)
  84. }
  85. //用于比较光照度重叠
  86. //todo operation record
  87. return util.SuccessResponse(util.Succeeded, nil)
  88. }
  89. func (s *lightStrategyService) List(searchValue string, current, size int) ([]dao.LightStrategy, *util.Errors) {
  90. device := dao.LightStrategy{}
  91. if searchValue != "" {
  92. device.LightSn = searchValue
  93. device.LightName = searchValue
  94. }
  95. offset := (current - 1) * size
  96. limit := size
  97. devices, err := device.GetDevices(offset, limit)
  98. if err != nil {
  99. return nil, util.FailResponse(err.Error(), nil)
  100. }
  101. return devices, nil
  102. }
  103. func (s *lightStrategyService) Remove(id int) *util.Errors {
  104. // 创建查询实例
  105. device := &dao.LightStrategy{
  106. ID: id,
  107. IsDeleted: 1,
  108. UpdateUser: "TODO", // todo 使用登录态
  109. UpdateTime: time.Now(),
  110. }
  111. //todo
  112. // service.transformerService.CountRelation()
  113. //todo operation record
  114. err := device.Delete()
  115. if err != nil {
  116. return util.FailResponse(err.Error(), nil)
  117. }
  118. return nil
  119. }
  120. func (s *lightStrategyService) GetOne(id int) (*dao.LightStrategy, *util.Errors) {
  121. device := &dao.LightStrategy{
  122. ID: id,
  123. }
  124. err := device.GetDevice()
  125. if err != nil {
  126. return nil, nil
  127. }
  128. return device, nil
  129. }