Some checks failed
CI / lint-and-test (push) Has been cancelled
- Cache Graph API tokens with expiry-aware reuse in graph/auth.py - Add tenacity-based retry/backoff wrapper (utils/http.py) and apply to all Graph/source API calls - Add Pydantic request/response models (models/api.py) and FastAPI query constraints - Add unit tests for event_model, auth and integration tests for API endpoints - Configure ruff linter/formatter in pyproject.toml - Add GitHub Actions CI pipeline (.github/workflows/ci.yml) - Add requirements-dev.txt with pytest, mongomock, httpx, ruff - Clean up typing imports and fix ruff linting across codebase
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
|
|
import requests
|
|
import structlog
|
|
from tenacity import retry, retry_if_exception_type, stop_after_attempt, wait_exponential
|
|
|
|
logger = structlog.get_logger("aoc.http")
|
|
|
|
RETRY_CONFIG = {
|
|
"stop": stop_after_attempt(3),
|
|
"wait": wait_exponential(multiplier=1, min=2, max=10),
|
|
"retry": retry_if_exception_type(requests.RequestException),
|
|
"before_sleep": lambda retry_state: logger.warning(
|
|
"Retrying HTTP request",
|
|
attempt=retry_state.attempt_number,
|
|
exception=str(retry_state.outcome.exception()) if retry_state.outcome else None,
|
|
),
|
|
}
|
|
|
|
|
|
@retry(**RETRY_CONFIG)
|
|
def get_with_retry(url: str, headers: dict | None = None, params: dict | None = None, timeout: float = 20) -> requests.Response:
|
|
res = requests.get(url, headers=headers, params=params, timeout=timeout)
|
|
return res
|
|
|
|
|
|
@retry(**RETRY_CONFIG)
|
|
def post_with_retry(url: str, headers: dict | None = None, data: dict | None = None, params: dict | None = None, timeout: float = 15) -> requests.Response:
|
|
res = requests.post(url, headers=headers, data=data, params=params, timeout=timeout)
|
|
return res
|