summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: ab463b8da99391e31b94aa35018e3ee883e57275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
mod errors;
mod logger;

use axum::{http::header, routing::get, Json, Router};
use serde::Serialize;
use tower_http::sensitive_headers::SetSensitiveHeadersLayer;

#[tokio::main]
async fn main() {
    let app = create_app().await;

    let addr: String =
        std::env::var("ALLOWED_HOST").unwrap_or_else(|_| "localhost:3000".to_string());
    tracing::info!("Listening on {}", addr);

    axum::Server::bind(&"127.0.0.1:3000".parse().unwrap())
        .serve(app.into_make_service())
        .await
        .unwrap();
}

async fn create_app() -> Router {
    logger::setup();

    Router::new()
        .route("/", get(hej))
        // Mark the `Authorization` request header as sensitive so it doesn't
        // show in logs.
        .layer(SetSensitiveHeadersLayer::new(std::iter::once(
            header::AUTHORIZATION,
        )))
}

// Example root which says hi
async fn hej() -> Result<Json<Hej>, errors::Error> {
    Ok(Json(Hej::new("hej verden".to_string())))
}

#[derive(Debug, Serialize)]
struct Hej {
    hello: String,
}

impl Hej {
    fn new(hello: String) -> Self {
        Self { hello }
    }
}