More info on index route.

Macros to simplify some main code
This commit is contained in:
Martin Berg Alstad 2024-06-21 00:18:23 +02:00
parent 7f2440e08c
commit d9c0d90af4
4 changed files with 59 additions and 23 deletions

View File

@ -7,7 +7,6 @@ use tower_http::trace::TraceLayer;
use tracing::Level; use tracing::Level;
use crate::routing::routes::*; use crate::routing::routes::*;
use crate::routing::routes::index::not_found;
mod expressions; mod expressions;
mod parsing; mod parsing;
@ -27,19 +26,18 @@ async fn main() {
.compact() .compact()
.init(); .init();
let routes = simplify::router() let routes = join_routes![
.merge(table::router()) simplify::router(),
.merge(index::router()) index::router(),
.fallback(not_found); table::router()
].fallback(index::not_found);
let app = routes let app = create_app!(routes,
.layer(CorsLayer::new().allow_origin(Any)) CorsLayer::new().allow_origin(Any),
.layer(TraceLayer::new_for_http() TraceLayer::new_for_http()
.make_span_with(trace::DefaultMakeSpan::new() .make_span_with(trace::DefaultMakeSpan::new().level(Level::INFO))
.level(Level::INFO)) .on_response(trace::DefaultOnResponse::new().level(Level::INFO))
.on_response(trace::DefaultOnResponse::new() );
.level(Level::INFO))
);
tracing::info!("Starting server on: {addr}"); tracing::info!("Starting server on: {addr}");

View File

@ -59,8 +59,17 @@ pub struct SimplifyResponse {
#[derive(Serialize, IntoResponse)] #[derive(Serialize, IntoResponse)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct IsLegalResponse { pub(crate) struct IsValidResponse {
pub is_legal: bool, pub is_valid: bool,
}
impl IsValidResponse {
pub const fn valid() -> Self {
Self { is_valid: true }
}
pub const fn invalid() -> Self {
Self { is_valid: false }
}
} }
#[derive(Serialize, IntoResponse)] #[derive(Serialize, IntoResponse)]

View File

@ -1,11 +1,13 @@
use axum::extract::Path; use axum::extract::Path;
use axum::http::StatusCode; use axum::http::StatusCode;
use axum::Json;
use axum::response::{IntoResponse, Response}; use axum::response::{IntoResponse, Response};
use serde::Serialize;
use crate::{load_html, router}; use crate::{load_html, router};
use crate::expressions::expression::Expression; use crate::expressions::expression::Expression;
use crate::routing::error::{Error, ErrorKind}; use crate::routing::error::{Error, ErrorKind};
use crate::routing::response::IsLegalResponse; use crate::routing::response::IsValidResponse;
router!( router!(
get "/" => index, get "/" => index,
@ -13,21 +15,34 @@ router!(
get "/is-valid/:exp" => is_valid get "/is-valid/:exp" => is_valid
); );
async fn index() -> &'static str { #[derive(Serialize)]
"Welcome to the Simplify Truths API!\n" #[serde(rename_all = "camelCase")]
struct Info {
message: &'static str,
docs: &'static str,
created_by: String,
} }
async fn open_api() -> Response { async fn index() -> Json<Info> {
load_html!("openapi.html").into_response() let author = env!("CARGO_PKG_AUTHORS");
Json(Info {
message: "Welcome to the Simplify Truths API!",
docs: "The API documentation can be found at /openapi",
created_by: format!("Created by: {}", author),
})
}
async fn open_api() -> impl IntoResponse {
load_html!("openapi.html")
} }
async fn is_valid(Path(path): Path<String>) -> Response { async fn is_valid(Path(path): Path<String>) -> Response {
match Expression::try_from(path.as_str()) { match Expression::try_from(path.as_str()) {
Ok(_) => IsLegalResponse { is_legal: true }.into_response(), Ok(_) => IsValidResponse::valid().into_response(),
Err(error) => Error::new(error.to_string(), ErrorKind::InvalidExpression).into_response() Err(error) => Error::new(error.to_string(), ErrorKind::InvalidExpression).into_response()
} }
} }
pub(crate) async fn not_found() -> Response { pub(crate) async fn not_found() -> impl IntoResponse {
(StatusCode::NOT_FOUND, load_html!("not-found.html")).into_response() (StatusCode::NOT_FOUND, load_html!("not-found.html"))
} }

View File

@ -48,6 +48,20 @@ macro_rules! routes {
}; };
} }
#[macro_export]
macro_rules! join_routes {
($($route:expr),* $(,)?) => {
axum::Router::new()$(.merge($route))*
};
}
#[macro_export]
macro_rules! create_app {
($router:expr, $($layer:expr),* $(,)?) => {
$router$(.layer($layer))*
};
}
/// Load an HTML file from the given file path, relative to the resource directory. /// Load an HTML file from the given file path, relative to the resource directory.
/// # Arguments /// # Arguments
/// * `file_path` - The path to the HTML file. /// * `file_path` - The path to the HTML file.