2018-05-24 19:13:55 +02:00
|
|
|
// <url>
|
2020-09-12 17:21:54 +02:00
|
|
|
use actix_web::{get, guard, http::header, HttpRequest, HttpResponse, Result};
|
2018-05-24 19:13:55 +02:00
|
|
|
|
2020-09-12 17:21:54 +02:00
|
|
|
#[get("/test/")]
|
2019-12-28 20:10:02 +01:00
|
|
|
async fn index(req: HttpRequest) -> Result<HttpResponse> {
|
2018-05-24 19:13:55 +02:00
|
|
|
let url = req.url_for("foo", &["1", "2", "3"])?; // <- generate url for "foo" resource
|
2019-06-26 00:20:36 +02:00
|
|
|
|
2018-05-24 19:13:55 +02:00
|
|
|
Ok(HttpResponse::Found()
|
|
|
|
.header(header::LOCATION, url.as_str())
|
|
|
|
.finish())
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:21:54 +02:00
|
|
|
#[actix_web::main]
|
2019-12-28 20:10:02 +01:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-06-28 19:31:30 +02:00
|
|
|
use actix_web::{web, App, HttpServer};
|
2019-06-26 00:20:36 +02:00
|
|
|
|
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
|
|
|
.service(
|
|
|
|
web::resource("/test/{a}/{b}/{c}")
|
|
|
|
.name("foo") // <- set resource name, then it could be used in `url_for`
|
|
|
|
.guard(guard::Get())
|
|
|
|
.to(|| HttpResponse::Ok()),
|
|
|
|
)
|
2020-09-12 17:21:54 +02:00
|
|
|
.service(index)
|
2019-06-26 00:20:36 +02:00
|
|
|
})
|
2020-09-12 17:21:54 +02:00
|
|
|
.bind("127.0.0.1:8080")?
|
2019-06-26 00:20:36 +02:00
|
|
|
.run()
|
2019-12-28 20:10:02 +01:00
|
|
|
.await
|
2018-05-24 19:13:55 +02:00
|
|
|
}
|
|
|
|
// </url>
|