use std::time::Duration;
use crate::cache::{Cache, acquire_lock};
use crate::error::{AppError, Result};
use crate::usage::OpenRouterSnapshot;
use super::types::{CreditsData, KeyData, OrEnvelope, combine};
pub const BASE_URL: &str = "https://openrouter.ai/api/v1";
const HTTP_TIMEOUT: Duration = Duration::from_secs(10);
const LOCK_TIMEOUT: Duration = Duration::from_secs(15);
#[derive(Debug, Clone)]
pub struct Endpoints {
pub credits: String,
pub key: String,
}
impl Default for Endpoints {
fn default() -> Self {
Self {
credits: format!("{BASE_URL}/credits"),
key: format!("{BASE_URL}/key"),
}
}
}
#[derive(Debug, Clone)]
pub struct FetchOutcome {
pub snapshot: OpenRouterSnapshot,
pub stale: bool,
pub last_error: Option<(u16, String)>,
pub cache_age: Option<Duration>,
}
pub async fn fetch_snapshot(
client: &reqwest::Client,
api_key: &str,
cache: &Cache,
endpoints: &Endpoints,
cache_ttl: Duration,
) -> Result<FetchOutcome> {
cache.ensure_dir()?;
let _lock = acquire_lock(&cache.lock_path(), LOCK_TIMEOUT)?;
if let Some(bytes) = cache.fresh_payload(cache_ttl)? {
return Ok(reuse_cache(bytes, cache, false));
}
match fetch_live(client, endpoints, api_key).await {
Ok((credits, key)) => {
let snap = combine(credits, key);
let cache_repr = serde_json::json!({
"snapshot": serde_repr(&snap),
});
let bytes = serde_json::to_vec(&cache_repr).unwrap_or_default();
cache.write_payload(&bytes)?;
Ok(FetchOutcome {
snapshot: snap,
stale: false,
last_error: None,
cache_age: Some(Duration::ZERO),
})
}
Err(e) if e.is_transient() => fallback_silent(cache),
Err(AppError::Http { status, body }) => {
cache.mark_stale();
cache.write_last_error(status, &body);
fallback_with_error(cache, Some((status, body)))
}
Err(e) => {
cache.mark_stale();
cache.write_last_error(0, &e.to_string());
fallback_with_error(cache, Some((0, e.to_string())))
}
}
}
fn fallback_silent(cache: &Cache) -> Result<FetchOutcome> {
let Some(bytes) = cache.maybe_payload()? else {
return Err(AppError::Transport(
"openrouter: no cache and network unreachable".into(),
));
};
Ok(reuse_cache(bytes, cache, true))
}
fn fallback_with_error(cache: &Cache, last_error: Option<(u16, String)>) -> Result<FetchOutcome> {
let Some(bytes) = cache.maybe_payload()? else {
return Err(AppError::Other("openrouter: no usable cache".into()));
};
let mut outcome = reuse_cache(bytes, cache, true);
outcome.last_error = last_error;
Ok(outcome)
}
fn reuse_cache(bytes: Vec<u8>, cache: &Cache, stale: bool) -> FetchOutcome {
let snap = parse_cache(&bytes).unwrap_or_else(|_| OpenRouterSnapshot {
label: "OpenRouter".into(),
total_credits: 0.0,
total_usage: 0.0,
usage_daily: 0.0,
usage_weekly: 0.0,
usage_monthly: 0.0,
is_free_tier: true,
limit: None,
limit_remaining: None,
});
FetchOutcome {
snapshot: snap,
stale,
last_error: cache.read_last_error(),
cache_age: cache.payload_age(),
}
}
fn parse_cache(bytes: &[u8]) -> Result<OpenRouterSnapshot> {
let v: serde_json::Value = serde_json::from_slice(bytes)?;
let s = v
.get("snapshot")
.ok_or_else(|| AppError::Schema("openrouter cache missing 'snapshot' field".into()))?;
Ok(OpenRouterSnapshot {
label: s["label"].as_str().unwrap_or("OpenRouter").to_string(),
total_credits: s["total_credits"].as_f64().unwrap_or(0.0),
total_usage: s["total_usage"].as_f64().unwrap_or(0.0),
usage_daily: s["usage_daily"].as_f64().unwrap_or(0.0),
usage_weekly: s["usage_weekly"].as_f64().unwrap_or(0.0),
usage_monthly: s["usage_monthly"].as_f64().unwrap_or(0.0),
is_free_tier: s["is_free_tier"].as_bool().unwrap_or(false),
limit: s["limit"].as_f64(),
limit_remaining: s["limit_remaining"].as_f64(),
})
}
fn serde_repr(snap: &OpenRouterSnapshot) -> serde_json::Value {
serde_json::json!({
"label": snap.label,
"total_credits": snap.total_credits,
"total_usage": snap.total_usage,
"usage_daily": snap.usage_daily,
"usage_weekly": snap.usage_weekly,
"usage_monthly": snap.usage_monthly,
"is_free_tier": snap.is_free_tier,
"limit": snap.limit,
"limit_remaining": snap.limit_remaining,
})
}
async fn fetch_live(
client: &reqwest::Client,
endpoints: &Endpoints,
api_key: &str,
) -> Result<(CreditsData, KeyData)> {
let credits_fut = fetch_one::<CreditsData>(client, &endpoints.credits, api_key);
let key_fut = fetch_one::<KeyData>(client, &endpoints.key, api_key);
let (credits, key) = tokio::join!(credits_fut, key_fut);
Ok((credits?, key?))
}
async fn fetch_one<T: for<'de> serde::Deserialize<'de>>(
client: &reqwest::Client,
url: &str,
api_key: &str,
) -> Result<T> {
let resp = tokio::time::timeout(
HTTP_TIMEOUT,
client
.get(url)
.header("Authorization", format!("Bearer {api_key}"))
.send(),
)
.await
.map_err(|_| AppError::Transport(format!("openrouter timeout: {url}")))??;
let status = resp.status();
let bytes = resp.bytes().await?;
if !status.is_success() {
let body = String::from_utf8_lossy(&bytes).chars().take(200).collect();
return Err(AppError::Http {
status: status.as_u16(),
body,
});
}
let env: OrEnvelope<T> = serde_json::from_slice(&bytes)
.map_err(|e| AppError::Schema(format!("openrouter {url}: {e}")))?;
Ok(env.data)
}
#[cfg(test)]
mod tests {
use super::*;
use tempfile::TempDir;
fn cache_fixture() -> (TempDir, Cache) {
let td = TempDir::new().unwrap();
let cache = Cache::at(td.path().join("openrouter"));
cache.ensure_dir().unwrap();
(td, cache)
}
#[tokio::test]
async fn live_fetch_combines_both_endpoints() {
let mut server = mockito::Server::new_async().await;
server
.mock("GET", "/api/v1/credits")
.with_status(200)
.with_body(r#"{"data":{"total_credits":100.0,"total_usage":25.5}}"#)
.create_async()
.await;
server
.mock("GET", "/api/v1/key")
.with_status(200)
.with_body(
r#"{"data":{"label":"prod","limit":50.0,"limit_remaining":24.5,
"usage":25.5,"usage_daily":1.0,"usage_weekly":7.0,"usage_monthly":25.5,
"is_free_tier":false}}"#,
)
.create_async()
.await;
let (_td, cache) = cache_fixture();
let client = reqwest::Client::new();
let endpoints = Endpoints {
credits: format!("{}/api/v1/credits", server.url()),
key: format!("{}/api/v1/key", server.url()),
};
let out = fetch_snapshot(
&client,
"sk-or-test",
&cache,
&endpoints,
Duration::from_secs(0),
)
.await
.unwrap();
assert_eq!(out.snapshot.total_credits, 100.0);
assert_eq!(out.snapshot.total_usage, 25.5);
assert!((out.snapshot.balance() - 74.5).abs() < 1e-9);
assert_eq!(out.snapshot.label, "OpenRouter — prod");
assert!(!out.stale);
}
#[tokio::test]
async fn http_error_falls_back_to_cache_when_present() {
let mut server = mockito::Server::new_async().await;
server
.mock("GET", "/api/v1/credits")
.with_status(401)
.with_body(r#"{"error":"unauthorized"}"#)
.create_async()
.await;
server
.mock("GET", "/api/v1/key")
.with_status(401)
.with_body(r#"{"error":"unauthorized"}"#)
.create_async()
.await;
let (_td, cache) = cache_fixture();
let seed = serde_json::json!({
"snapshot": {
"label":"OpenRouter — seed","total_credits": 50.0,
"total_usage": 10.0,"usage_daily":1.0,"usage_weekly":3.0,
"usage_monthly":10.0,"is_free_tier":false,
"limit":null,"limit_remaining":null
}
});
cache.write_payload(seed.to_string().as_bytes()).unwrap();
let client = reqwest::Client::new();
let endpoints = Endpoints {
credits: format!("{}/api/v1/credits", server.url()),
key: format!("{}/api/v1/key", server.url()),
};
let out = fetch_snapshot(&client, "k", &cache, &endpoints, Duration::from_secs(0))
.await
.unwrap();
assert!(out.stale);
assert_eq!(out.snapshot.label, "OpenRouter — seed");
assert_eq!(out.last_error.as_ref().map(|(c, _)| *c), Some(401));
}
}