lightControlService.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. // 中间件管理服务
  13. var LightControlService = new(lightControlService)
  14. type lightControlService struct{}
  15. func (s *lightControlService) Get(id int) (*model.LightControlDetail, *util.Errors) {
  16. // 创建查询实例
  17. device := &dao.LightControl{
  18. ID: id,
  19. }
  20. err := device.GetDevice()
  21. if err != nil {
  22. return nil, util.FailResponse(err.Error(), nil)
  23. }
  24. endTime, state := util.GetDeviceState(device.Sn)
  25. detail := model.LightControlDetail{
  26. LightControl: *device,
  27. EndLineTime: endTime,
  28. NetworkState: state,
  29. RunState: state,
  30. }
  31. return &detail, nil
  32. }
  33. func (s *lightControlService) CreateOrUpdate(userId int64, tenantId int, req *dao.LightControl) *util.Errors {
  34. device := req
  35. device.TenantId = tenantId
  36. device.UpdateUser = userId
  37. device.UpdateTime = time.Now()
  38. if device.LampPoleId != 0 {
  39. lampPole, err := LampPoleService.GetOne(device.LampPoleId)
  40. if err == nil {
  41. device.LampLat = lampPole.PoleLat
  42. device.LampLng = lampPole.PoleLng
  43. device.LampPoleName = lampPole.PoleName
  44. device.LampPoleSn = lampPole.PoleSN
  45. device.LampPoleLocation = lampPole.InstallLocation
  46. device.GroupId = lampPole.GroupId
  47. } else {
  48. fmt.Printf("LampPoleService.GetOne err = %v \n", err)
  49. }
  50. }
  51. if device.ControlType == model.ControlType_ZigBee {
  52. if device.ZigbeeId == 0 {
  53. return util.ParamsInvalidResponse(model.ZigbeeSelect, nil)
  54. }
  55. if device.IsOnDemand == 0 {
  56. if device.ControlNo == "" {
  57. return util.ParamsInvalidResponse(model.ControlNONull, nil)
  58. }
  59. if !checkControlNoIsCompliance(device.ControlNo) {
  60. return util.ParamsInvalidResponse(model.ControlNOInvalid, nil)
  61. }
  62. }
  63. zigbee, err := ZigbeeService.Get(device.ZigbeeId)
  64. if err != nil {
  65. return err
  66. }
  67. device.ZigbeeName = zigbee.Name
  68. device.ZigbeeSn = zigbee.Sn
  69. device.ChannelNum = zigbee.ChannelNum
  70. device.NetworkNum = zigbee.NetworkNum
  71. }
  72. if device.ID == 0 {
  73. device.CreateTime = time.Now()
  74. device.CreateUser = userId
  75. if device.IsExistedBySN() {
  76. fmt.Printf("Create IsExistedBySN \n")
  77. return util.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  78. }
  79. fmt.Printf("device = %+v \n", device)
  80. if err := device.Create(); err != nil {
  81. fmt.Printf("Create err = %s \n", err.Error())
  82. return util.FailResponse(err.Error(), nil)
  83. }
  84. service.OperationHisService.Save(userId, tenantId, util.OperationCreate, util.ModuleTypeDevice,
  85. util.DeviceTypeLightControl, util.GetDeviceObject(device.ID, device.Name), util.OperationSuccess)
  86. return util.SuccessResponse(util.Succeeded, nil)
  87. }
  88. if err := device.Update(); err != nil {
  89. fmt.Printf("Update err = %s \n", err.Error())
  90. return util.FailResponse(err.Error(), nil)
  91. }
  92. service.OperationHisService.Save(userId, tenantId, util.OperationUpdate, util.ModuleTypeDevice,
  93. util.DeviceTypeLightControl, util.GetDeviceObject(device.ID, device.Name), util.OperationSuccess)
  94. return util.SuccessResponse(util.Succeeded, nil)
  95. }
  96. func (s *lightControlService) List(searchValue, controlType, zigbeeId string, current, size int) ([]model.LightControlDetail,
  97. *util.Errors) {
  98. device := dao.LightControl{}
  99. if searchValue != "" {
  100. device.Sn = searchValue
  101. }
  102. if controlType != "" {
  103. cType, err := strconv.Atoi(controlType)
  104. if err == nil {
  105. device.ControlType = cType
  106. }
  107. }
  108. if zigbeeId != "" {
  109. zId, err := strconv.Atoi(zigbeeId)
  110. if err == nil {
  111. device.ZigbeeId = zId
  112. }
  113. }
  114. offset := (current - 1) * size
  115. limit := size
  116. devices, err := device.GetDevices(offset, limit)
  117. if err != nil {
  118. return nil, util.FailResponse(err.Error(), nil)
  119. }
  120. var details []model.LightControlDetail
  121. for _, d := range devices {
  122. detail := model.LightControlDetail{LightControl: d}
  123. endTime, state := util.GetDeviceState(d.Sn)
  124. detail.RunState = state
  125. detail.EndLineTime = endTime
  126. detail.NetworkState = state
  127. details = append(details, detail)
  128. }
  129. return details, nil
  130. }
  131. func (s *lightControlService) Remove(userId int64, tenantId int, id int) *util.Errors {
  132. // 创建查询实例
  133. device := &dao.LightControl{
  134. ID: id,
  135. IsDeleted: 1,
  136. UpdateUser: userId,
  137. UpdateTime: time.Now(),
  138. }
  139. err := device.Delete()
  140. if err != nil {
  141. return util.FailResponse(err.Error(), nil)
  142. }
  143. service.OperationHisService.Save(userId, tenantId, util.OperationRemove, util.ModuleTypeDevice,
  144. util.DeviceTypeLightControl, util.GetDeviceObject(device.ID, device.Name), util.OperationSuccess)
  145. return nil
  146. }
  147. func (s *lightControlService) GetList(tenantId int) ([]dao.LightControl, *util.Errors) {
  148. device := &dao.LightControl{
  149. TenantId: tenantId,
  150. IsDeleted: 0,
  151. }
  152. devices, err := device.GetAllDevices()
  153. if err != nil {
  154. return nil, util.FailResponse(err.Error(), nil)
  155. }
  156. return devices, nil
  157. }
  158. func (s *lightControlService) Enable(id, status int) *util.Errors {
  159. // 创建查询实例
  160. device := &dao.LightControl{
  161. ID: id,
  162. IsEnable: status,
  163. }
  164. err := device.UpdateEnable()
  165. if err != nil {
  166. return util.FailResponse(err.Error(), nil)
  167. }
  168. return nil
  169. }
  170. func (s *lightControlService) GetOne(id int) (*dao.LightControl, *util.Errors) {
  171. device := &dao.LightControl{
  172. ID: id,
  173. }
  174. err := device.GetDevice()
  175. if err != nil {
  176. return nil, util.FailResponse(err.Error(), nil)
  177. }
  178. return device, nil
  179. }
  180. func (s *lightControlService) GetByGroupId(groupId int) ([]dao.LightControl, *util.Errors) {
  181. // 创建查询实例
  182. device := &dao.LightControl{
  183. GroupId: groupId,
  184. }
  185. devices, err := device.GetDevicesByGroup()
  186. if err != nil {
  187. return nil, util.FailResponse(err.Error(), nil)
  188. }
  189. return devices, nil
  190. }
  191. func (s *lightControlService) GetByGateway(id int) []dao.LightControl {
  192. // 创建查询实例
  193. device := &dao.LightControl{
  194. GatewayId: id,
  195. }
  196. return device.GetDevicesByGateway()
  197. }
  198. func (s *lightControlService) GetByLampPole(id int) []dao.LightControl {
  199. // 创建查询实例
  200. device := &dao.LightControl{
  201. LampPoleId: id,
  202. }
  203. return device.GetDevicesByLampPole()
  204. }
  205. //检查灯控编号是否合规1-1——255-255
  206. func checkControlNoIsCompliance(controlNo string) bool {
  207. arr := strings.Split(controlNo, "-")
  208. if len(arr) != 2 {
  209. return false
  210. }
  211. one, err := strconv.Atoi(arr[0])
  212. if err != nil || one < 1 || one > 255 {
  213. return false
  214. }
  215. two, err := strconv.Atoi(arr[1])
  216. if err != nil || two < 1 || two > 255 {
  217. return false
  218. }
  219. return true
  220. }