use axum::{ extract::Request, routing::{delete, get, post}, Router, ServiceExt, }; use dotenv::dotenv; use tower::Layer; use tower_http::{ compression::CompressionLayer, limit::RequestBodyLimitLayer, normalize_path::NormalizePathLayer, services::{ServeDir, ServeFile}, }; #[macro_use] extern crate lazy_static; mod config; mod health; mod note; mod status; mod store; #[tokio::main] async fn main() { dotenv().ok(); if !store::can_reach_redis() { println!("cannot reach redis"); panic!("canont reach redis"); } let notes_routes = Router::new() .route("/", post(note::create)) .route("/:id", delete(note::delete)) .route("/:id", get(note::preview)); let health_routes = Router::new().route("/live", get(health::report_health)); let status_routes = Router::new().route("/status", get(status::get_status)); let api_routes = Router::new() .nest("/notes", notes_routes) .nest("/", health_routes) .nest("/", status_routes); let index = format!("{}{}", config::FRONTEND_PATH.to_string(), "/index.html"); let serve_dir = ServeDir::new(config::FRONTEND_PATH.to_string()).not_found_service(ServeFile::new(index)); let app = Router::new() .nest("/api", api_routes) .fallback_service(serve_dir) .layer( CompressionLayer::new() .br(true) .deflate(true) .gzip(true) .zstd(true), ) .layer(RequestBodyLimitLayer::new(*config::LIMIT)); let app = NormalizePathLayer::trim_trailing_slash().layer(app); let listener = tokio::net::TcpListener::bind(config::LISTEN_ADDR.to_string()) .await .unwrap(); println!("listening on {}", listener.local_addr().unwrap()); println!("Config {}", *config::LIMIT); axum::serve(listener, ServiceExt::::into_make_service(app)) // axum::serve(listener, app) .await .unwrap(); }