use aws_smithy_runtime_api::client::orchestrator::{HttpResponse, SensitiveOutput};
use aws_smithy_types::body::SdkBody;
use aws_smithy_types::config_bag::ConfigBag;
use bytes::Bytes;
use pin_utils::pin_mut;
use tracing::trace;
const LOG_SENSITIVE_BODIES: &str = "LOG_SENSITIVE_BODIES";
async fn body_to_bytes(body: SdkBody) -> Result<Bytes, <SdkBody as http_body_1x::Body>::Error> {
use http_body_util::BodyExt;
pin_mut!(body);
let collected = body.collect().await?;
Ok(collected.to_bytes())
}
pub(crate) async fn read_body(
response: &mut HttpResponse,
) -> Result<(), <SdkBody as http_body_1x::Body>::Error> {
let mut body = SdkBody::taken();
std::mem::swap(&mut body, response.body_mut());
let bytes = body_to_bytes(body).await?;
let mut body = SdkBody::from(bytes);
std::mem::swap(&mut body, response.body_mut());
Ok(())
}
pub(crate) fn log_response_body(response: &HttpResponse, cfg: &ConfigBag) {
if cfg.load::<SensitiveOutput>().is_none()
|| std::env::var(LOG_SENSITIVE_BODIES)
.map(|v| v.eq_ignore_ascii_case("true"))
.unwrap_or_default()
{
trace!(response = ?response, "read HTTP response body");
} else {
trace!(
response = "** REDACTED **. To print, set LOG_SENSITIVE_BODIES=true",
"read HTTP response body"
)
}
}