forLightControlService.go 1.7 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. // ForLightControl 灯控相关操作
  11. type ForLightControl struct{}
  12. type ForLightControlReq struct {
  13. Tenant string `json:"tenant"`
  14. Codes []string `json:"codes"`
  15. Recovery int `json:"recovery"`
  16. Brightness int `json:"brightness"`
  17. Switchon int `json:"switchon"`
  18. Whole int `json:"whole"`
  19. }
  20. type ForLightControlRes struct {
  21. Code int `json:"code"`
  22. Msg string `json:"msg"`
  23. }
  24. // SwitchLightCtr 向边缘云端发送开关灯指令
  25. func (f ForLightControl) SwitchLightCtr(reqData ForLightControlReq) {
  26. reqData.Whole = 0
  27. cfg := config.Instance()
  28. url := cfg.Foreign.IotEdgeUrl + "/lamp/v1/switch"
  29. method := "POST"
  30. client := &http.Client{}
  31. marshal, _ := json.Marshal(reqData)
  32. req, err := http.NewRequest(method, url, strings.NewReader(string(marshal)))
  33. if err != nil {
  34. logger.Logger.Errorf("SwitchLightCtr NewRequest %v", err.Error())
  35. return
  36. }
  37. req.Header.Add("Content-Type", "application/json")
  38. res, err := client.Do(req)
  39. if err != nil {
  40. logger.Logger.Errorf("SwitchLightCtr Do %v", err.Error())
  41. return
  42. }
  43. defer res.Body.Close()
  44. body, err := ioutil.ReadAll(res.Body)
  45. if err != nil {
  46. logger.Logger.Errorf("SwitchLightCtr ReadAll %v", err.Error())
  47. return
  48. }
  49. var forLightControlRes ForLightControlRes
  50. err = json.Unmarshal(body, &forLightControlRes)
  51. if err != nil {
  52. logger.Logger.Errorf("SwitchLightCtr Unmarshal %v", err.Error())
  53. return
  54. }
  55. if forLightControlRes.Code != 0 {
  56. logger.Logger.Errorf("SwitchLightCtr forLightControlRes %v", forLightControlRes.Msg)
  57. return
  58. }
  59. return
  60. }