axum/examples/templates/src/main.rs

65 lines
1.5 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::{
extract,
http::StatusCode,
response::{Html, IntoResponse, Response},
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 {
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(),
Err(err) => (
StatusCode::INTERNAL_SERVER_ERROR,
format!("Failed to render template. Error: {}", err),
)
.into_response(),
2021-06-13 13:58:12 +02:00
}
}
}