1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00
actix-web/examples/basic.rs

75 lines
2.3 KiB
Rust
Raw Normal View History

2017-10-22 02:35:50 +00:00
#![allow(unused_variables)]
extern crate actix;
extern crate actix_web;
extern crate env_logger;
2017-11-03 20:35:34 +00:00
extern crate futures;
2017-10-22 02:35:50 +00:00
use actix_web::*;
2017-11-03 20:35:34 +00:00
use futures::stream::{once, Once};
2017-10-22 02:35:50 +00:00
/// somple handle
2017-11-06 09:24:49 +00:00
fn index(req: &mut HttpRequest, mut _payload: Payload, state: &()) -> HttpResponse {
2017-10-22 02:35:50 +00:00
println!("{:?}", req);
2017-11-06 09:24:49 +00:00
if let Ok(ch) = _payload.readany() {
if let futures::Async::Ready(Some(d)) = ch {
println!("{}", String::from_utf8_lossy(d.0.as_ref()));
}
}
2017-10-22 02:35:50 +00:00
httpcodes::HTTPOk.into()
}
2017-11-03 20:35:34 +00:00
/// somple handle
fn index_async(req: &mut HttpRequest, _payload: Payload, state: &()) -> Once<actix_web::Frame, ()>
{
println!("{:?}", req);
once(Ok(HttpResponse::builder(StatusCode::OK)
.content_type("text/html")
.body(format!("Hello {}!", req.match_info().get("name").unwrap()))
.unwrap()
.into()))
}
2017-11-09 00:44:23 +00:00
/// handle with path parameters like `/user/{name}/`
2017-10-30 04:39:59 +00:00
fn with_param(req: &mut HttpRequest, _payload: Payload, state: &())
-> HandlerResult<HttpResponse>
{
2017-10-22 02:35:50 +00:00
println!("{:?}", req);
2017-10-30 04:39:59 +00:00
Ok(HttpResponse::builder(StatusCode::OK)
.content_type("test/plain")
.body(format!("Hello {}!", req.match_info().get("name").unwrap()))?)
2017-10-22 02:35:50 +00:00
}
fn main() {
::std::env::set_var("RUST_LOG", "actix_web=info");
let _ = env_logger::init();
2017-10-22 02:35:50 +00:00
let sys = actix::System::new("ws-example");
HttpServer::new(
Application::default("/")
// enable logger
.middleware(Logger::new(None))
2017-10-22 02:35:50 +00:00
// register simple handler, handle all methods
.handler("/index.html", index)
// with path parameters
.resource("/user/{name}/", |r| r.handler(Method::GET, with_param))
2017-11-03 20:35:34 +00:00
// async handler
.resource("/async/{name}", |r| r.async(Method::GET, index_async))
2017-10-22 02:35:50 +00:00
// redirect
.resource("/", |r| r.handler(Method::GET, |req, _, _| {
println!("{:?}", req);
2017-10-30 04:39:59 +00:00
Ok(httpcodes::HTTPFound
.builder()
.header("LOCATION", "/index.html")
.body(Body::Empty)?)
2017-10-22 02:35:50 +00:00
}))
// static files
2017-10-26 13:12:23 +00:00
.route_handler("/static", StaticFiles::new("examples/static/", true)))
2017-10-22 02:35:50 +00:00
.serve::<_, ()>("127.0.0.1:8080").unwrap();
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}