Skip to content
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
16 changes: 12 additions & 4 deletions server/src/handlers/http/middleware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,23 @@ where
fn call(&self, req: ServiceRequest) -> Self::Future {
let path = req.path();
let mode = &CONFIG.parseable.mode;

// change error messages based on mode
match mode {
Mode::Query => {
let cond = path.split('/').any(|x| x == "ingest");
if cond {
// In Query mode, only allows /ingest endpoint, and /logstream endpoint with GET method
let base_cond = path.split('/').any(|x| x == "ingest");
let logstream_cond =
!(path.split('/').any(|x| x == "logstream") && req.method() == "GET");
if base_cond {
Box::pin(async {
Err(actix_web::error::ErrorUnauthorized(
"Ingestion API cannot be accessed in Query Mode",
))
})
} else if logstream_cond {
Box::pin(async {
Err(actix_web::error::ErrorUnauthorized(
"Ingest API cannot be accessed in Query Mode",
"Logstream cannot be changed in Query Mode",
))
})
} else {
Expand Down