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