1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-17 00:50:01 +00:00
actix-web/examples/basic.rs

101 lines
3.1 KiB
Rust
Raw Normal View History

2017-10-22 02:35:50 +00:00
#![allow(unused_variables)]
2017-11-27 01:30:35 +00:00
#![cfg_attr(feature="cargo-clippy", allow(needless_pass_by_value))]
2017-10-22 02:35:50 +00:00
extern crate actix;
extern crate actix_web;
extern crate env_logger;
2017-11-03 20:35:34 +00:00
extern crate futures;
2017-12-19 08:18:57 +00:00
use futures::Stream;
2017-10-22 02:35:50 +00:00
use actix_web::*;
2017-11-27 01:30:35 +00:00
use actix_web::middlewares::RequestSession;
2017-11-30 22:42:20 +00:00
use futures::future::{FutureResult, result};
2017-10-22 02:35:50 +00:00
2017-11-28 00:41:37 +00:00
/// simple handler
2017-11-27 05:18:38 +00:00
fn index(mut req: HttpRequest) -> Result<HttpResponse> {
2017-10-22 02:35:50 +00:00
println!("{:?}", req);
2017-12-19 08:18:57 +00:00
if let Ok(ch) = req.payload_mut().readany().poll() {
if let futures::Async::Ready(Some(d)) = ch {
println!("{}", String::from_utf8_lossy(d.as_ref()));
2017-11-06 09:24:49 +00:00
}
}
2017-11-27 01:30:35 +00:00
// session
if let Some(count) = req.session().get::<i32>("counter")? {
println!("SESSION value: {}", count);
req.session().set("counter", count+1)?;
} else {
req.session().set("counter", 1)?;
}
2017-12-05 21:31:06 +00:00
Ok("Welcome!".into())
2017-10-22 02:35:50 +00:00
}
2017-11-28 00:41:37 +00:00
/// async handler
2017-11-30 22:42:20 +00:00
fn index_async(req: HttpRequest) -> FutureResult<HttpResponse, Error>
2017-11-03 20:35:34 +00:00
{
println!("{:?}", req);
2017-11-30 22:42:20 +00:00
result(HttpResponse::Ok()
.content_type("text/html")
.body(format!("Hello {}!", req.match_info().get("name").unwrap()))
.map_err(|e| e.into()))
2017-11-03 20:35:34 +00:00
}
2017-11-28 00:41:37 +00:00
/// handler with path parameters like `/user/{name}/`
2017-11-27 05:18:38 +00:00
fn with_param(req: HttpRequest) -> Result<HttpResponse>
2017-10-30 04:39:59 +00:00
{
2017-10-22 02:35:50 +00:00
println!("{:?}", req);
Ok(HttpResponse::Ok()
2017-10-30 04:39:59 +00:00
.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-12-18 21:41:52 +00:00
let sys = actix::System::new("basic-example");
2017-10-22 02:35:50 +00:00
HttpServer::new(
|| Application::new()
// enable logger
2017-11-23 23:17:16 +00:00
.middleware(middlewares::Logger::default())
2017-11-27 01:30:35 +00:00
// cookie session middleware
.middleware(middlewares::SessionStorage::new(
middlewares::CookieSessionBackend::build(&[0; 32])
.secure(false)
.finish()
))
2017-12-04 22:53:40 +00:00
// register simple route, handle all methods
.resource("/index.html", |r| r.f(index))
2017-12-02 07:32:15 +00:00
// with path parameters
.resource("/user/{name}/", |r| r.method(Method::GET).f(with_param))
2017-11-03 20:35:34 +00:00
// async handler
.resource("/async/{name}", |r| r.method(Method::GET).a(index_async))
.resource("/test", |r| r.f(|req| {
2017-11-29 21:26:55 +00:00
match *req.method() {
Method::GET => httpcodes::HTTPOk,
Method::POST => httpcodes::HTTPMethodNotAllowed,
_ => httpcodes::HTTPNotFound,
}
2017-12-04 22:53:40 +00:00
}))
2017-10-22 02:35:50 +00:00
// static files
2017-12-08 20:29:28 +00:00
.resource("/static/{tail:.*}",
|r| r.h(fs::StaticFiles::new("tail", "examples/static/", true)))
2017-12-08 06:54:44 +00:00
// redirect
.resource("/", |r| r.method(Method::GET).f(|req| {
println!("{:?}", req);
httpcodes::HTTPFound
.build()
.header("LOCATION", "/index.html")
2017-12-21 00:32:31 +00:00
.finish()
2017-12-08 06:54:44 +00:00
})))
2017-12-17 20:35:04 +00:00
.bind("127.0.0.1:8080").unwrap()
2017-12-19 17:08:36 +00:00
.start();
2017-10-22 02:35:50 +00:00
2017-12-19 17:51:28 +00:00
println!("Starting http server: 127.0.0.1:8080");
2017-10-22 02:35:50 +00:00
let _ = sys.run();
}