2019-03-02 07:51:32 +01:00
|
|
|
use futures::IntoFuture;
|
|
|
|
|
2019-03-17 05:09:11 +01:00
|
|
|
use actix_web::{
|
|
|
|
get, middleware, web, App, Error, HttpRequest, HttpResponse, HttpServer,
|
|
|
|
};
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-03-07 20:43:46 +01:00
|
|
|
#[get("/resource1/{name}/index.html")]
|
|
|
|
fn index(req: HttpRequest, name: web::Path<String>) -> String {
|
2019-03-02 07:51:32 +01:00
|
|
|
println!("REQ: {:?}", req);
|
2019-03-07 20:43:46 +01:00
|
|
|
format!("Hello: {}!\r\n", name)
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn index_async(req: HttpRequest) -> impl IntoFuture<Item = &'static str, Error = Error> {
|
|
|
|
println!("REQ: {:?}", req);
|
|
|
|
Ok("Hello world!\r\n")
|
|
|
|
}
|
|
|
|
|
2019-03-07 20:09:42 +01:00
|
|
|
#[get("/")]
|
2019-03-02 07:51:32 +01:00
|
|
|
fn no_params() -> &'static str {
|
|
|
|
"Hello world!\r\n"
|
|
|
|
}
|
|
|
|
|
2019-03-05 01:29:03 +01:00
|
|
|
fn main() -> std::io::Result<()> {
|
2019-03-07 20:43:46 +01:00
|
|
|
std::env::set_var("RUST_LOG", "actix_server=info,actix_web=info");
|
2019-03-02 07:51:32 +01:00
|
|
|
env_logger::init();
|
|
|
|
|
2019-03-05 01:29:03 +01:00
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
2019-03-25 21:02:10 +01:00
|
|
|
.wrap(middleware::DefaultHeaders::new().header("X-Version", "0.2"))
|
2019-04-13 23:50:54 +02:00
|
|
|
.wrap(middleware::Compress::default())
|
2019-03-25 21:02:10 +01:00
|
|
|
.wrap(middleware::Logger::default())
|
2019-03-07 20:09:42 +01:00
|
|
|
.service(index)
|
|
|
|
.service(no_params)
|
2019-03-07 00:47:15 +01:00
|
|
|
.service(
|
|
|
|
web::resource("/resource2/index.html")
|
2019-03-25 20:47:58 +01:00
|
|
|
.wrap(
|
2019-03-07 00:47:15 +01:00
|
|
|
middleware::DefaultHeaders::new().header("X-Version-R2", "0.3"),
|
|
|
|
)
|
|
|
|
.default_resource(|r| {
|
|
|
|
r.route(web::route().to(|| HttpResponse::MethodNotAllowed()))
|
|
|
|
})
|
2019-03-07 20:09:42 +01:00
|
|
|
.route(web::get().to_async(index_async)),
|
2019-03-07 00:47:15 +01:00
|
|
|
)
|
|
|
|
.service(web::resource("/test1.html").to(|| "Test\r\n"))
|
2019-03-05 01:29:03 +01:00
|
|
|
})
|
|
|
|
.bind("127.0.0.1:8080")?
|
|
|
|
.workers(1)
|
2019-03-07 20:43:46 +01:00
|
|
|
.run()
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|