2020-11-20 03:53:50 +00:00
|
|
|
use anyhow::*;
|
|
|
|
use log::LevelFilter;
|
2020-12-01 07:31:08 +00:00
|
|
|
use kochab::{Document, document::HeadingLevel, Request, Response};
|
2020-11-20 03:53:50 +00:00
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> Result<()> {
|
|
|
|
env_logger::builder()
|
2020-11-25 05:42:09 +00:00
|
|
|
.filter_module("kochab", LevelFilter::Debug)
|
2020-11-20 03:53:50 +00:00
|
|
|
.init();
|
|
|
|
|
2020-12-01 07:31:08 +00:00
|
|
|
kochab::Server::new()
|
2020-11-20 03:53:50 +00:00
|
|
|
.add_route("/", handle_base)
|
|
|
|
.add_route("/route", handle_short)
|
|
|
|
.add_route("/route/long", handle_long)
|
2020-12-01 07:31:08 +00:00
|
|
|
.serve_unix("kochab.sock")
|
2020-11-20 03:53:50 +00:00
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2020-11-20 19:00:49 +00:00
|
|
|
async fn handle_base(req: Request) -> Result<Response> {
|
2020-11-20 18:22:34 +00:00
|
|
|
let doc = generate_doc("base", &req);
|
2020-11-25 04:04:26 +00:00
|
|
|
Ok(doc.into())
|
2020-11-20 03:53:50 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 19:00:49 +00:00
|
|
|
async fn handle_short(req: Request) -> Result<Response> {
|
2020-11-20 18:22:34 +00:00
|
|
|
let doc = generate_doc("short", &req);
|
2020-11-25 04:04:26 +00:00
|
|
|
Ok(doc.into())
|
2020-11-20 03:53:50 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 19:00:49 +00:00
|
|
|
async fn handle_long(req: Request) -> Result<Response> {
|
2020-11-20 18:22:34 +00:00
|
|
|
let doc = generate_doc("long", &req);
|
2020-11-25 04:04:26 +00:00
|
|
|
Ok(doc.into())
|
2020-11-20 03:53:50 +00:00
|
|
|
}
|
|
|
|
|
2020-11-20 18:22:34 +00:00
|
|
|
fn generate_doc(route_name: &str, req: &Request) -> Document {
|
|
|
|
let trailing = req.trailing_segments().join("/");
|
2020-11-20 03:53:50 +00:00
|
|
|
let mut doc = Document::new();
|
|
|
|
doc.add_heading(HeadingLevel::H1, "Routing Demo")
|
|
|
|
.add_text(&format!("You're currently on the {} route", route_name))
|
2020-11-20 18:22:34 +00:00
|
|
|
.add_text(&format!("Trailing segments: /{}", trailing))
|
2020-11-20 03:53:50 +00:00
|
|
|
.add_blank_line()
|
|
|
|
.add_text("Here's some links to try:")
|
|
|
|
.add_link_without_label("/")
|
|
|
|
.add_link_without_label("/route")
|
|
|
|
.add_link_without_label("/route/long")
|
2020-11-20 04:34:45 +00:00
|
|
|
.add_link_without_label("/route/not_real")
|
|
|
|
.add_link_without_label("/rowte");
|
2020-11-20 03:53:50 +00:00
|
|
|
doc
|
|
|
|
}
|