use hyper::{Body, Request, Response};
use std::{future::Future, path::PathBuf};
use crate::{compression, control_headers, static_files};
use crate::{error_page, Error, Result};
pub struct RequestHandlerOpts {
pub root_dir: PathBuf,
pub compression: bool,
pub dir_listing: bool,
}
pub struct RequestHandler {
pub opts: RequestHandlerOpts,
}
impl RequestHandler {
pub fn handle<'a>(
&'a self,
req: &'a mut Request<Body>,
) -> impl Future<Output = Result<Response<Body>, Error>> + Send + 'a {
let method = req.method();
let headers = req.headers();
let root_dir = self.opts.root_dir.as_path();
let uri_path = req.uri().path();
let dir_listing = self.opts.dir_listing;
async move {
match static_files::handle_request(method, headers, root_dir, uri_path, dir_listing)
.await
{
Ok(mut resp) => {
if self.opts.compression {
resp = compression::auto(method, headers, resp)?;
}
let ext = uri_path.to_lowercase();
control_headers::with_cache_control(&ext, &mut resp);
Ok(resp)
}
Err(status) => error_page::get_error_response(method, &status),
}
}
}
}