2019-06-20 06:03:21 +00:00
|
|
|
#![feature(proc_macro_hygiene)]
|
2017-04-20 20:43:01 +00:00
|
|
|
|
2018-06-28 15:55:15 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
2017-04-20 20:43:01 +00:00
|
|
|
|
|
|
|
use std::io::Cursor;
|
2017-05-15 04:46:01 +00:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2017-04-20 20:43:01 +00:00
|
|
|
|
2017-05-17 08:39:36 +00:00
|
|
|
use rocket::{Request, State, Data, Response};
|
2017-05-15 04:46:01 +00:00
|
|
|
use rocket::fairing::{AdHoc, Fairing, Info, Kind};
|
|
|
|
use rocket::http::{Method, ContentType, Status};
|
2017-04-20 20:43:01 +00:00
|
|
|
|
2017-05-17 08:39:36 +00:00
|
|
|
struct Token(i64);
|
|
|
|
|
2017-04-20 20:43:01 +00:00
|
|
|
#[cfg(test)] mod tests;
|
|
|
|
|
2017-05-15 04:46:01 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
struct Counter {
|
|
|
|
get: AtomicUsize,
|
|
|
|
post: AtomicUsize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Fairing for Counter {
|
|
|
|
fn info(&self) -> Info {
|
|
|
|
Info {
|
|
|
|
name: "GET/POST Counter",
|
|
|
|
kind: Kind::Request | Kind::Response
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 02:41:29 +00:00
|
|
|
fn on_request(&self, request: &mut Request<'_>, _: &Data) {
|
2017-05-15 04:46:01 +00:00
|
|
|
if request.method() == Method::Get {
|
|
|
|
self.get.fetch_add(1, Ordering::Relaxed);
|
|
|
|
} else if request.method() == Method::Post {
|
|
|
|
self.post.fetch_add(1, Ordering::Relaxed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-13 02:41:29 +00:00
|
|
|
fn on_response(&self, request: &Request<'_>, response: &mut Response<'_>) {
|
2017-05-15 04:46:01 +00:00
|
|
|
if response.status() != Status::NotFound {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if request.method() == Method::Get && request.uri().path() == "/counts" {
|
|
|
|
let get_count = self.get.load(Ordering::Relaxed);
|
|
|
|
let post_count = self.post.load(Ordering::Relaxed);
|
|
|
|
|
|
|
|
let body = format!("Get: {}\nPost: {}", get_count, post_count);
|
|
|
|
response.set_status(Status::Ok);
|
|
|
|
response.set_header(ContentType::Plain);
|
|
|
|
response.set_sized_body(Cursor::new(body));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:43:01 +00:00
|
|
|
#[put("/")]
|
|
|
|
fn hello() -> &'static str {
|
|
|
|
"Hello, world!"
|
|
|
|
}
|
|
|
|
|
2017-05-17 08:39:36 +00:00
|
|
|
#[get("/token")]
|
2019-06-13 02:41:29 +00:00
|
|
|
fn token(token: State<'_, Token>) -> String {
|
2017-05-17 08:39:36 +00:00
|
|
|
format!("{}", token.0)
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:43:01 +00:00
|
|
|
fn rocket() -> rocket::Rocket {
|
|
|
|
rocket::ignite()
|
2017-05-17 08:39:36 +00:00
|
|
|
.mount("/", routes![hello, token])
|
2017-05-15 04:46:01 +00:00
|
|
|
.attach(Counter::default())
|
2018-08-14 16:14:06 +00:00
|
|
|
.attach(AdHoc::on_attach("Token State", |rocket| {
|
2017-05-17 08:39:36 +00:00
|
|
|
println!("Adding token managed state...");
|
|
|
|
let token_val = rocket.config().get_int("token").unwrap_or(-1);
|
|
|
|
Ok(rocket.manage(Token(token_val)))
|
|
|
|
}))
|
2018-08-14 16:14:06 +00:00
|
|
|
.attach(AdHoc::on_launch("Launch Message", |_| {
|
2017-05-17 08:39:36 +00:00
|
|
|
println!("Rocket is about to launch!");
|
2017-05-15 04:46:01 +00:00
|
|
|
}))
|
2018-08-14 16:14:06 +00:00
|
|
|
.attach(AdHoc::on_request("PUT Rewriter", |req, _| {
|
2017-04-20 20:43:01 +00:00
|
|
|
println!(" => Incoming request: {}", req);
|
2017-05-15 04:46:01 +00:00
|
|
|
if req.uri().path() == "/" {
|
|
|
|
println!(" => Changing method to `PUT`.");
|
|
|
|
req.set_method(Method::Put);
|
|
|
|
}
|
|
|
|
}))
|
2018-08-14 16:14:06 +00:00
|
|
|
.attach(AdHoc::on_response("Response Rewriter", |req, res| {
|
2017-05-15 04:46:01 +00:00
|
|
|
if req.uri().path() == "/" {
|
|
|
|
println!(" => Rewriting response body.");
|
|
|
|
res.set_sized_body(Cursor::new("Hello, fairings!"));
|
|
|
|
}
|
|
|
|
}))
|
2017-04-20 20:43:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
rocket().launch();
|
|
|
|
}
|