tunnel.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package admin
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "server/dao"
  6. "server/model/common/request"
  7. "server/utils/logger"
  8. "server/utils/protocol"
  9. "strconv"
  10. )
  11. type TunnelService struct{}
  12. func (ts *TunnelService) QueryAllTunnels() ([]dao.Tunnel, error) {
  13. return dao.QueryAllTunnels()
  14. }
  15. func (ts *TunnelService) QueryTunnelList(info request.TunnelSearch) ([]dao.Tunnel, int64, error) {
  16. limit := info.PageInfo.PageSize
  17. offset := info.PageInfo.PageSize * (info.PageInfo.Page - 1)
  18. return dao.QueryTunnelList(info.Name, info.RegionId, info.UserId, limit, offset)
  19. }
  20. func (ts *TunnelService) QueryNoRegionTunnels() ([]dao.Tunnel, error) {
  21. return dao.QueryNoRegionTunnels()
  22. }
  23. func (ts *TunnelService) CreateTunnel(tunnel dao.Tunnel) error {
  24. return tunnel.CreateTunnel()
  25. }
  26. func (ts *TunnelService) UpdateTunnel(tunnel dao.Tunnel) error {
  27. return tunnel.UpdateTunnel()
  28. }
  29. func (ts *TunnelService) UpdateTunnelLamp(info request.TunnelLamp) error {
  30. data1 := strconv.Itoa(1) + strconv.Itoa(info.LampValue1)
  31. data2 := strconv.Itoa(2) + strconv.Itoa(info.LampValue2)
  32. err := MqttService.Publish(MqttService.GetTopic(info.TunnelSn, protocol.TopicLampControl), []byte(data1))
  33. if err != nil {
  34. return fmt.Errorf("error updating: %v", err)
  35. }
  36. err = MqttService.Publish(MqttService.GetTopic(info.TunnelSn, protocol.TopicLampControl), []byte(data2))
  37. if err != nil {
  38. return fmt.Errorf("error updating: %v", err)
  39. }
  40. return dao.UpdateTunnelLamp(info.Id, info.LampValue1, info.LampValue2)
  41. }
  42. func (ts *TunnelService) UpdateTactics(sn string, tactics int) error {
  43. err := MqttService.Publish(MqttService.GetTopic(sn, protocol.TopicTunnelTactics), strconv.Itoa(tactics))
  44. if err != nil {
  45. return fmt.Errorf("error updating: %v", err)
  46. }
  47. return dao.UpdateTactics(sn, tactics)
  48. }
  49. func (ts *TunnelService) UpdateTunnelsRegion(tunnelIds []int, regionId int) error {
  50. return dao.UpdateTunnelsRegion(tunnelIds, regionId)
  51. }
  52. func (ts *TunnelService) UpdateTunnelTime(time dao.TunnelTime) error {
  53. // 使用json.Marshal函数将结构体转换为JSON字节切片
  54. jsonBytes, err := json.Marshal(time)
  55. if err != nil {
  56. logger.Get().Fatalf("Error marshalling to JSON: %v", err)
  57. }
  58. err = MqttService.Publish(MqttService.GetTopic(time.TunnelSn, protocol.TopicTunnelTiming), jsonBytes)
  59. if err != nil {
  60. return err
  61. }
  62. time.IsComplete = false
  63. return time.UpdateTunnelTime()
  64. }
  65. func (ts *TunnelService) TunnelTimeOk(sn string) error {
  66. return dao.TunnelTimeOk(sn)
  67. }
  68. func (ts *TunnelService) DeleteTunnel(id int) error {
  69. devices, err := dao.QueryDeviceByTunnelId(id)
  70. if err != nil {
  71. return err
  72. }
  73. if len(devices) > 0 {
  74. return fmt.Errorf("存在数据不能删除")
  75. }
  76. return dao.DeleteTunnel(id)
  77. }