1
0
mirror of https://github.com/actix/actix-website synced 2024-11-28 02:22:57 +01:00
actix-website/examples/url-dispatch/src/url_ext.rs

26 lines
636 B
Rust
Raw Normal View History

2018-05-24 19:13:55 +02:00
// <ext>
2019-06-28 19:31:30 +02:00
use actix_web::{HttpRequest, Responder};
2018-05-24 19:13:55 +02:00
2019-06-17 10:12:11 +02:00
fn index(req: HttpRequest) -> impl Responder {
let url = req.url_for("youtube", &["oHg5SJYRHA0"]).unwrap();
2018-05-24 19:13:55 +02:00
assert_eq!(url.as_str(), "https://youtube.com/watch/oHg5SJYRHA0");
2019-06-17 10:12:11 +02:00
url.into_string()
2018-05-24 19:13:55 +02:00
}
2019-06-17 10:12:11 +02:00
pub fn main() {
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()
.route("/", web::get().to(index))
.external_resource("youtube", "https://youtube.com/watch/{video_id}")
.route("/", actix_web::web::get().to(index))
})
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
2018-05-24 19:13:55 +02:00
}
// </ext>