Skip to content

Commit

Permalink
Use Template::MIME_TYPE instead of extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski authored and djc committed Jan 7, 2022
1 parent a9aebf8 commit 332d741
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 43 deletions.
11 changes: 4 additions & 7 deletions askama_actix/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
use std::fmt;

use actix_web::body::BoxBody;
use actix_web::http::header::HeaderValue;
use actix_web::http::StatusCode;
use actix_web::{HttpResponse, HttpResponseBuilder, ResponseError};
use askama::mime::extension_to_mime_type;
pub use askama::*;

/// Newtype to let askama::Error implement actix_web::ResponseError.
Expand Down Expand Up @@ -36,12 +36,9 @@ pub trait TemplateToResponse {
impl<T: askama::Template> TemplateToResponse for T {
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)
}
Ok(buffer) => HttpResponseBuilder::new(StatusCode::OK)
.content_type(HeaderValue::from_static(T::MIME_TYPE))
.body(buffer),
Err(err) => HttpResponse::from_error(ActixError(err)),
}
}
Expand Down
6 changes: 3 additions & 3 deletions askama_axum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ pub use http::Response;
use http::StatusCode;
use http_body::{Empty, Full};

pub fn into_response<T: Template>(t: &T, ext: &str) -> Response<BoxBody> {
pub fn into_response<T: Template>(t: &T, _ext: &str) -> Response<BoxBody> {
match t.render() {
Ok(body) => Response::builder()
.status(StatusCode::OK)
.header(
"content-type",
askama::mime::extension_to_mime_type(ext).to_string(),
http::header::CONTENT_TYPE,
http::HeaderValue::from_static(T::MIME_TYPE),
)
.body(body::boxed(Full::from(body)))
.unwrap(),
Expand Down
6 changes: 3 additions & 3 deletions askama_gotham/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ pub use gotham::handler::IntoResponse;
pub use gotham::state::State;
pub use hyper::{Body, Response, StatusCode};

pub fn respond<T: Template>(t: &T, ext: &str) -> Response<Body> {
pub fn respond<T: Template>(t: &T, _ext: &str) -> Response<Body> {
match t.render() {
Ok(body) => Response::builder()
.status(StatusCode::OK)
.header(
"content-type",
mime::extension_to_mime_type(ext).to_string(),
hyper::header::CONTENT_TYPE,
hyper::header::HeaderValue::from_static(T::MIME_TYPE),
)
.body(body.into())
.unwrap(),
Expand Down
19 changes: 6 additions & 13 deletions askama_mendes/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@
#![deny(elided_lifetimes_in_paths)]
#![deny(unreachable_pub)]

use std::convert::TryFrom;

use mendes::application::{Application, Responder};
use mendes::http::header::{HeaderValue, CONTENT_LENGTH, CONTENT_TYPE};
use mendes::http::request::Parts;
use mendes::http::Response;
use mime_guess::MimeGuess;

pub use askama::*;

pub fn into_response<A, T>(
app: &A,
req: &Parts,
t: &T,
ext: Option<&str>,
_ext: Option<&str>,
) -> Response<A::ResponseBody>
where
A: Application,
Expand All @@ -29,13 +26,9 @@ where
Err(e) => return <A::Error as From<_>>::from(e).into_response(app, req),
};

let mut builder = Response::builder();
builder = builder.header(CONTENT_LENGTH, content.len());
if let Some(ext) = ext {
if let Some(ty) = MimeGuess::from_ext(ext).first() {
builder = builder.header(CONTENT_TYPE, HeaderValue::try_from(ty.as_ref()).unwrap());
}
}

builder.body(content.into()).unwrap()
Response::builder()
.header(CONTENT_LENGTH, content.len())
.header(CONTENT_TYPE, HeaderValue::from_static(T::MIME_TYPE))
.body(content.into())
.unwrap()
}
2 changes: 1 addition & 1 deletion askama_mendes/tests/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async fn test() {
rsp.headers
.get("content-type")
.and_then(|hv| hv.to_str().ok()),
Some("text/plain")
Some("text/plain; charset=utf-8")
);
assert_eq!(to_bytes(body).await.unwrap(), &b"Hello, world!"[..]);
}
Expand Down
7 changes: 3 additions & 4 deletions askama_rocket/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@
use std::io::Cursor;

pub use askama::*;
use rocket::http::{ContentType, Status};
use rocket::http::{Header, Status};
pub use rocket::request::Request;
use rocket::response::Response;
pub use rocket::response::{Responder, Result};

pub fn respond<T: Template>(t: &T, ext: &str) -> Result<'static> {
pub fn respond<T: Template>(t: &T, _ext: &str) -> Result<'static> {
let rsp = t.render().map_err(|_| Status::InternalServerError)?;
let ctype = ContentType::from_extension(ext).ok_or(Status::InternalServerError)?;
Response::build()
.header(ctype)
.header(Header::new("content-type", T::MIME_TYPE))
.sized_body(Cursor::new(rsp))
.ok()
}
10 changes: 3 additions & 7 deletions askama_tide/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,12 @@ pub use askama;
pub use tide;

use askama::*;
use tide::{http::Mime, Body, Response};
use tide::{Body, Response};

pub fn try_into_body<T: Template>(t: &T, ext: &str) -> Result<Body> {
pub fn try_into_body<T: Template>(t: &T, _ext: &str) -> Result<Body> {
let string = t.render()?;
let mut body = Body::from_string(string);

if let Some(mime) = Mime::from_extension(ext) {
body.set_mime(mime);
}

body.set_mime(T::MIME_TYPE);
Ok(body)
}

Expand Down
7 changes: 2 additions & 5 deletions askama_warp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,11 @@ use warp::http::{self, header, StatusCode};
use warp::hyper::Body;
use warp::reply::Response;

pub fn reply<T: askama::Template>(t: &T, ext: &str) -> Response {
pub fn reply<T: askama::Template>(t: &T, _ext: &str) -> Response {
match t.render() {
Ok(body) => http::Response::builder()
.status(StatusCode::OK)
.header(
header::CONTENT_TYPE,
mime::extension_to_mime_type(ext).to_string(),
)
.header(header::CONTENT_TYPE, T::MIME_TYPE)
.body(body.into()),
Err(_) => http::Response::builder()
.status(StatusCode::INTERNAL_SERVER_ERROR)
Expand Down

0 comments on commit 332d741

Please sign in to comment.