axum/examples/templates/src/main.rs

68 lines
1.6 KiB
Rust
Raw Normal View History

//! Run with
//!
//! ```not_rust
//! cargo run -p example-templates
//! ```
2021-06-13 13:58:12 +02:00
use askama::Template;
2021-08-18 00:04:15 +02:00
use axum::{
body::{self, BoxBody, Full},
2021-08-18 00:04:15 +02:00
extract,
http::{Response, StatusCode},
2021-08-18 00:04:15 +02:00
response::{Html, IntoResponse},
routing::get,
Router,
2021-08-18 00:04:15 +02:00
};
use std::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_os("RUST_LOG").is_none() {
std::env::set_var("RUST_LOG", "example_templates=debug")
}
tracing_subscriber::fmt::init();
2021-06-13 13:58:12 +02:00
// build our application with some routes
let app = Router::new().route("/greet/:name", get(greet));
2021-06-13 13:58:12 +02:00
// 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,
{
fn into_response(self) -> Response<BoxBody> {
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(body::boxed(Full::from(format!(
2021-06-13 13:58:12 +02:00
"Failed to render template. Error: {}",
err
))))
2021-06-13 13:58:12 +02:00
.unwrap(),
}
}
}