forVidiconService.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. method := "GET"
  34. client := &http.Client{}
  35. req, err := http.NewRequest(method, url, nil)
  36. if err != nil {
  37. return false, err
  38. }
  39. res, err := client.Do(req)
  40. if err != nil {
  41. return false, err
  42. }
  43. defer res.Body.Close()
  44. body, err := ioutil.ReadAll(res.Body)
  45. if err != nil {
  46. return false, err
  47. }
  48. result := VidiconRespose{}
  49. err = json.Unmarshal(body, &result)
  50. if err != nil {
  51. return false, err
  52. }
  53. if result.Code != 0 {
  54. panic(result.Msg)
  55. }
  56. return true, nil
  57. }