axum/examples/templates.rs

73 lines
1.7 KiB
Rust
Raw Normal View History

//! Run with
//!
//! ```not_rust
//! cargo run --example templates
//! ```
2021-06-13 13:58:12 +02:00
use askama::Template;
2021-08-18 00:04:15 +02:00
use axum::{
extract,
handler::get,
response::{Html, IntoResponse},
route,
routing::RoutingDsl,
};
use bytes::Bytes;
2021-06-13 13:58:12 +02:00
use http::{Response, StatusCode};
use http_body::Full;
use std::{convert::Infallible, net::SocketAddr};
2021-06-13 13:58:12 +02:00
#[tokio::main]
async fn main() {
// Set the RUST_LOG, if it hasn't been explicitly defined
if std::env::var("RUST_LOG").is_err() {
std::env::set_var("RUST_LOG", "templates=debug")
}
tracing_subscriber::fmt::init();
2021-06-13 13:58:12 +02:00
// build our application with some routes
let app = route("/greet/:name", get(greet));
// run it
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
tracing::debug!("listening on {}", addr);
axum::Server::bind(&addr)
2021-06-19 12:50:33 +02:00
.serve(app.into_make_service())
.await
.unwrap();
2021-06-13 13:58:12 +02:00
}
async fn greet(extract::Path(name): extract::Path<String>) -> impl IntoResponse {
2021-06-13 13:58:12 +02:00
let template = HelloTemplate { name };
HtmlTemplate(template)
}
#[derive(Template)]
#[template(path = "hello.html")]
struct HelloTemplate {
name: String,
}
struct HtmlTemplate<T>(T);
impl<T> IntoResponse for HtmlTemplate<T>
where
T: Template,
{
type Body = Full<Bytes>;
type BodyError = Infallible;
fn into_response(self) -> Response<Self::Body> {
2021-06-13 13:58:12 +02:00
match self.0.render() {
2021-08-18 00:04:15 +02:00
Ok(html) => Html(html).into_response(),
2021-06-13 13:58:12 +02:00
Err(err) => Response::builder()
.status(StatusCode::INTERNAL_SERVER_ERROR)
.body(Full::from(format!(
2021-06-13 13:58:12 +02:00
"Failed to render template. Error: {}",
err
)))
.unwrap(),
}
}
}