forVidiconService.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package edge_service
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "io/ioutil"
  6. "iot_manager_service/config"
  7. "net/http"
  8. )
  9. // ForVidiconService 安防service
  10. type ForVidiconService struct {
  11. }
  12. // VidiconRespose 返回respose结构体
  13. type VidiconRespose struct {
  14. Code int
  15. Msg string
  16. }
  17. // Operate 操作球机
  18. func (f *ForVidiconService) Operate(code string, name string, direction int, speed int) (bool, error) {
  19. cfg := config.Instance()
  20. api := cfg.Foreign.IotEdgeUrl + "/camera/v1/control/ptz"
  21. url := fmt.Sprintf("%v?code=%v&direction=%d&speed=%d", api, code, direction, speed)
  22. return f.getVidiconApi(url)
  23. }
  24. // Ptzhome 复位相关
  25. func (f *ForVidiconService) Ptzhome(code string, name string, flag int) (bool, error) {
  26. cfg := config.Instance()
  27. api := cfg.Foreign.IotEdgeUrl + "/camera/v1/control/ptzhome"
  28. url := fmt.Sprintf("%v?code=%v&flag=%d", api, code, flag)
  29. return f.getVidiconApi(url)
  30. }
  31. // getVidiconApi 公用请求接口
  32. func (f *ForVidiconService) getVidiconApi(url string) (bool, error) {
  33. //fmt.Printf("url = %v", url)
  34. method := "GET"
  35. client := &http.Client{}
  36. req, err := http.NewRequest(method, url, nil)
  37. if err != nil {
  38. return false, err
  39. }
  40. res, err := client.Do(req)
  41. if err != nil {
  42. return false, err
  43. }
  44. defer res.Body.Close()
  45. body, err := ioutil.ReadAll(res.Body)
  46. if err != nil {
  47. return false, err
  48. }
  49. //fmt.Printf("body = %v", string(body))
  50. result := VidiconRespose{}
  51. err = json.Unmarshal(body, &result)
  52. if err != nil {
  53. return false, err
  54. }
  55. if result.Code != 0 {
  56. panic(result.Msg)
  57. }
  58. return true, nil
  59. }