1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-08-02 02:35:04 +00:00

Add Content-Disposition to NamedFile (fixes #172)

This commit is contained in:
Sven-Hendrik Haase 2018-04-27 09:49:55 +02:00
parent fd876efa68
commit 492c072564

View file

@ -205,6 +205,9 @@ impl Responder for NamedFile {
resp.set(header::ContentType(get_mime_type(
&ext.to_string_lossy(),
)));
}).if_some(self.path().file_name(), |file_name, resp| {
resp.header("Content-Disposition",
format!("attachment; filename={}", file_name.to_string_lossy()));
});
let reader = ChunkedReadFile {
size: self.md.len(),
@ -256,12 +259,14 @@ impl Responder for NamedFile {
resp.set(header::ContentType(get_mime_type(
&ext.to_string_lossy(),
)));
}).if_some(self.path().file_name(), |file_name, resp| {
resp.header("Content-Disposition",
format!("attachment; filename={}", file_name.to_string_lossy()));
}).if_some(last_modified, |lm, resp| {
resp.set(header::LastModified(lm));
})
.if_some(etag, |etag, resp| {
resp.set(header::ETag(etag));
});
}).if_some(etag, |etag, resp| {
resp.set(header::ETag(etag));
});
if precondition_failed {
return Ok(resp.status(StatusCode::PRECONDITION_FAILED).finish());
@ -612,7 +617,11 @@ mod tests {
assert_eq!(
resp.headers().get(header::CONTENT_TYPE).unwrap(),
"text/x-toml"
)
);
assert_eq!(
resp.headers().get(header::CONTENT_DISPOSITION).unwrap(),
"attachment; filename=Cargo.toml"
);
}
#[test]
@ -634,6 +643,10 @@ mod tests {
resp.headers().get(header::CONTENT_TYPE).unwrap(),
"text/x-toml"
);
assert_eq!(
resp.headers().get(header::CONTENT_DISPOSITION).unwrap(),
"attachment; filename=Cargo.toml"
);
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
}