2020-02-07 14:16:32 +00:00
|
|
|
use actix_web::{get, web, HttpRequest};
|
|
|
|
#[cfg(unix)]
|
|
|
|
use actix_web::{middleware, App, Error, HttpResponse, HttpServer};
|
2019-07-18 11:24:12 +00:00
|
|
|
|
|
|
|
#[get("/resource1/{name}/index.html")]
|
2019-11-21 15:34:04 +00:00
|
|
|
async fn index(req: HttpRequest, name: web::Path<String>) -> String {
|
2019-07-18 11:24:12 +00:00
|
|
|
println!("REQ: {:?}", req);
|
|
|
|
format!("Hello: {}!\r\n", name)
|
|
|
|
}
|
|
|
|
|
2020-02-07 14:16:32 +00:00
|
|
|
#[cfg(unix)]
|
2019-11-20 17:33:22 +00:00
|
|
|
async fn index_async(req: HttpRequest) -> Result<&'static str, Error> {
|
2019-07-18 11:24:12 +00:00
|
|
|
println!("REQ: {:?}", req);
|
|
|
|
Ok("Hello world!\r\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/")]
|
2019-11-21 15:34:04 +00:00
|
|
|
async fn no_params() -> &'static str {
|
2019-07-18 11:24:12 +00:00
|
|
|
"Hello world!\r\n"
|
|
|
|
}
|
|
|
|
|
2019-11-21 15:34:04 +00:00
|
|
|
#[cfg(unix)]
|
2020-06-18 14:45:30 +00:00
|
|
|
#[actix_web::main]
|
2019-11-26 11:16:33 +00:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-07-18 11:24:12 +00:00
|
|
|
std::env::set_var("RUST_LOG", "actix_server=info,actix_web=info");
|
|
|
|
env_logger::init();
|
|
|
|
|
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
|
|
|
.wrap(middleware::DefaultHeaders::new().header("X-Version", "0.2"))
|
|
|
|
.wrap(middleware::Compress::default())
|
2019-11-21 15:34:04 +00:00
|
|
|
.wrap(middleware::Logger::default())
|
2019-07-18 11:24:12 +00:00
|
|
|
.service(index)
|
|
|
|
.service(no_params)
|
|
|
|
.service(
|
|
|
|
web::resource("/resource2/index.html")
|
|
|
|
.wrap(
|
|
|
|
middleware::DefaultHeaders::new().header("X-Version-R2", "0.3"),
|
|
|
|
)
|
|
|
|
.default_service(
|
2019-11-21 15:34:04 +00:00
|
|
|
web::route().to(|| HttpResponse::MethodNotAllowed()),
|
2019-07-18 11:24:12 +00:00
|
|
|
)
|
2019-11-21 15:34:04 +00:00
|
|
|
.route(web::get().to(index_async)),
|
2019-07-18 11:24:12 +00:00
|
|
|
)
|
2019-11-21 15:34:04 +00:00
|
|
|
.service(web::resource("/test1.html").to(|| async { "Test\r\n" }))
|
2019-07-18 11:24:12 +00:00
|
|
|
})
|
|
|
|
.bind_uds("/Users/fafhrd91/uds-test")?
|
|
|
|
.workers(1)
|
2019-12-22 13:12:22 +00:00
|
|
|
.run()
|
2019-11-26 11:16:33 +00:00
|
|
|
.await
|
2019-07-18 11:24:12 +00:00
|
|
|
}
|
2019-07-31 20:02:56 +00:00
|
|
|
|
2019-11-21 15:34:04 +00:00
|
|
|
#[cfg(not(unix))]
|
2019-07-31 20:02:56 +00:00
|
|
|
fn main() {}
|