cltLedControlService.go 1.8 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{} `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. //fmt.Printf("RequestApi url = %v \n", url)
  32. //fmt.Printf("reqData = %v \n", reqData)
  33. method := "POST"
  34. client := &http.Client{}
  35. marshal, _ := json.Marshal(reqData.PostData)
  36. req, err := http.NewRequest(method, url, strings.NewReader(string(marshal)))
  37. if err != nil {
  38. logger.Logger.Errorf("CltLedControlService NewRequest %v", err.Error())
  39. return
  40. }
  41. req.Header.Add("Content-Type", "application/json")
  42. res, err := client.Do(req)
  43. if err != nil {
  44. logger.Logger.Errorf("CltLedControlService Do %v", err.Error())
  45. return
  46. }
  47. defer res.Body.Close()
  48. body, err := ioutil.ReadAll(res.Body)
  49. if err != nil {
  50. logger.Logger.Errorf("CltLedControlService ReadAll %v", err.Error())
  51. return
  52. }
  53. var cltLedControlRes CltLedControlRes
  54. err = json.Unmarshal(body, &cltLedControlRes)
  55. if err != nil {
  56. logger.Logger.Errorf("CltLedControlService Unmarshal %v", err.Error())
  57. return
  58. }
  59. if cltLedControlRes.Code != 0 {
  60. logger.Logger.Errorf("CltLedControlService cltLedControlRes %v", cltLedControlRes.Msg)
  61. return
  62. }
  63. return
  64. }