use axum::body::Body; use axum::http::StatusCode; use axum::response::{IntoResponse, Response}; use myfsio_common::error::{S3Error, S3ErrorCode}; use myfsio_storage::traits::StorageEngine; use crate::state::AppState; fn xml_response(status: StatusCode, xml: String) -> Response { (status, [("content-type", "application/xml")], xml).into_response() } fn storage_err(err: myfsio_storage::error::StorageError) -> Response { let s3err = S3Error::from(err); let status = StatusCode::from_u16(s3err.http_status()).unwrap_or(StatusCode::INTERNAL_SERVER_ERROR); (status, [("content-type", "application/xml")], s3err.to_xml()).into_response() } fn json_response(status: StatusCode, value: serde_json::Value) -> Response { ( status, [("content-type", "application/json")], value.to_string(), ) .into_response() } pub async fn get_versioning(state: &AppState, bucket: &str) -> Response { match state.storage.is_versioning_enabled(bucket).await { Ok(enabled) => { let status_str = if enabled { "Enabled" } else { "Suspended" }; let xml = format!( "\ \ {}\ ", status_str ); xml_response(StatusCode::OK, xml) } Err(e) => storage_err(e), } } pub async fn put_versioning(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::from_code(S3ErrorCode::MalformedXML).to_xml(), ); } }; let xml_str = String::from_utf8_lossy(&body_bytes); let enabled = xml_str.contains("Enabled"); match state.storage.set_versioning(bucket, enabled).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } pub async fn get_tagging(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { let mut xml = String::from( "\ " ); for tag in &config.tags { xml.push_str(&format!( "{}{}", tag.key, tag.value )); } xml.push_str(""); xml_response(StatusCode::OK, xml) } Err(e) => storage_err(e), } } pub async fn put_tagging(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::from_code(S3ErrorCode::MalformedXML).to_xml(), ); } }; let xml_str = String::from_utf8_lossy(&body_bytes); let tags = parse_tagging_xml(&xml_str); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.tags = tags; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_tagging(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.tags.clear(); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_cors(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(cors) = &config.cors { xml_response(StatusCode::OK, cors.to_string()) } else { xml_response( StatusCode::NOT_FOUND, S3Error::new(S3ErrorCode::NoSuchKey, "The CORS configuration does not exist").to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_cors(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let body_str = String::from_utf8_lossy(&body_bytes); let value = serde_json::Value::String(body_str.to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.cors = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_cors(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.cors = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_location(state: &AppState, _bucket: &str) -> Response { let xml = format!( "\ {}", state.config.region ); xml_response(StatusCode::OK, xml) } pub async fn get_encryption(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(enc) = &config.encryption { xml_response(StatusCode::OK, enc.to_string()) } else { xml_response( StatusCode::NOT_FOUND, S3Error::new( S3ErrorCode::InvalidRequest, "The server side encryption configuration was not found", ).to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_encryption(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.encryption = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_encryption(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.encryption = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_lifecycle(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(lc) = &config.lifecycle { xml_response(StatusCode::OK, lc.to_string()) } else { xml_response( StatusCode::NOT_FOUND, S3Error::new(S3ErrorCode::NoSuchKey, "The lifecycle configuration does not exist").to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_lifecycle(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.lifecycle = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_lifecycle(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.lifecycle = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_quota(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(quota) = &config.quota { let usage = match state.storage.bucket_stats(bucket).await { Ok(s) => s, Err(e) => return storage_err(e), }; json_response( StatusCode::OK, serde_json::json!({ "quota": { "max_size_bytes": quota.max_bytes, "max_objects": quota.max_objects, }, "usage": { "bytes": usage.bytes, "objects": usage.objects, } }), ) } else { xml_response( StatusCode::NOT_FOUND, S3Error::new(S3ErrorCode::NoSuchKey, "No quota configuration found").to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_quota(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::new(S3ErrorCode::InvalidArgument, "Invalid quota payload").to_xml(), ); } }; let payload: serde_json::Value = match serde_json::from_slice(&body_bytes) { Ok(v) => v, Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::new(S3ErrorCode::InvalidArgument, "Request body must be valid JSON").to_xml(), ); } }; let max_size = payload .get("max_size_bytes") .and_then(|v| v.as_u64()); let max_objects = payload .get("max_objects") .and_then(|v| v.as_u64()); if max_size.is_none() && max_objects.is_none() { return xml_response( StatusCode::BAD_REQUEST, S3Error::new( S3ErrorCode::InvalidArgument, "At least one of max_size_bytes or max_objects is required", ) .to_xml(), ); } match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.quota = Some(myfsio_common::types::QuotaConfig { max_bytes: max_size, max_objects, }); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_quota(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.quota = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_policy(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(policy) = &config.policy { json_response(StatusCode::OK, policy.clone()) } else { xml_response( StatusCode::NOT_FOUND, S3Error::new(S3ErrorCode::NoSuchKey, "No bucket policy attached").to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_policy(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::new(S3ErrorCode::MalformedXML, "Failed to read policy body").to_xml(), ); } }; let policy: serde_json::Value = match serde_json::from_slice(&body_bytes) { Ok(v) => v, Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::new(S3ErrorCode::InvalidArgument, "Policy document must be JSON").to_xml(), ); } }; match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.policy = Some(policy); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_policy(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.policy = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_policy_status(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { let is_public = config .policy .as_ref() .map(policy_is_public) .unwrap_or(false); let xml = format!( "{}", if is_public { "TRUE" } else { "FALSE" } ); xml_response(StatusCode::OK, xml) } Err(e) => storage_err(e), } } pub async fn get_replication(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(replication) = &config.replication { match replication { serde_json::Value::String(s) => xml_response(StatusCode::OK, s.clone()), other => xml_response(StatusCode::OK, other.to_string()), } } else { xml_response( StatusCode::NOT_FOUND, S3Error::new( S3ErrorCode::NoSuchKey, "Replication configuration not found", ) .to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_replication(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::new(S3ErrorCode::MalformedXML, "Failed to read replication body").to_xml(), ); } }; if body_bytes.is_empty() { return xml_response( StatusCode::BAD_REQUEST, S3Error::new(S3ErrorCode::MalformedXML, "Request body is required").to_xml(), ); } let body_str = String::from_utf8_lossy(&body_bytes).to_string(); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.replication = Some(serde_json::Value::String(body_str)); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_replication(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.replication = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } fn policy_is_public(policy: &serde_json::Value) -> bool { let statements = match policy.get("Statement") { Some(serde_json::Value::Array(items)) => items, Some(item) => { return is_allow_public_statement(item); } None => return false, }; statements.iter().any(is_allow_public_statement) } fn is_allow_public_statement(statement: &serde_json::Value) -> bool { let effect_allow = statement .get("Effect") .and_then(|v| v.as_str()) .map(|s| s.eq_ignore_ascii_case("allow")) .unwrap_or(false); if !effect_allow { return false; } match statement.get("Principal") { Some(serde_json::Value::String(s)) => s == "*", Some(serde_json::Value::Object(obj)) => obj.values().any(|v| v == "*"), _ => false, } } pub async fn get_acl(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(acl) = &config.acl { xml_response(StatusCode::OK, acl.to_string()) } else { let xml = "\ \ myfsiomyfsio\ \ \ myfsiomyfsio\ FULL_CONTROL\ "; xml_response(StatusCode::OK, xml.to_string()) } } Err(e) => storage_err(e), } } pub async fn put_acl(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.acl = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_website(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(ws) = &config.website { xml_response(StatusCode::OK, ws.to_string()) } else { xml_response( StatusCode::NOT_FOUND, S3Error::new(S3ErrorCode::NoSuchKey, "The website configuration does not exist").to_xml(), ) } } Err(e) => storage_err(e), } } pub async fn put_website(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.website = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_website(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.website = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn get_object_lock(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(ol) = &config.object_lock { xml_response(StatusCode::OK, ol.to_string()) } else { let xml = "\ \ Disabled\ "; xml_response(StatusCode::OK, xml.to_string()) } } Err(e) => storage_err(e), } } pub async fn get_notification(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(n) = &config.notification { xml_response(StatusCode::OK, n.to_string()) } else { let xml = "\ \ "; xml_response(StatusCode::OK, xml.to_string()) } } Err(e) => storage_err(e), } } pub async fn get_logging(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(config) => { if let Some(l) = &config.logging { xml_response(StatusCode::OK, l.to_string()) } else { let xml = "\ \ "; xml_response(StatusCode::OK, xml.to_string()) } } Err(e) => storage_err(e), } } pub async fn put_object_lock(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.object_lock = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_object_lock(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.object_lock = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn put_notification(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.notification = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_notification(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.notification = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn put_logging(state: &AppState, bucket: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => return StatusCode::BAD_REQUEST.into_response(), }; let value = serde_json::Value::String(String::from_utf8_lossy(&body_bytes).to_string()); match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.logging = Some(value); match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn delete_logging(state: &AppState, bucket: &str) -> Response { match state.storage.get_bucket_config(bucket).await { Ok(mut config) => { config.logging = None; match state.storage.set_bucket_config(bucket, &config).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } Err(e) => storage_err(e), } } pub async fn list_object_versions(state: &AppState, bucket: &str) -> Response { match state.storage.list_buckets().await { Ok(buckets) => { if !buckets.iter().any(|b| b.name == bucket) { return storage_err(myfsio_storage::error::StorageError::BucketNotFound( bucket.to_string(), )); } } Err(e) => return storage_err(e), } let params = myfsio_common::types::ListParams { max_keys: 1000, ..Default::default() }; let objects = match state.storage.list_objects(bucket, ¶ms).await { Ok(result) => result.objects, Err(e) => return storage_err(e), }; let mut xml = String::from( "\ " ); xml.push_str(&format!("{}", bucket)); for obj in &objects { xml.push_str(""); xml.push_str(&format!("{}", obj.key)); xml.push_str("null"); xml.push_str("true"); xml.push_str(&format!( "{}", myfsio_xml::response::format_s3_datetime(&obj.last_modified) )); if let Some(ref etag) = obj.etag { xml.push_str(&format!("\"{}\"", etag)); } xml.push_str(&format!("{}", obj.size)); xml.push_str("STANDARD"); xml.push_str(""); } xml.push_str(""); xml_response(StatusCode::OK, xml) } pub async fn get_object_tagging(state: &AppState, bucket: &str, key: &str) -> Response { match state.storage.get_object_tags(bucket, key).await { Ok(tags) => { let mut xml = String::from( "\ " ); for tag in &tags { xml.push_str(&format!( "{}{}", tag.key, tag.value )); } xml.push_str(""); xml_response(StatusCode::OK, xml) } Err(e) => storage_err(e), } } pub async fn put_object_tagging(state: &AppState, bucket: &str, key: &str, body: Body) -> Response { let body_bytes = match http_body_util::BodyExt::collect(body).await { Ok(collected) => collected.to_bytes(), Err(_) => { return xml_response( StatusCode::BAD_REQUEST, S3Error::from_code(S3ErrorCode::MalformedXML).to_xml(), ); } }; let xml_str = String::from_utf8_lossy(&body_bytes); let tags = parse_tagging_xml(&xml_str); match state.storage.set_object_tags(bucket, key, &tags).await { Ok(()) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } pub async fn delete_object_tagging(state: &AppState, bucket: &str, key: &str) -> Response { match state.storage.delete_object_tags(bucket, key).await { Ok(()) => StatusCode::NO_CONTENT.into_response(), Err(e) => storage_err(e), } } pub async fn get_object_acl(state: &AppState, bucket: &str, key: &str) -> Response { match state.storage.head_object(bucket, key).await { Ok(_) => { let xml = "\ \ myfsiomyfsio\ \ \ myfsiomyfsio\ FULL_CONTROL\ "; xml_response(StatusCode::OK, xml.to_string()) } Err(e) => storage_err(e), } } pub async fn put_object_acl(state: &AppState, bucket: &str, key: &str, _body: Body) -> Response { match state.storage.head_object(bucket, key).await { Ok(_) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } pub async fn get_object_retention(state: &AppState, bucket: &str, key: &str) -> Response { match state.storage.head_object(bucket, key).await { Ok(_) => { xml_response( StatusCode::NOT_FOUND, S3Error::new( S3ErrorCode::InvalidRequest, "No retention policy configured", ).to_xml(), ) } Err(e) => storage_err(e), } } pub async fn put_object_retention(state: &AppState, bucket: &str, key: &str, _body: Body) -> Response { match state.storage.head_object(bucket, key).await { Ok(_) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } pub async fn get_object_legal_hold(state: &AppState, bucket: &str, key: &str) -> Response { match state.storage.head_object(bucket, key).await { Ok(_) => { let xml = "\ \ OFF"; xml_response(StatusCode::OK, xml.to_string()) } Err(e) => storage_err(e), } } pub async fn put_object_legal_hold(state: &AppState, bucket: &str, key: &str, _body: Body) -> Response { match state.storage.head_object(bucket, key).await { Ok(_) => StatusCode::OK.into_response(), Err(e) => storage_err(e), } } fn parse_tagging_xml(xml: &str) -> Vec { let mut tags = Vec::new(); let mut in_tag = false; let mut current_key = String::new(); let mut current_value = String::new(); let mut current_element = String::new(); let mut reader = quick_xml::Reader::from_str(xml); let mut buf = Vec::new(); loop { match reader.read_event_into(&mut buf) { Ok(quick_xml::events::Event::Start(ref e)) => { let name = String::from_utf8_lossy(e.name().as_ref()).to_string(); current_element = name.clone(); if name == "Tag" { in_tag = true; current_key.clear(); current_value.clear(); } } Ok(quick_xml::events::Event::Text(ref e)) => { if in_tag { let text = e.unescape().unwrap_or_default().to_string(); match current_element.as_str() { "Key" => current_key = text, "Value" => current_value = text, _ => {} } } } Ok(quick_xml::events::Event::End(ref e)) => { let name = String::from_utf8_lossy(e.name().as_ref()).to_string(); if name == "Tag" && in_tag { if !current_key.is_empty() { tags.push(myfsio_common::types::Tag { key: current_key.clone(), value: current_value.clone(), }); } in_tag = false; } } Ok(quick_xml::events::Event::Eof) => break, Err(_) => break, _ => {} } buf.clear(); } tags }