File size: 19,290 Bytes
c981f27 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | use std::fs;
use std::path::PathBuf;
use std::sync::Arc;
use std::time::Duration;
use anyhow::Context;
use bytes::Bytes;
use forge_app::HttpInfra;
use forge_config::{ForgeConfig, TlsBackend, TlsVersion};
use forge_eventsource::{EventSource, RequestBuilderExt};
use reqwest::header::{AUTHORIZATION, HeaderMap, HeaderValue};
use reqwest::redirect::Policy;
use reqwest::{Certificate, Client, Response, StatusCode, Url};
use tracing::{debug, warn};
const VERSION: &str = match option_env!("APP_VERSION") {
None => env!("CARGO_PKG_VERSION"),
Some(v) => v,
};
pub struct ForgeHttpInfra<F> {
client: Client,
debug_requests: Option<PathBuf>,
file: Arc<F>,
}
fn to_reqwest_tls(tls: TlsVersion) -> reqwest::tls::Version {
use reqwest::tls::Version;
match tls {
TlsVersion::V1_0 => Version::TLS_1_0,
TlsVersion::V1_1 => Version::TLS_1_1,
TlsVersion::V1_2 => Version::TLS_1_2,
TlsVersion::V1_3 => Version::TLS_1_3,
}
}
impl<F: forge_app::FileWriterInfra + 'static> ForgeHttpInfra<F> {
/// Creates a new [`ForgeHttpInfra`] from a resolved [`ForgeConfig`].
pub fn new(config: ForgeConfig, file_writer: Arc<F>) -> Self {
let http = config.http.unwrap_or(forge_config::HttpConfig {
connect_timeout_secs: 30,
read_timeout_secs: 900,
pool_idle_timeout_secs: 90,
pool_max_idle_per_host: 5,
max_redirects: 10,
hickory: false,
tls_backend: TlsBackend::Default,
min_tls_version: None,
max_tls_version: None,
adaptive_window: true,
keep_alive_interval_secs: Some(60),
keep_alive_timeout_secs: 10,
keep_alive_while_idle: true,
accept_invalid_certs: false,
root_cert_paths: None,
});
let mut client = reqwest::Client::builder()
.connect_timeout(Duration::from_secs(http.connect_timeout_secs))
.read_timeout(Duration::from_secs(http.read_timeout_secs))
.pool_idle_timeout(Duration::from_secs(http.pool_idle_timeout_secs))
.pool_max_idle_per_host(http.pool_max_idle_per_host)
.redirect(Policy::limited(http.max_redirects))
.hickory_dns(http.hickory)
// HTTP/2 configuration from config
.http2_adaptive_window(http.adaptive_window)
.http2_keep_alive_interval(http.keep_alive_interval_secs.map(Duration::from_secs))
.http2_keep_alive_timeout(Duration::from_secs(http.keep_alive_timeout_secs))
.http2_keep_alive_while_idle(http.keep_alive_while_idle);
// Add root certificates from config
if let Some(ref cert_paths) = http.root_cert_paths {
for cert_path in cert_paths {
match fs::read(cert_path) {
Ok(buf) => {
if let Ok(cert) = Certificate::from_pem(&buf) {
client = client.add_root_certificate(cert);
} else if let Ok(cert) = Certificate::from_der(&buf) {
client = client.add_root_certificate(cert);
} else {
warn!(
"Failed to parse certificate as PEM or DER format, cert = {}",
cert_path
);
}
}
Err(error) => {
warn!(
"Failed to read certificate file, path = {}, error = {}",
cert_path, error
);
}
}
}
}
if http.accept_invalid_certs {
client = client.danger_accept_invalid_certs(true);
}
if let Some(version) = http.min_tls_version {
client = client.min_tls_version(to_reqwest_tls(version));
}
if let Some(version) = http.max_tls_version {
client = client.max_tls_version(to_reqwest_tls(version));
}
match http.tls_backend {
TlsBackend::Rustls => {
client = client.use_rustls_tls();
}
TlsBackend::Default => {}
}
Self {
debug_requests: config.debug_requests,
client: client.build().unwrap(),
file: file_writer,
}
}
async fn get(&self, url: &Url, headers: Option<HeaderMap>) -> anyhow::Result<Response> {
self.execute_request("GET", url, |client| {
client.get(url.clone()).headers(self.headers(headers))
})
.await
}
async fn post(
&self,
url: &Url,
headers: Option<HeaderMap>,
body: Bytes,
) -> anyhow::Result<Response> {
let mut request_headers = self.headers(headers);
request_headers.insert("Content-Type", HeaderValue::from_static("application/json"));
self.write_debug_request(&body);
self.execute_request("POST", url, |client| {
client.post(url.clone()).headers(request_headers).body(body)
})
.await
}
async fn delete(&self, url: &Url) -> anyhow::Result<Response> {
self.execute_request("DELETE", url, |client| {
client.delete(url.clone()).headers(self.headers(None))
})
.await
}
/// Generic helper method to execute HTTP requests with consistent error
/// handling
async fn execute_request<B>(
&self,
method: &str,
url: &Url,
request_builder: B,
) -> anyhow::Result<Response>
where
B: FnOnce(&Client) -> reqwest::RequestBuilder,
{
let response = request_builder(&self.client)
.send()
.await
.with_context(|| format_http_context(None, method, url))?;
let status = response.status();
if !status.is_success() {
let error_body = response
.text()
.await
.unwrap_or_else(|_| "Unable to read response body".to_string());
return Err(anyhow::Error::from(
forge_app::dto::openai::Error::InvalidStatusCode(status.as_u16()),
))
.context(error_body)
.with_context(|| format_http_context(Some(status), method, url));
}
Ok(response)
}
// OpenRouter optional headers ref: https://openrouter.ai/docs/api-reference/overview#headers
// - `HTTP-Referer`: Identifies your app on openrouter.ai
// - `X-Title`: Sets/modifies your app's title
fn headers(&self, headers: Option<HeaderMap>) -> HeaderMap {
let mut headers = headers.unwrap_or_default();
// Only set User-Agent if the provider hasn't already set one
if !headers.contains_key("User-Agent") {
headers.insert("User-Agent", HeaderValue::from_static("Forge"));
}
headers.insert("X-Title", HeaderValue::from_static("forge"));
headers.insert(
"x-app-version",
HeaderValue::from_str(format!("v{VERSION}").as_str())
.unwrap_or(HeaderValue::from_static("v0.1.0-dev")),
);
headers.insert(
"HTTP-Referer",
HeaderValue::from_static("https://forgecode.dev"),
);
headers.insert(
reqwest::header::CONNECTION,
HeaderValue::from_static("keep-alive"),
);
debug!(headers = ?sanitize_headers(&headers), "Request Headers");
headers
}
}
/// Sanitizes headers for logging by redacting sensitive values like
/// authorization tokens and API keys.
pub fn sanitize_headers(headers: &HeaderMap) -> HeaderMap {
let sensitive_headers = [
AUTHORIZATION.as_str(),
"x-api-key",
"x-goog-api-key",
"api-key",
];
headers
.iter()
.map(|(name, value)| {
let name_str = name.as_str().to_lowercase();
let value_str = if sensitive_headers.contains(&name_str.as_str()) {
HeaderValue::from_static("[REDACTED]")
} else {
value.clone()
};
(name.clone(), value_str)
})
.collect()
}
impl<F: forge_app::FileWriterInfra + 'static> ForgeHttpInfra<F> {
fn write_debug_request(&self, body: &Bytes) {
if let Some(debug_path) = &self.debug_requests {
let file_writer = self.file.clone();
let body_clone = body.clone();
let debug_path = debug_path.clone();
tokio::spawn(async move {
let mut data = body_clone.to_vec();
data.push(b'\n');
let _ = file_writer.append(&debug_path, Bytes::from(data)).await;
});
}
}
async fn eventsource(
&self,
url: &Url,
headers: Option<HeaderMap>,
body: Bytes,
) -> anyhow::Result<EventSource> {
let mut request_headers = self.headers(headers);
request_headers.insert("Content-Type", HeaderValue::from_static("application/json"));
self.write_debug_request(&body);
self.client
.post(url.clone())
.headers(request_headers)
.body(body)
.eventsource()
.with_context(|| format_http_context(None, "POST (EventSource)", url))
}
}
/// Helper function to format HTTP request/response context for logging and
/// error reporting
fn format_http_context<U: AsRef<str>>(status: Option<StatusCode>, method: &str, url: U) -> String {
if let Some(status) = status {
format!("{} {} {}", status.as_u16(), method, url.as_ref())
} else {
format!("{} {}", method, url.as_ref())
}
}
#[async_trait::async_trait]
impl<F: forge_app::FileWriterInfra + 'static> HttpInfra for ForgeHttpInfra<F> {
async fn http_get(&self, url: &Url, headers: Option<HeaderMap>) -> anyhow::Result<Response> {
self.get(url, headers).await
}
async fn http_post(
&self,
url: &Url,
headers: Option<HeaderMap>,
body: Bytes,
) -> anyhow::Result<Response> {
self.post(url, headers, body).await
}
async fn http_delete(&self, url: &Url) -> anyhow::Result<Response> {
self.delete(url).await
}
async fn http_eventsource(
&self,
url: &Url,
headers: Option<HeaderMap>,
body: Bytes,
) -> anyhow::Result<EventSource> {
self.eventsource(url, headers, body).await
}
}
#[cfg(test)]
mod tests {
use std::path::PathBuf;
use std::sync::Arc;
use fake::{Fake, Faker};
use forge_app::FileWriterInfra;
use forge_config::ForgeConfig;
use tokio::sync::Mutex;
use super::*;
#[derive(Clone)]
struct MockFileWriter {
writes: Arc<Mutex<Vec<(PathBuf, Bytes)>>>,
}
impl MockFileWriter {
fn new() -> Self {
Self { writes: Arc::new(Mutex::new(Vec::new())) }
}
async fn get_writes(&self) -> Vec<(PathBuf, Bytes)> {
self.writes.lock().await.clone()
}
}
#[async_trait::async_trait]
impl FileWriterInfra for MockFileWriter {
async fn write(&self, path: &std::path::Path, contents: Bytes) -> anyhow::Result<()> {
self.writes
.lock()
.await
.push((path.to_path_buf(), contents));
Ok(())
}
async fn append(&self, path: &std::path::Path, contents: Bytes) -> anyhow::Result<()> {
self.writes
.lock()
.await
.push((path.to_path_buf(), contents));
Ok(())
}
async fn write_temp(
&self,
_prefix: &str,
_extension: &str,
_content: &str,
) -> anyhow::Result<PathBuf> {
Ok(Faker.fake())
}
}
fn create_test_config(debug_requests: Option<PathBuf>) -> ForgeConfig {
ForgeConfig { debug_requests, ..Default::default() }
}
#[tokio::test]
async fn test_debug_requests_none_does_not_write() {
let file_writer = MockFileWriter::new();
let config = create_test_config(None);
let http = ForgeHttpInfra::new(config, Arc::new(file_writer.clone()));
let body = Bytes::from("test request body");
let url = Url::parse("https://api.test.com/messages").unwrap();
// Attempt to create eventsource (which triggers debug write if enabled)
let _ = http.eventsource(&url, None, body).await;
// Give async task time to complete
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let writes = file_writer.get_writes().await;
assert_eq!(
writes.len(),
0,
"No files should be written when debug_requests is None"
);
}
#[tokio::test]
async fn test_debug_requests_with_valid_path() {
let file_writer = MockFileWriter::new();
let debug_path = PathBuf::from("/tmp/forge-test/debug.json");
let config = create_test_config(Some(debug_path.clone()));
let http = ForgeHttpInfra::new(config, Arc::new(file_writer.clone()));
let body = Bytes::from("test request body");
let url = Url::parse("https://api.test.com/messages").unwrap();
let _ = http.eventsource(&url, None, body.clone()).await;
// Give async task time to complete
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let writes = file_writer.get_writes().await;
assert_eq!(writes.len(), 1, "Should write one file");
assert_eq!(writes[0].0, debug_path);
let mut expected = body.to_vec();
expected.push(b'\n');
assert_eq!(writes[0].1, Bytes::from(expected));
}
#[tokio::test]
async fn test_debug_requests_with_relative_path() {
let file_writer = MockFileWriter::new();
let debug_path = PathBuf::from("./debug/requests.json");
let config = create_test_config(Some(debug_path.clone()));
let http = ForgeHttpInfra::new(config, Arc::new(file_writer.clone()));
let body = Bytes::from("test request body");
let url = Url::parse("https://api.test.com/messages").unwrap();
let _ = http.eventsource(&url, None, body.clone()).await;
// Give async task time to complete
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let writes = file_writer.get_writes().await;
assert_eq!(writes.len(), 1, "Should write one file");
assert_eq!(writes[0].0, debug_path);
let mut expected = body.to_vec();
expected.push(b'\n');
assert_eq!(writes[0].1, Bytes::from(expected));
}
#[tokio::test]
async fn test_debug_requests_post_none_does_not_write() {
let file_writer = MockFileWriter::new();
let config = create_test_config(None);
let http = ForgeHttpInfra::new(config, Arc::new(file_writer.clone()));
let body = Bytes::from("test request body");
let url = Url::parse("http://127.0.0.1:9/responses").unwrap();
let _ = http.post(&url, None, body).await;
// Give async task time to complete
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let writes = file_writer.get_writes().await;
assert_eq!(
writes.len(),
0,
"No files should be written for POST when debug_requests is None"
);
}
#[tokio::test]
async fn test_debug_requests_post_writes_body() {
let file_writer = MockFileWriter::new();
let debug_path = PathBuf::from("/tmp/forge-test/debug-post.json");
let config = create_test_config(Some(debug_path.clone()));
let http = ForgeHttpInfra::new(config, Arc::new(file_writer.clone()));
let body = Bytes::from("test request body");
let url = Url::parse("http://127.0.0.1:9/responses").unwrap();
let _ = http.post(&url, None, body.clone()).await;
// Give async task time to complete
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let writes = file_writer.get_writes().await;
assert_eq!(
writes.len(),
1,
"Should write one file for POST when debug_requests is set"
);
assert_eq!(writes[0].0, debug_path);
let mut expected = body.to_vec();
expected.push(b'\n');
assert_eq!(writes[0].1, Bytes::from(expected));
}
#[tokio::test]
async fn test_debug_requests_fallback_on_dir_creation_failure() {
let file_writer = MockFileWriter::new();
// Use a path with a parent that doesn't exist and can't be created
// (in practice, this would be a permission issue)
let debug_path = PathBuf::from("test_debug.json");
let config = create_test_config(Some(debug_path.clone()));
let http = ForgeHttpInfra::new(config, Arc::new(file_writer.clone()));
let body = Bytes::from("test request body");
let url = Url::parse("https://api.test.com/messages").unwrap();
let _ = http.eventsource(&url, None, body.clone()).await;
// Give async task time to complete
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let writes = file_writer.get_writes().await;
// Should write to debug_path (no parent dir needed)
assert_eq!(writes.len(), 1, "Should write one file");
assert_eq!(writes[0].0, debug_path);
let mut expected = body.to_vec();
expected.push(b'\n');
assert_eq!(writes[0].1, Bytes::from(expected));
}
#[test]
fn test_sanitize_headers_redacts_sensitive_values() {
use reqwest::header::HeaderValue;
let mut headers = HeaderMap::new();
headers.insert(
AUTHORIZATION,
HeaderValue::from_static("Bearer secret-api-key"),
);
headers.insert("x-api-key", HeaderValue::from_static("another-secret"));
headers.insert("x-goog-api-key", HeaderValue::from_static("google-secret"));
headers.insert("api-key", HeaderValue::from_static("generic-secret"));
headers.insert("x-title", HeaderValue::from_static("forge"));
headers.insert("content-type", HeaderValue::from_static("application/json"));
let sanitized = sanitize_headers(&headers);
assert_eq!(
sanitized.get("authorization"),
Some(&HeaderValue::from_static("[REDACTED]"))
);
assert_eq!(
sanitized.get("x-api-key"),
Some(&HeaderValue::from_static("[REDACTED]"))
);
assert_eq!(
sanitized.get("x-goog-api-key"),
Some(&HeaderValue::from_static("[REDACTED]"))
);
assert_eq!(
sanitized.get("api-key"),
Some(&HeaderValue::from_static("[REDACTED]"))
);
assert_eq!(
sanitized.get("x-title"),
Some(&HeaderValue::from_static("forge"))
);
assert_eq!(
sanitized.get("content-type"),
Some(&HeaderValue::from_static("application/json"))
);
}
}
|