recordAlarmSos.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. //fmt.Printf("url = %v", url)
  30. method := "GET"
  31. client := &http.Client{}
  32. req, err := http.NewRequest(method, url, nil)
  33. if err != nil {
  34. return nil, err
  35. }
  36. res, err := client.Do(req)
  37. if err != nil {
  38. return nil, err
  39. }
  40. defer res.Body.Close()
  41. body, err := ioutil.ReadAll(res.Body)
  42. if err != nil {
  43. return nil, err
  44. }
  45. //fmt.Printf("body = %v", string(body))
  46. result := RecordAlarmSosReq{}
  47. err = json.Unmarshal(body, &result)
  48. if err != nil {
  49. return nil, err
  50. }
  51. if result.Code != 0 {
  52. panic(result.Msg)
  53. }
  54. //fmt.Printf("result.Data = %v", result.Data)
  55. return result.Data, nil
  56. }