base.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package services
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hz_eta_data/models"
  6. "hongze/hz_eta_data/utils"
  7. "io/ioutil"
  8. "net/http"
  9. "strings"
  10. )
  11. // PostEdbLib 调用指标接口
  12. func PostEdbLib(param map[string]interface{}, method string) (resp *models.BaseResponse, err error) {
  13. postUrl := utils.EDB_LIB_URL + method
  14. postData, err := json.Marshal(param)
  15. if err != nil {
  16. return
  17. }
  18. result, err := HttpPost(postUrl, string(postData), "application/json")
  19. if err != nil {
  20. return
  21. }
  22. err = json.Unmarshal(result, &resp)
  23. if err != nil {
  24. return
  25. }
  26. return resp, nil
  27. }
  28. func HttpPost(url, postData string, params ...string) ([]byte, error) {
  29. body := ioutil.NopCloser(strings.NewReader(postData))
  30. client := &http.Client{}
  31. req, err := http.NewRequest("POST", url, body)
  32. if err != nil {
  33. return nil, err
  34. }
  35. contentType := "application/x-www-form-urlencoded;charset=utf-8"
  36. if len(params) > 0 && params[0] != "" {
  37. contentType = params[0]
  38. }
  39. req.Header.Set("Content-Type", contentType)
  40. req.Header.Set("authorization", utils.MD5(utils.APP_EDB_LIB_NAME_EN+utils.EDB_LIB_Md5_KEY))
  41. resp, err := client.Do(req)
  42. defer resp.Body.Close()
  43. b, err := ioutil.ReadAll(resp.Body)
  44. fmt.Println("HttpPost:" + string(b))
  45. return b, err
  46. }