utils.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import json
  2. import requests
  3. from common.logger import logger
  4. from common import config
  5. from api.riil.login import LoginApi
  6. cookies = {}
  7. def call_api(endpoint, method="GET", params=None, data=None) -> dict:
  8. """
  9. 通用的API调用方法。
  10. """
  11. # 记录调用的信息
  12. global cookies
  13. url = f"{config.BASE_URL}{endpoint}"
  14. for i in range(3):
  15. try:
  16. if method.upper() == "GET":
  17. response = requests.get(url, params=params, cookies=cookies, verify=False)
  18. elif method.upper() == "POST":
  19. response = requests.post(url, json=data, params=params, cookies=cookies, verify=False)
  20. else:
  21. raise ValueError("Unsupported HTTP method")
  22. logger.info(f"Calling API: {endpoint}, Method: {method}, Params: {params}, Data: {data}, ResCode:{response.status_code}, ResData: {response.text}")
  23. if response.status_code == 502:
  24. cookies = LoginApi().login_bmc(config.USERNAME, config.PASSWORD)
  25. continue
  26. response.raise_for_status()
  27. return response.json()
  28. except requests.RequestException as e:
  29. print(f"Error calling API {endpoint}: {e}")
  30. logger.warning(f"Calling API: {endpoint}, Method: {method}, Params: {params}, Data: {data}, Error:{e}")
  31. logger.error(f"Failed to call API 3 times: {endpoint}, Method: {method}, Params: {params}, Data: {data}")
  32. raise Exception("Failed to call API 3 times")
  33. def save_json(data, filename):
  34. with open(filename, "w") as f:
  35. f.write(json.dumps(data))