Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strip BASE_PREFIX from request path. #45

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions rust/server/src/vss_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ impl VssService {
}
}

const BASE_PATH_PREFIX: &str = "/vss";

impl Service<Request<Incoming>> for VssService {
type Response = Response<Full<Bytes>>;
type Error = hyper::Error;
Expand All @@ -39,8 +41,11 @@ impl Service<Request<Incoming>> for VssService {
let store = Arc::clone(&self.store);
let authorizer = Arc::clone(&self.authorizer);
let path = req.uri().path().to_owned();

Box::pin(async move {
match path.as_str() {
let prefix_stripped_path = path.strip_prefix(BASE_PATH_PREFIX).unwrap_or("");

match prefix_stripped_path {
"/getObject" => {
handle_request(store, authorizer, req, handle_get_object_request).await
},
Expand All @@ -54,10 +59,10 @@ impl Service<Request<Incoming>> for VssService {
handle_request(store, authorizer, req, handle_list_object_request).await
},
_ => {
let error = format!("Unknown request: {}", path).into_bytes();
let error_msg = "Invalid request path.".as_bytes();
Ok(Response::builder()
.status(StatusCode::BAD_REQUEST)
.body(Full::new(Bytes::from(error)))
.body(Full::new(Bytes::from(error_msg)))
.unwrap())
},
}
Expand Down
Loading