aboutsummaryrefslogtreecommitdiffstats
path: root/askama_actix/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar René Kijewski <kijewski@library.vetmed.fu-berlin.de>2022-01-05 11:38:36 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-01-05 13:57:53 +0100
commit783073b4fbc8bb974b04467b821c15e88d3c970e (patch)
tree722a24b76f50757b99ebc6dc0bf6faeedbb83f57 /askama_actix/src/lib.rs
parent2f8bdba17c5602d5f19330fcb7db474c9f2b1662 (diff)
downloadaskama-783073b4fbc8bb974b04467b821c15e88d3c970e.tar.gz
askama-783073b4fbc8bb974b04467b821c15e88d3c970e.tar.bz2
askama-783073b4fbc8bb974b04467b821c15e88d3c970e.zip
Update for actix-web beta
Diffstat (limited to 'askama_actix/src/lib.rs')
-rw-r--r--askama_actix/src/lib.rs36
1 files changed, 17 insertions, 19 deletions
diff --git a/askama_actix/src/lib.rs b/askama_actix/src/lib.rs
index d9ac62d..71af8cc 100644
--- a/askama_actix/src/lib.rs
+++ b/askama_actix/src/lib.rs
@@ -1,31 +1,29 @@
#![deny(elided_lifetimes_in_paths)]
+use actix_web::body::BoxBody;
+use actix_web::http::StatusCode;
+use actix_web::HttpResponseBuilder;
+use askama::mime::extension_to_mime_type;
pub use askama::*;
-use bytes::BytesMut;
-use actix_web::{error::ErrorInternalServerError, Error, HttpResponse};
+use actix_web::HttpResponse;
pub trait TemplateToResponse {
- fn to_response(&self) -> std::result::Result<HttpResponse, Error>;
+ fn to_response(&self) -> HttpResponse<BoxBody>;
}
impl<T: askama::Template> TemplateToResponse for T {
- fn to_response(&self) -> std::result::Result<HttpResponse, Error> {
- let mut buffer = BytesMut::with_capacity(T::SIZE_HINT);
- if self.render_into(&mut buffer).is_err() {
- return Err(ErrorInternalServerError("Template parsing error"));
+ fn to_response(&self) -> HttpResponse<BoxBody> {
+ match self.render() {
+ Ok(buffer) => {
+ let ctype = extension_to_mime_type(T::EXTENSION.unwrap_or("txt"));
+ HttpResponseBuilder::new(StatusCode::OK)
+ .content_type(ctype)
+ .body(buffer)
+ }
+ Err(err) => {
+ HttpResponse::from_error(Box::new(err) as Box<dyn std::error::Error + 'static>)
+ }
}
-
- let ctype = askama::mime::extension_to_mime_type(T::EXTENSION.unwrap_or("txt")).to_string();
- Ok(HttpResponse::Ok()
- .content_type(ctype.as_str())
- .body(buffer.freeze()))
}
}
-
-// Re-exported for use by generated code
-#[doc(hidden)]
-pub mod futures {
- pub use futures_util::future::ready;
- pub use futures_util::future::Ready;
-}