stadtratmonitor-rust/src/main.rs

88 lines
2.2 KiB
Rust
Raw Normal View History

2023-11-15 19:58:58 +01:00
use axum::{
extract::{Path, Query},
http::header,
response::IntoResponse,
routing::get,
Router,
};
2023-10-11 21:18:18 +02:00
use std::collections::HashMap;
2023-10-11 20:53:35 +02:00
use tera::Tera;
2023-10-11 20:23:13 +02:00
#[tokio::main]
async fn main() {
// build our application with a single route
2023-10-11 21:18:18 +02:00
let app = Router::new()
.route("/", get(index))
2023-11-15 19:58:58 +01:00
.route("/search", get(search))
.route("/paper/:id", get(paper));
2023-10-11 20:23:13 +02:00
// run it with hyper on localhost:3000
axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())
.serve(app.into_make_service())
.await
.unwrap();
2023-10-11 20:12:24 +02:00
}
2023-10-11 20:53:35 +02:00
async fn index() -> impl IntoResponse {
// Create a new Tera instance and add a template from a string
2023-10-12 18:31:22 +02:00
let tera = tera_create();
2023-10-11 20:53:35 +02:00
// Prepare the context with some data
2023-10-11 21:18:18 +02:00
let context = tera::Context::new();
2023-10-11 20:53:35 +02:00
// Render the template with the given context
2023-11-15 19:58:58 +01:00
let rendered = tera.render("index.html", &context).unwrap();
2023-10-11 20:53:35 +02:00
2023-10-11 21:27:09 +02:00
header(rendered)
2023-10-11 20:53:35 +02:00
}
2023-10-11 21:18:18 +02:00
async fn search(Query(params): Query<HashMap<String, String>>) -> impl IntoResponse {
2023-10-12 18:31:22 +02:00
let tera = tera_create();
2023-10-11 21:18:18 +02:00
// Prepare the context with some data
let mut context = tera::Context::new();
context.insert("query", params.get("q").unwrap());
2023-11-15 19:58:58 +01:00
let rendered = tera.render("search.html", &context).unwrap();
header(rendered)
}
async fn paper(Path(paper_id): Path<u64>) -> impl IntoResponse {
let response = reqwest::get(format!(
"https://www.muenchen-transparent.de/oparl/v1.0/paper/{0}",
paper_id
))
.await
.unwrap()
.json::<HashMap<String, String>>()
.await
.unwrap();
let tera = tera_create();
let mut context = tera::Context::new();
context.insert("paper_id", &paper_id);
context.insert("paper_name", &response.get("name").unwrap());
let rendered = tera.render("paper.html", &context).unwrap();
2023-10-11 21:18:18 +02:00
2023-10-11 21:27:09 +02:00
header(rendered)
}
2023-10-12 18:31:22 +02:00
fn tera_create() -> Tera {
let tera = match Tera::new("templates/**/*.html") {
Ok(tera) => tera,
Err(error) => {
println!("Parsing error(s): {}", error);
::std::process::exit(1);
}
};
tera
}
2023-10-11 21:27:09 +02:00
fn header(rendered: impl ToString) -> impl IntoResponse {
2023-10-11 21:18:18 +02:00
(
[(header::CONTENT_TYPE, "text/html; charset=utf-8")],
2023-10-11 21:27:09 +02:00
rendered.to_string(),
2023-10-11 21:18:18 +02:00
)
}