lightControlService.go 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. "strconv"
  8. "strings"
  9. "time"
  10. )
  11. // 中间件管理服务
  12. var LightControlService = new(lightControlService)
  13. type lightControlService struct{}
  14. func (s *lightControlService) Get(id int) (*dao.LightControl, *util.Errors) {
  15. // 创建查询实例
  16. device := &dao.LightControl{
  17. ID: id,
  18. }
  19. err := device.GetDevice()
  20. if err != nil {
  21. return nil, util.FailResponse(err.Error(), nil)
  22. }
  23. //todo runstate 需要使用各个设备的状态来处理
  24. return device, nil
  25. }
  26. func (s *lightControlService) GetRelevanceDetail(id int) (*model.LightControlDetail, *util.Errors) {
  27. // 创建查询实例
  28. device := &dao.LightControl{
  29. ID: id,
  30. }
  31. err := device.GetDevice()
  32. if err != nil {
  33. return nil, util.FailResponse(err.Error(), nil)
  34. }
  35. //todo get gateway ipBroadcast lightcontroller... list
  36. return &model.LightControlDetail{
  37. LightControl: *device,
  38. AlarmTerminalList: nil,
  39. CameraList: nil,
  40. CaptureUnitList: nil,
  41. GatewayList: nil,
  42. InfoBoardList: nil,
  43. IpBroadcastList: nil,
  44. LightControlList: nil,
  45. SensorList: nil,
  46. ZigbeeList: nil,
  47. }, nil
  48. }
  49. func (s *lightControlService) CreateOrUpdate(userId int64, tenantId int, req *dao.LightControl) *util.Errors {
  50. device := req
  51. device.TenantId = tenantId
  52. device.UpdateUser = userId
  53. device.UpdateTime = time.Now()
  54. if device.LampPoleId != 0 {
  55. lampPole, err := LampPoleService.GetOne(device.LampPoleId)
  56. if err == nil {
  57. device.LampLat = lampPole.PoleLat
  58. device.LampLng = lampPole.PoleLng
  59. device.LampPoleName = lampPole.PoleName
  60. device.LampPoleSN = lampPole.PoleSN
  61. device.LampPoleLocation = lampPole.InstallLocation
  62. device.GroupId = lampPole.GroupId
  63. } else {
  64. fmt.Printf("LampPoleService.GetOne err = %v \n", err)
  65. }
  66. }
  67. if device.ControlType == model.ControlType_ZigBee {
  68. if device.ZigbeeId == 0 {
  69. return util.ParamsInvalidResponse(model.ZigbeeSelect, nil)
  70. }
  71. if device.IsOnDemand == 0 {
  72. if device.ControlNO == "" {
  73. return util.ParamsInvalidResponse(model.ControlNONull, nil)
  74. }
  75. if !checkControlNoIsCompliance(device.ControlNO) {
  76. return util.ParamsInvalidResponse(model.ControlNOInvalid, nil)
  77. }
  78. }
  79. //todo zigbee
  80. // Zigbee zigbee = zigbeeService.getById(lightControl.getZigbeeId());
  81. // lightControl.setZigbeeName(zigbee.getName());
  82. // lightControl.setZigbeeSn(zigbee.getSn());
  83. // lightControl.setChanelNum(zigbee.getChanelNum());
  84. // lightControl.setNetworkNum(zigbee.getNetworkNum());
  85. }
  86. if device.ID == 0 {
  87. device.CreateTime = time.Now()
  88. device.CreateUser = userId
  89. if device.IsExistedBySN() {
  90. fmt.Printf("Create IsExistedBySN \n")
  91. return util.ParamsInvalidResponse(model.RepeatedPrompts, nil)
  92. }
  93. fmt.Printf("device = %+v \n", device)
  94. if err := device.Create(); err != nil {
  95. fmt.Printf("Create err = %s \n", err.Error())
  96. return util.FailResponse(err.Error(), nil)
  97. }
  98. return util.SuccessResponse(util.Succeeded, nil)
  99. }
  100. if err := device.Update(); err != nil {
  101. fmt.Printf("Update err = %s \n", err.Error())
  102. return util.FailResponse(err.Error(), nil)
  103. }
  104. //todo operation record
  105. return util.SuccessResponse(util.Succeeded, nil)
  106. }
  107. func (s *lightControlService) List(searchValue, controlType, zigbeeId string, current, size int) ([]dao.LightControl,
  108. *util.Errors) {
  109. device := dao.LightControl{}
  110. if searchValue != "" {
  111. device.SN = searchValue
  112. }
  113. if controlType != "" {
  114. cType, err := strconv.Atoi(controlType)
  115. if err == nil {
  116. device.ControlType = cType
  117. }
  118. }
  119. if zigbeeId != "" {
  120. zId, err := strconv.Atoi(zigbeeId)
  121. if err == nil {
  122. device.ZigbeeId = zId
  123. }
  124. }
  125. offset := (current - 1) * size
  126. limit := size
  127. devices, err := device.GetDevices(offset, limit)
  128. if err != nil {
  129. return nil, util.FailResponse(err.Error(), nil)
  130. }
  131. return devices, nil
  132. }
  133. func (s *lightControlService) Remove(userId int64, id int) *util.Errors {
  134. // 创建查询实例
  135. device := &dao.LightControl{
  136. ID: id,
  137. IsDeleted: 1,
  138. UpdateUser: userId,
  139. UpdateTime: time.Now(),
  140. }
  141. //todo
  142. // service.lampPoleService.CountRelation()
  143. //todo operation record
  144. err := device.Delete()
  145. if err != nil {
  146. return util.FailResponse(err.Error(), nil)
  147. }
  148. return nil
  149. }
  150. func (s *lightControlService) GetList(tenantId int) ([]*dao.LightControl, *util.Errors) {
  151. device := &dao.LightControl{
  152. TenantId: tenantId,
  153. IsDeleted: 0,
  154. }
  155. devices, err := device.GetAllDevices()
  156. if err != nil {
  157. return nil, util.FailResponse(err.Error(), nil)
  158. }
  159. return devices, nil
  160. }
  161. func (s *lightControlService) Enable(id, status int) *util.Errors {
  162. // 创建查询实例
  163. device := &dao.LightControl{
  164. ID: id,
  165. IsEnable: status,
  166. }
  167. err := device.UpdateEnable()
  168. if err != nil {
  169. return util.FailResponse(err.Error(), nil)
  170. }
  171. return nil
  172. }
  173. func (s *lightControlService) GetOne(id int) (*dao.LightControl, *util.Errors) {
  174. device := &dao.LightControl{
  175. ID: id,
  176. }
  177. err := device.GetDevice()
  178. if err != nil {
  179. return nil, util.FailResponse(err.Error(), nil)
  180. }
  181. return device, nil
  182. }
  183. func (s *lightControlService) GetByGroupId(groupId int) ([]dao.LightControl, *util.Errors) {
  184. // 创建查询实例
  185. device := &dao.LightControl{
  186. GroupId: groupId,
  187. }
  188. devices, err := device.GetDevicesByGroup()
  189. if err != nil {
  190. return nil, util.FailResponse(err.Error(), nil)
  191. }
  192. return devices, nil
  193. }
  194. //检查灯控编号是否合规1-1——255-255
  195. func checkControlNoIsCompliance(controlNo string) bool {
  196. arr := strings.Split(controlNo, "-")
  197. if len(arr) != 2 {
  198. return false
  199. }
  200. one, err := strconv.Atoi(arr[0])
  201. if err != nil || one < 1 || one > 255 {
  202. return false
  203. }
  204. two, err := strconv.Atoi(arr[1])
  205. if err != nil || two < 1 || two > 255 {
  206. return false
  207. }
  208. return true
  209. }