1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package edge_service
- import (
- "encoding/json"
- "fmt"
- "io/ioutil"
- "iot_manager_service/config"
- "net/http"
- url2 "net/url"
- )
- type RecordAlarmSos struct{}
- type RecordAlarmSosReq struct {
- Code int `json:"code"`
- Msg string `json:"msg"`
- Data []RecordAlarmSosData `json:"data"`
- }
- type RecordAlarmSosData struct {
- ID int `json:"id"`
- Code string `json:"code"`
- Tstart string `json:"tstart"`
- Tend string `json:"tend"`
- Duration float64 `json:"duration"`
- Updatedat string `json:"updatedat"`
- }
- // SyncRecord 同步sos一键求助数据
- func (r *RecordAlarmSos) SyncRecord(maxId int64, maxUpDateTime string) ([]RecordAlarmSosData, error) {
- cfg := config.Instance()
- api := cfg.Foreign.IotEdgeUrl + "/data/v1/sos/sync"
- url := fmt.Sprintf("%v?id=%d&&updatedat=%v", api, maxId, url2.QueryEscape(maxUpDateTime))
- method := "GET"
- client := &http.Client{}
- req, err := http.NewRequest(method, url, nil)
- if err != nil {
- return nil, err
- }
- res, err := client.Do(req)
- if err != nil {
- return nil, err
- }
- defer res.Body.Close()
- body, err := ioutil.ReadAll(res.Body)
- if err != nil {
- return nil, err
- }
- result := RecordAlarmSosReq{}
- err = json.Unmarshal(body, &result)
- if err != nil {
- return nil, err
- }
- if result.Code != 0 {
- panic(result.Msg)
- }
- return result.Data, nil
- }
|