cltLedControlService.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package edge_service
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/google/uuid"
  6. "io/ioutil"
  7. "iot_manager_service/config"
  8. "iot_manager_service/util/logger"
  9. "net/http"
  10. "strings"
  11. )
  12. // CltLedControlService led 显示屏 请求边缘云端接口
  13. type CltLedControlService struct{}
  14. type CltLedControlReqPost struct {
  15. Codes []string `json:"codes"`
  16. Param interface{} `json:"param"`
  17. }
  18. type CltLedControlReq struct {
  19. Tenant string `json:"tenant"`
  20. Action string `json:"action"`
  21. PostData CltLedControlReqPost
  22. }
  23. type CltLedControlRes struct {
  24. Code int `json:"code"`
  25. Msg string `json:"msg"`
  26. }
  27. func (f CltLedControlService) RequestApi(reqData CltLedControlReq) {
  28. cfg := config.Instance()
  29. reqId := uuid.New().String()
  30. url := fmt.Sprintf("%v/cltled/v1/%v/%v/%v", cfg.Foreign.IotEdgeUrl, reqData.Tenant, reqData.Action, reqId)
  31. method := "POST"
  32. client := &http.Client{}
  33. marshal, _ := json.Marshal(reqData.PostData)
  34. req, err := http.NewRequest(method, url, strings.NewReader(string(marshal)))
  35. if err != nil {
  36. logger.Logger.Errorf("CltLedControlService NewRequest %v", err.Error())
  37. return
  38. }
  39. req.Header.Add("Content-Type", "application/json")
  40. res, err := client.Do(req)
  41. if err != nil {
  42. logger.Logger.Errorf("CltLedControlService Do %v", err.Error())
  43. return
  44. }
  45. defer res.Body.Close()
  46. body, err := ioutil.ReadAll(res.Body)
  47. if err != nil {
  48. logger.Logger.Errorf("CltLedControlService ReadAll %v", err.Error())
  49. return
  50. }
  51. var cltLedControlRes CltLedControlRes
  52. err = json.Unmarshal(body, &cltLedControlRes)
  53. if err != nil {
  54. logger.Logger.Errorf("CltLedControlService Unmarshal %v", err.Error())
  55. return
  56. }
  57. if cltLedControlRes.Code != 0 {
  58. logger.Logger.Errorf("CltLedControlService cltLedControlRes %v", cltLedControlRes.Msg)
  59. return
  60. }
  61. return
  62. }