123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package edge_service
- import (
- "encoding/json"
- "io/ioutil"
- "iot_manager_service/config"
- "iot_manager_service/util/logger"
- "net/http"
- "strings"
- )
- type ForLightControl struct{}
- type ForLightControlReq struct {
- Tenant string `json:"tenant"`
- Codes []string `json:"codes"`
- Recovery int `json:"recovery"`
- Brightness int `json:"brightness"`
- Switchon int `json:"switchon"`
- Whole int `json:"whole"`
- }
- type ForLightControlRes struct {
- Code int `json:"code"`
- Msg string `json:"msg"`
- }
- func (f ForLightControl) SwitchLightCtr(reqData ForLightControlReq) {
- reqData.Whole = 0
- cfg := config.Instance()
- url := cfg.Foreign.IotEdgeUrl + "/lamp/v1/switch"
- method := "POST"
- client := &http.Client{}
- marshal, _ := json.Marshal(reqData)
- req, err := http.NewRequest(method, url, strings.NewReader(string(marshal)))
- if err != nil {
- logger.Logger.Errorf("SwitchLightCtr NewRequest %v", err.Error())
- return
- }
- req.Header.Add("Content-Type", "application/json")
- res, err := client.Do(req)
- if err != nil {
- logger.Logger.Errorf("SwitchLightCtr Do %v", err.Error())
- return
- }
- defer res.Body.Close()
- body, err := ioutil.ReadAll(res.Body)
- if err != nil {
- logger.Logger.Errorf("SwitchLightCtr ReadAll %v", err.Error())
- return
- }
- var forLightControlRes ForLightControlRes
- err = json.Unmarshal(body, &forLightControlRes)
- if err != nil {
- logger.Logger.Errorf("SwitchLightCtr Unmarshal %v", err.Error())
- return
- }
- if forLightControlRes.Code != 0 {
- logger.Logger.Errorf("SwitchLightCtr forLightControlRes %v", forLightControlRes.Msg)
- return
- }
- return
- }
|