import os import requests import time from typing import Dict, Any, Optional from .exceptions import LamodaAPIError, LamodaAuthError, LamodaRateLimitError, LamodaBadRequestError, LamodaNotFoundError class LamodaClient: """Base client for interacting with Lamoda Seller Partner API.""" BASE_URL = "https://api.seller.lamoda.ru" def __init__(self, api_key: Optional[str] = None): # Fetch from env if not provided self.api_key = api_key or os.getenv('LAMODA_API_KEY') if not self.api_key: raise ValueError("LAMODA_API_KEY must be provided") self.session = requests.Session() # Lamoda often uses X-API-Key or Authorization Bearer depending on the endpoint. # We assume X-API-Key as the standard for B2B API integrations. self.session.headers.update({ "X-API-Key": self.api_key, "Content-Type": "application/json" }) def request(self, method: str, path: str, data: Optional[Dict[str, Any]] = None, params: Optional[Dict[str, Any]] = None, retries: int = 3) -> Dict[str, Any]: """Perform HTTP request to Lamoda API with automatic retries.""" url = f"{self.BASE_URL}{path}" for attempt in range(retries): try: response = self.session.request(method, url, json=data, params=params) # Check rate limiting if response.status_code == 429: if attempt < retries - 1: time.sleep(2 ** attempt) # Exponential backoff continue raise LamodaRateLimitError("Rate limit exceeded") if response.status_code in (401, 403): raise LamodaAuthError(f"Authentication failed: {response.text}") if response.status_code == 400: raise LamodaBadRequestError(f"Bad Request: {response.text}") if response.status_code == 404: raise LamodaNotFoundError(f"Not Found: {response.text}") response.raise_for_status() if response.content: return response.json() return {} except requests.exceptions.RequestException as e: if attempt < retries - 1: time.sleep(2 ** attempt) continue raise LamodaAPIError(f"Request failed: {str(e)}") raise LamodaAPIError("Request failed after max retries") def post(self, path: str, data: Optional[Dict[str, Any]] = None) -> Dict[str, Any]: return self.request("POST", path, data=data) def get(self, path: str, params: Optional[Dict[str, Any]] = None) -> Dict[str, Any]: return self.request("GET", path, params=params) def put(self, path: str, data: Optional[Dict[str, Any]] = None) -> Dict[str, Any]: return self.request("PUT", path, data=data)