feat: support customizable 404 page (#688)

This commit is contained in:
sigoden
2026-04-24 08:20:19 +08:00
committed by GitHub
parent a88a4ee630
commit 0ccc2cf1e7
3 changed files with 74 additions and 7 deletions
+8
View File
@@ -295,6 +295,7 @@ pub struct Args {
pub render_try_index: bool,
pub enable_cors: bool,
pub assets: Option<PathBuf>,
pub error_page: Option<PathBuf>,
#[serde(deserialize_with = "deserialize_log_http")]
#[serde(rename = "log-format")]
pub http_logger: HttpLogger,
@@ -410,6 +411,13 @@ impl Args {
args.assets = Some(Args::sanitize_assets_path(assets_path)?);
}
if let Some(assets_path) = &args.assets {
let p = assets_path.join("404.html");
if p.exists() {
args.error_page = Some(p);
}
}
if let Some(log_format) = matches.get_one::<String>("log-format") {
args.http_logger = log_format.parse()?;
}
+33 -7
View File
@@ -245,7 +245,8 @@ impl Server {
self.handle_send_file(&self.args.serve_path, headers, head_only, &mut res)
.await?;
} else {
status_not_found(&mut res);
self.handle_not_found(&query_params, headers, head_only, &mut res)
.await?;
}
return Ok(res);
}
@@ -273,7 +274,8 @@ impl Server {
let render_try_index = self.args.render_try_index;
if self.guard_root_contained(path).await {
status_not_found(&mut res);
self.handle_not_found(&query_params, headers, head_only, &mut res)
.await?;
return Ok(res);
}
@@ -283,7 +285,8 @@ impl Server {
if render_try_index {
if allow_archive && has_query_flag(&query_params, "zip") {
if !allow_archive {
status_not_found(&mut res);
self.handle_not_found(&query_params, headers, head_only, &mut res)
.await?;
return Ok(res);
}
self.handle_zip_dir(path, head_only, access_paths, &mut res)
@@ -370,7 +373,7 @@ impl Server {
.await?;
}
} else if render_spa {
self.handle_render_spa(path, headers, head_only, &mut res)
self.handle_render_spa(path, &query_params, headers, head_only, &mut res)
.await?;
} else if allow_upload && req_path.ends_with('/') {
self.handle_ls_dir(
@@ -384,7 +387,8 @@ impl Server {
)
.await?;
} else {
status_not_found(&mut res);
self.handle_not_found(&query_params, headers, head_only, &mut res)
.await?;
}
}
Method::OPTIONS => {
@@ -720,7 +724,8 @@ impl Server {
self.handle_ls_dir(path, true, query_params, head_only, user, access_paths, res)
.await?;
} else {
status_not_found(res)
self.handle_not_found(query_params, headers, head_only, res)
.await?;
}
Ok(())
}
@@ -753,6 +758,7 @@ impl Server {
async fn handle_render_spa(
&self,
path: &Path,
query_params: &HashMap<String, String>,
headers: &HeaderMap<HeaderValue>,
head_only: bool,
res: &mut Response,
@@ -762,11 +768,31 @@ impl Server {
self.handle_send_file(&path, headers, head_only, res)
.await?;
} else {
status_not_found(res)
self.handle_not_found(query_params, headers, head_only, res)
.await?;
}
Ok(())
}
async fn handle_not_found(
&self,
query_params: &HashMap<String, String>,
headers: &HeaderMap<HeaderValue>,
head_only: bool,
res: &mut Response,
) -> Result<()> {
if let Some(error_page) = &self.args.error_page {
if !has_query_flag(query_params, "noscript") {
self.handle_send_file(error_page, headers, head_only, res)
.await?;
*res.status_mut() = StatusCode::NOT_FOUND;
return Ok(());
}
}
status_not_found(res);
Ok(())
}
async fn handle_internal(
&self,
req_path: &str,
+33
View File
@@ -123,3 +123,36 @@ fn assets_override(tmpdir: TempDir, port: u16) -> Result<(), Error> {
child.kill()?;
Ok(())
}
#[rstest]
fn assets_override_not_found_page(tmpdir: TempDir, port: u16) -> Result<(), Error> {
let not_found_html = "<html><body>custom 404 page</body></html>";
std::fs::write(
tmpdir.join(format!("{}404.html", DIR_ASSETS)),
not_found_html,
)?;
let mut child = Command::new(assert_cmd::cargo::cargo_bin!())
.arg(tmpdir.path())
.arg("-p")
.arg(port.to_string())
.arg("--assets")
.arg(tmpdir.join(DIR_ASSETS))
.stdout(Stdio::piped())
.spawn()?;
wait_for_port(port);
let url = format!("http://localhost:{port}/missing-path");
let resp = reqwest::blocking::get(&url)?;
assert_eq!(resp.status(), 404);
assert_eq!(resp.text()?, not_found_html);
let url = format!("http://localhost:{port}/missing-path?noscript");
let resp = reqwest::blocking::get(&url)?;
assert_eq!(resp.status(), 404);
assert_eq!(resp.text()?, "Not Found");
child.kill()?;
Ok(())
}