aboutsummaryrefslogtreecommitdiff
path: root/src/bin/actix.rs
blob: c2f81fe8ad66d180d8a465ce05a53a92465f4b5a (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
use actix_web::{get, web, App, HttpResponse, HttpServer, Responder, http::header::ContentType};
use macroblog::blog::{render_index_page, render_post_page};

#[get("/")]
async fn index() -> impl Responder {
    let body = render_index_page();

    HttpResponse::Ok()
        .content_type(ContentType::html())
        .body(body)
}


#[get("/posts/{name}")]
async fn posts(name: web::Path<String>) -> impl Responder {
    let body = render_post_page(&name);

    HttpResponse::Ok()
        .content_type(ContentType::html())
        .body(body)
}


#[actix_web::main]
async fn main() -> std::io::Result<()> {
    let port = env::var("PORT").unwrap_or("3000".into()).parse::<u16>().unwrap_or(3000);
    HttpServer::new(|| {
        App::new()
            .service(index)
            .service(posts)
    })
    .bind(("0.0.0.0", port))?
    .run()
    .await
}