use hyper::{Body, Request, Response, header::HeaderValue};
use crate::{Error, handler::RequestHandlerOpts};
static CACHE_CONTROL_ONE_HOUR: HeaderValue = HeaderValue::from_static("max-age=3600");
static CACHE_CONTROL_ONE_DAY: HeaderValue = HeaderValue::from_static("max-age=86400");
static CACHE_CONTROL_ONE_YEAR: HeaderValue = HeaderValue::from_static("max-age=31536000");
const CACHE_EXT_ONE_HOUR: [&str; 4] = ["atom", "json", "rss", "xml"];
const CACHE_EXT_ONE_YEAR: [&str; 32] = [
"avif", "bmp", "bz2", "css", "doc", "gif", "gz", "htc", "ico", "jpeg", "jpg", "js", "jxl",
"map", "mjs", "mp3", "mp4", "ogg", "ogv", "pdf", "png", "rar", "rtf", "tar", "tgz", "wav",
"weba", "webm", "webp", "woff", "woff2", "zip",
];
pub(crate) fn init(enabled: bool, handler_opts: &mut RequestHandlerOpts) {
handler_opts.cache_control_headers = enabled;
tracing::info!("cache control headers: enabled={enabled}");
}
pub(crate) fn post_process<T>(
opts: &RequestHandlerOpts,
req: &Request<T>,
mut resp: Response<Body>,
) -> Result<Response<Body>, Error> {
if opts.cache_control_headers {
append_headers(req.uri().path(), &mut resp);
}
Ok(resp)
}
pub fn append_headers(uri: &str, resp: &mut Response<Body>) {
let header_value = get_cache_control_header(uri);
resp.headers_mut()
.insert("cache-control", header_value.clone());
}
#[inline(always)]
fn get_file_extension(uri: &str) -> Option<&str> {
uri.rsplit_once('.').map(|(_, rest)| rest)
}
#[inline(always)]
fn get_cache_control_header(uri: &str) -> &'static HeaderValue {
if let Some(extension) = get_file_extension(uri) {
if CACHE_EXT_ONE_HOUR.binary_search(&extension).is_ok() {
return &CACHE_CONTROL_ONE_HOUR;
} else if CACHE_EXT_ONE_YEAR.binary_search(&extension).is_ok() {
return &CACHE_CONTROL_ONE_YEAR;
}
}
&CACHE_CONTROL_ONE_DAY
}
#[cfg(test)]
mod tests {
use hyper::{Body, Response, StatusCode};
use super::{CACHE_EXT_ONE_HOUR, CACHE_EXT_ONE_YEAR, append_headers, get_file_extension};
#[test]
fn headers_one_hour() {
let mut resp = Response::new(Body::empty());
*resp.status_mut() = StatusCode::OK;
for ext in CACHE_EXT_ONE_HOUR.iter() {
append_headers(&["/some.", ext].concat(), &mut resp);
let cache_control = resp.headers().get(http::header::CACHE_CONTROL).unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(cache_control.to_str().unwrap(), "max-age=3600");
}
}
#[test]
fn headers_one_day_default() {
let mut resp = Response::new(Body::empty());
*resp.status_mut() = StatusCode::OK;
append_headers("/", &mut resp);
let cache_control = resp.headers().get(http::header::CACHE_CONTROL).unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(cache_control.to_str().unwrap(), "max-age=86400");
}
#[test]
fn headers_one_year() {
let mut resp = Response::new(Body::empty());
*resp.status_mut() = StatusCode::OK;
for ext in CACHE_EXT_ONE_YEAR.iter() {
append_headers(&["/some.", ext].concat(), &mut resp);
let cache_control = resp.headers().get(http::header::CACHE_CONTROL).unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(cache_control.to_str().unwrap(), "max-age=31536000");
}
}
#[test]
fn find_uri_extension() {
assert_eq!(get_file_extension("/potato.zip"), Some("zip"));
assert_eq!(get_file_extension("/potato."), Some(""));
assert_eq!(get_file_extension("/"), None);
}
}