Rocket/lib/src/response/named_file.rs

50 lines
1.1 KiB
Rust
Raw Normal View History

2016-09-12 08:51:02 +00:00
use response::*;
use content_type::ContentType;
2016-09-12 08:51:02 +00:00
use std::fs::File;
use std::path::{Path, PathBuf};
use std::io;
2016-09-12 09:43:34 +00:00
use std::ops::{Deref, DerefMut};
2016-09-12 08:51:02 +00:00
2016-09-12 09:43:34 +00:00
#[derive(Debug)]
2016-09-12 08:51:02 +00:00
pub struct NamedFile(PathBuf, File);
impl NamedFile {
pub fn open<P: AsRef<Path>>(path: P) -> io::Result<NamedFile> {
let file = File::open(path.as_ref())?;
Ok(NamedFile(path.as_ref().to_path_buf(), file))
}
pub fn path(&self) -> &Path {
self.0.as_path()
}
}
impl Responder for NamedFile {
fn respond<'a>(&mut self, mut res: FreshHyperResponse<'a>) -> Outcome<'a> {
if let Some(ext) = self.path().extension() {
let ext_string = ext.to_string_lossy().to_lowercase();
let content_type = ContentType::from_extension(&ext_string);
if !content_type.is_any() {
res.headers_mut().set(header::ContentType(content_type.into()));
2016-09-12 08:51:02 +00:00
}
}
self.1.respond(res)
}
}
2016-09-12 09:43:34 +00:00
impl Deref for NamedFile {
type Target = File;
fn deref(&self) -> &File {
&self.1
}
}
impl DerefMut for NamedFile {
fn deref_mut(&mut self) -> &mut File {
&mut self.1
}
}