recordAlarmSos.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 RecordAlarmSos struct{}
  11. type RecordAlarmSosReq struct {
  12. Code int `json:"code"`
  13. Msg string `json:"msg"`
  14. Data []RecordAlarmSosData `json:"data"`
  15. }
  16. type RecordAlarmSosData struct {
  17. ID int `json:"id"`
  18. Code string `json:"code"`
  19. Tstart string `json:"tstart"`
  20. Tend string `json:"tend"`
  21. Duration float64 `json:"duration"`
  22. Updatedat string `json:"updatedat"`
  23. }
  24. // SyncRecord 同步sos一键求助数据
  25. func (r *RecordAlarmSos) SyncRecord(maxId int64, maxUpDateTime string) ([]RecordAlarmSosData, error) {
  26. cfg := config.Instance()
  27. api := cfg.Foreign.IotEdgeUrl + "/data/v1/sos/sync"
  28. url := fmt.Sprintf("%v?id=%d&&updatedat=%v", api, maxId, url2.QueryEscape(maxUpDateTime))
  29. method := "GET"
  30. client := &http.Client{}
  31. req, err := http.NewRequest(method, url, nil)
  32. if err != nil {
  33. return nil, err
  34. }
  35. res, err := client.Do(req)
  36. if err != nil {
  37. return nil, err
  38. }
  39. defer res.Body.Close()
  40. body, err := ioutil.ReadAll(res.Body)
  41. if err != nil {
  42. return nil, err
  43. }
  44. result := RecordAlarmSosReq{}
  45. err = json.Unmarshal(body, &result)
  46. if err != nil {
  47. return nil, err
  48. }
  49. if result.Code != 0 {
  50. panic(result.Msg)
  51. }
  52. return result.Data, nil
  53. }