syncAlarmService.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package edge_service
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "io/ioutil"
  6. "iot_manager_service/config"
  7. "net/http"
  8. url2 "net/url"
  9. )
  10. type RecordAlarmRecord struct{}
  11. type RecordAlarmRecordRes struct {
  12. Code int `json:"code"`
  13. Msg string `json:"msg"`
  14. Data []RecordAlarmRecordData `json:"data"`
  15. }
  16. type RecordAlarmRecordData struct {
  17. ID int `json:"id"`
  18. Code string `json:"code"`
  19. Tstart string `json:"tstart"`
  20. Tend string `json:"tend"`
  21. Content string `json:"content"`
  22. Alarmtype int `json:"alarmtype"`
  23. Level int `json:"level"`
  24. Threshold int `json:"threshold"`
  25. Value int `json:"value"`
  26. Sid int `json:"sid"`
  27. Cid int `json:"cid"`
  28. Cname string `json:"cname"`
  29. Updatedat string `json:"updatedat"`
  30. }
  31. // SyncAlartRecord 同步报警 数据
  32. func (r *RecordAlarmRecord) SyncAlartRecord(maxId int64, maxUpDateTime string) ([]RecordAlarmRecordData, error) {
  33. maxId += 1
  34. cfg := config.Instance()
  35. api := cfg.Foreign.IotEdgeUrl + "/data/v1/alarm/sync"
  36. url := fmt.Sprintf("%v?id=%d&&updatedat=%v", api, maxId, url2.QueryEscape(maxUpDateTime))
  37. fmt.Printf("url = %v", url)
  38. method := "GET"
  39. client := &http.Client{}
  40. req, err := http.NewRequest(method, url, nil)
  41. if err != nil {
  42. return nil, err
  43. }
  44. res, err := client.Do(req)
  45. if err != nil {
  46. return nil, err
  47. }
  48. defer res.Body.Close()
  49. body, err := ioutil.ReadAll(res.Body)
  50. if err != nil {
  51. return nil, err
  52. }
  53. //fmt.Printf("body = %v", string(body))
  54. result := RecordAlarmRecordRes{}
  55. err = json.Unmarshal(body, &result)
  56. if err != nil {
  57. return nil, err
  58. }
  59. if result.Code != 0 {
  60. panic(result.Msg)
  61. }
  62. //fmt.Printf("result.Data = %v", result.Data)
  63. return result.Data, nil
  64. }