wip(bridge): retained FIFA request/response mapper + docker packaging

RETAINED PRE-EXISTING WIP (brought forward after verification, not authored
here, not production-ready). Substantive mapper.rs proxy expansion plus a
multi-stage Dockerfile/.dockerignore (rustls, self-signed cert at startup).
No secrets/captures staged. Preserved off the detached base c58e7326a1.
This commit is contained in:
funman300
2026-08-20 16:08:24 +00:00
parent c58e7326a1
commit 658dbe2f24
12 changed files with 447 additions and 186 deletions
+7 -2
View File
@@ -107,8 +107,13 @@ pub async fn catch_all_handler(
.unwrap_or_default()
);
let mut capture =
CapturedRequest::new(&method, &path, query.as_deref(), headers.clone(), body_str.clone());
let mut capture = CapturedRequest::new(
&method,
&path,
query.as_deref(),
headers.clone(),
body_str.clone(),
);
let (response_body, status_code): (Value, u16) =
if let Some(mapping) = map_to_core(&method, &path) {