2021-08-02 23:09:09 +02:00
|
|
|
//! Run with
|
|
|
|
//!
|
|
|
|
//! ```not_rust
|
2022-04-29 18:53:41 +02:00
|
|
|
//! cd examples && cargo run -p example-templates
|
2021-08-02 23:09:09 +02:00
|
|
|
//! ```
|
|
|
|
|
2021-06-13 13:58:12 +02:00
|
|
|
use askama::Template;
|
2021-08-18 00:04:15 +02:00
|
|
|
use axum::{
|
|
|
|
extract,
|
2021-12-05 19:16:46 +01:00
|
|
|
http::StatusCode,
|
|
|
|
response::{Html, IntoResponse, Response},
|
2021-10-24 22:05:16 +02:00
|
|
|
routing::get,
|
2021-08-19 22:37:48 +02:00
|
|
|
Router,
|
2021-08-18 00:04:15 +02:00
|
|
|
};
|
2021-11-28 18:52:18 +01:00
|
|
|
use std::net::SocketAddr;
|
2022-03-06 12:37:00 +01:00
|
|
|
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
2021-06-13 13:58:12 +02:00
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() {
|
2022-03-06 12:37:00 +01:00
|
|
|
tracing_subscriber::registry()
|
2022-11-30 10:46:19 +01:00
|
|
|
.with(
|
|
|
|
tracing_subscriber::EnvFilter::try_from_default_env()
|
|
|
|
.unwrap_or_else(|_| "example_templates=debug".into()),
|
|
|
|
)
|
2022-03-06 12:37:00 +01:00
|
|
|
.with(tracing_subscriber::fmt::layer())
|
|
|
|
.init();
|
2021-08-01 22:01:33 +02:00
|
|
|
|
2021-06-13 13:58:12 +02:00
|
|
|
// build our application with some routes
|
2021-08-19 22:37:48 +02:00
|
|
|
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);
|
2021-08-04 15:38:51 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-06 10:17:57 +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,
|
|
|
|
{
|
2021-12-05 19:16:46 +01:00
|
|
|
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(),
|
2022-03-01 00:04:33 +01:00
|
|
|
Err(err) => (
|
|
|
|
StatusCode::INTERNAL_SERVER_ERROR,
|
|
|
|
format!("Failed to render template. Error: {}", err),
|
|
|
|
)
|
|
|
|
.into_response(),
|
2021-06-13 13:58:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|