2017-10-22 04:35:50 +02:00
|
|
|
#![allow(unused_variables)]
|
2017-11-27 02:30:35 +01:00
|
|
|
#![cfg_attr(feature="cargo-clippy", allow(needless_pass_by_value))]
|
|
|
|
|
2017-10-22 04:35:50 +02:00
|
|
|
extern crate actix;
|
|
|
|
extern crate actix_web;
|
|
|
|
extern crate env_logger;
|
2017-11-03 21:35:34 +01:00
|
|
|
extern crate futures;
|
2017-10-22 04:35:50 +02:00
|
|
|
|
|
|
|
use actix_web::*;
|
2017-11-18 17:50:07 +01:00
|
|
|
use actix_web::error::Result;
|
2017-11-27 02:30:35 +01:00
|
|
|
use actix_web::middlewares::RequestSession;
|
2017-11-03 21:35:34 +01:00
|
|
|
use futures::stream::{once, Once};
|
2017-10-22 04:35:50 +02:00
|
|
|
|
|
|
|
/// somple handle
|
2017-11-27 02:30:35 +01:00
|
|
|
fn index(req: &mut HttpRequest, mut _payload: Payload, state: &()) -> Result<HttpResponse> {
|
2017-10-22 04:35:50 +02:00
|
|
|
println!("{:?}", req);
|
2017-11-06 10:24:49 +01: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-11-27 02:30:35 +01: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)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(httpcodes::HTTPOk.into())
|
2017-10-22 04:35:50 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 21:35:34 +01:00
|
|
|
/// somple handle
|
2017-11-16 07:06:28 +01:00
|
|
|
fn index_async(req: &mut HttpRequest, _payload: Payload, state: &())
|
|
|
|
-> Once<actix_web::Frame, actix_web::error::Error>
|
2017-11-03 21:35:34 +01:00
|
|
|
{
|
|
|
|
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 01:44:23 +01:00
|
|
|
/// handle with path parameters like `/user/{name}/`
|
2017-11-18 17:50:07 +01:00
|
|
|
fn with_param(req: &mut HttpRequest, _payload: Payload, state: &()) -> Result<HttpResponse>
|
2017-10-30 05:39:59 +01:00
|
|
|
{
|
2017-10-22 04:35:50 +02:00
|
|
|
println!("{:?}", req);
|
|
|
|
|
2017-10-30 05:39:59 +01:00
|
|
|
Ok(HttpResponse::builder(StatusCode::OK)
|
|
|
|
.content_type("test/plain")
|
|
|
|
.body(format!("Hello {}!", req.match_info().get("name").unwrap()))?)
|
2017-10-22 04:35:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2017-10-22 07:59:09 +02:00
|
|
|
::std::env::set_var("RUST_LOG", "actix_web=info");
|
|
|
|
let _ = env_logger::init();
|
2017-10-22 04:35:50 +02:00
|
|
|
let sys = actix::System::new("ws-example");
|
|
|
|
|
|
|
|
HttpServer::new(
|
|
|
|
Application::default("/")
|
2017-10-22 07:59:09 +02:00
|
|
|
// enable logger
|
2017-11-24 00:17:16 +01:00
|
|
|
.middleware(middlewares::Logger::default())
|
2017-11-27 02:30:35 +01:00
|
|
|
// cookie session middleware
|
|
|
|
.middleware(middlewares::SessionStorage::new(
|
|
|
|
middlewares::CookieSessionBackend::build(&[0; 32])
|
|
|
|
.secure(false)
|
|
|
|
.finish()
|
|
|
|
))
|
2017-11-10 07:08:54 +01:00
|
|
|
// register simple handle r, handle all methods
|
2017-10-22 04:35:50 +02:00
|
|
|
.handler("/index.html", index)
|
|
|
|
// with path parameters
|
|
|
|
.resource("/user/{name}/", |r| r.handler(Method::GET, with_param))
|
2017-11-03 21:35:34 +01:00
|
|
|
// async handler
|
|
|
|
.resource("/async/{name}", |r| r.async(Method::GET, index_async))
|
2017-10-22 04:35:50 +02:00
|
|
|
// redirect
|
|
|
|
.resource("/", |r| r.handler(Method::GET, |req, _, _| {
|
|
|
|
println!("{:?}", req);
|
|
|
|
|
2017-10-30 05:39:59 +01:00
|
|
|
Ok(httpcodes::HTTPFound
|
|
|
|
.builder()
|
|
|
|
.header("LOCATION", "/index.html")
|
|
|
|
.body(Body::Empty)?)
|
2017-10-22 04:35:50 +02:00
|
|
|
}))
|
|
|
|
// static files
|
2017-10-26 15:12:23 +02:00
|
|
|
.route_handler("/static", StaticFiles::new("examples/static/", true)))
|
2017-10-22 04:35:50 +02:00
|
|
|
.serve::<_, ()>("127.0.0.1:8080").unwrap();
|
|
|
|
|
|
|
|
println!("Started http server: 127.0.0.1:8080");
|
|
|
|
let _ = sys.run();
|
|
|
|
}
|