recordLightUp.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 RecordLightUp struct{}
  11. type RecordLightUpReq struct {
  12. Code int `json:"code"`
  13. Msg string `json:"msg"`
  14. Data []RecordLightUpData `json:"data"`
  15. }
  16. type RecordLightUpData struct {
  17. ID int `json:"id"`
  18. Code string `json:"code"`
  19. Tstart string `json:"tstart"`
  20. Tend string `json:"tend"`
  21. Brightness int `json:"brightness"`
  22. Duration float64 `json:"duration"`
  23. Updatedat string `json:"updatedat"`
  24. }
  25. // SyncRecord 同步亮灯数据
  26. func (r *RecordLightUp) SyncRecord(maxId int64, maxUpDateTime string) ([]RecordLightUpData, error) {
  27. cfg := config.Instance()
  28. api := cfg.Foreign.IotEdgeUrl + "/data/v1/lampevent/sync"
  29. url := fmt.Sprintf("%v?id=%d&&updatedat=%v", api, maxId, url2.QueryEscape(maxUpDateTime))
  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 := RecordLightUpReq{}
  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. return result.Data, nil
  55. }