forLightControlService.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package edge_service
  2. import (
  3. "encoding/json"
  4. "io/ioutil"
  5. "iot_manager_service/config"
  6. "iot_manager_service/util/logger"
  7. "net/http"
  8. "strings"
  9. )
  10. type ForLightControl struct{}
  11. type ForLightControlReq struct {
  12. Tenant string `json:"tenant"`
  13. Codes []string `json:"codes"`
  14. Recovery int `json:"recovery"`
  15. Brightness int `json:"brightness"`
  16. Switchon int `json:"switchon"`
  17. Whole int `json:"whole"`
  18. }
  19. type ForLightControlRes struct {
  20. Code int `json:"code"`
  21. Msg string `json:"msg"`
  22. }
  23. func (f ForLightControl) SwitchLightCtr(reqData ForLightControlReq) {
  24. reqData.Whole = 0
  25. cfg := config.Instance()
  26. url := cfg.Foreign.IotEdgeUrl + "/lamp/v1/switch"
  27. method := "POST"
  28. client := &http.Client{}
  29. marshal, _ := json.Marshal(reqData)
  30. req, err := http.NewRequest(method, url, strings.NewReader(string(marshal)))
  31. if err != nil {
  32. logger.Logger.Errorf("SwitchLightCtr NewRequest %v", err.Error())
  33. return
  34. }
  35. req.Header.Add("Content-Type", "application/json")
  36. res, err := client.Do(req)
  37. if err != nil {
  38. logger.Logger.Errorf("SwitchLightCtr Do %v", err.Error())
  39. return
  40. }
  41. defer res.Body.Close()
  42. body, err := ioutil.ReadAll(res.Body)
  43. if err != nil {
  44. logger.Logger.Errorf("SwitchLightCtr ReadAll %v", err.Error())
  45. return
  46. }
  47. var forLightControlRes ForLightControlRes
  48. err = json.Unmarshal(body, &forLightControlRes)
  49. if err != nil {
  50. logger.Logger.Errorf("SwitchLightCtr Unmarshal %v", err.Error())
  51. return
  52. }
  53. if forLightControlRes.Code != 0 {
  54. logger.Logger.Errorf("SwitchLightCtr forLightControlRes %v", forLightControlRes.Msg)
  55. return
  56. }
  57. return
  58. }