1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import json
- import requests
- from common.logger import logger
- from common import config
- from api.riil.login import LoginApi
- cookies = {}
- def call_api(endpoint, method="GET", params=None, data=None) -> dict:
- """
- 通用的API调用方法。
- """
- # 记录调用的信息
- global cookies
- url = f"{config.BASE_URL}{endpoint}"
- for i in range(3):
- try:
- if method.upper() == "GET":
- response = requests.get(url, params=params, cookies=cookies, verify=False)
- elif method.upper() == "POST":
- response = requests.post(url, json=data, params=params, cookies=cookies, verify=False)
- else:
- raise ValueError("Unsupported HTTP method")
- logger.info(f"Calling API: {endpoint}, Method: {method}, Params: {params}, Data: {data}, ResCode:{response.status_code}, ResData: {response.text}")
- if response.status_code == 502:
- cookies = LoginApi().login_bmc(config.USERNAME, config.PASSWORD)
- continue
- response.raise_for_status()
- return response.json()
- except requests.RequestException as e:
- print(f"Error calling API {endpoint}: {e}")
- logger.warning(f"Calling API: {endpoint}, Method: {method}, Params: {params}, Data: {data}, Error:{e}")
- logger.error(f"Failed to call API 3 times: {endpoint}, Method: {method}, Params: {params}, Data: {data}")
- raise Exception("Failed to call API 3 times")
- def save_json(data, filename):
- with open(filename, "w") as f:
- f.write(json.dumps(data))
|