77 lines
2.2 KiB
Rust
77 lines
2.2 KiB
Rust
#![feature(plugin, conservative_impl_trait)]
|
|
#![plugin(rocket_codegen)]
|
|
extern crate rocket;
|
|
extern crate rocket_cors;
|
|
|
|
use std::io::Cursor;
|
|
|
|
use rocket::{State, Response};
|
|
use rocket::http::Method;
|
|
use rocket::response::Responder;
|
|
use rocket_cors::{Cors, AllowedOrigins, AllowedHeaders};
|
|
|
|
/// Using a borrowed Cors
|
|
#[get("/")]
|
|
fn borrowed<'r>(options: State<'r, Cors>) -> impl Responder<'r> {
|
|
options.inner().respond_borrowed(
|
|
|guard| guard.responder("Hello CORS"),
|
|
)
|
|
}
|
|
|
|
/// Using a `Response` instead of a `Responder`. You generally won't have to do this.
|
|
#[get("/response")]
|
|
fn response<'r>(options: State<'r, Cors>) -> impl Responder<'r> {
|
|
let mut response = Response::new();
|
|
response.set_sized_body(Cursor::new("Hello CORS!"));
|
|
|
|
options.inner().respond_borrowed(
|
|
move |guard| guard.response(response),
|
|
)
|
|
}
|
|
|
|
/// Create and use an ad-hoc Cors
|
|
#[get("/owned")]
|
|
fn owned<'r>() -> impl Responder<'r> {
|
|
let options = cors_options();
|
|
options.respond_owned(|guard| guard.responder("Hello CORS"))
|
|
}
|
|
|
|
/// You need to define an OPTIONS route for preflight checks if you want to use `Cors` struct
|
|
/// that is not in Rocket's managed state.
|
|
/// These routes can just return the unit type `()`
|
|
#[options("/owned")]
|
|
fn owned_options<'r>() -> impl Responder<'r> {
|
|
let options = cors_options();
|
|
options.respond_owned(|guard| guard.responder(()))
|
|
}
|
|
|
|
fn cors_options() -> Cors {
|
|
let (allowed_origins, failed_origins) = AllowedOrigins::some(&["https://www.acme.com"]);
|
|
assert!(failed_origins.is_empty());
|
|
|
|
// You can also deserialize this
|
|
rocket_cors::Cors {
|
|
allowed_origins: allowed_origins,
|
|
allowed_methods: vec![Method::Get].into_iter().map(From::from).collect(),
|
|
allowed_headers: AllowedHeaders::some(&["Authorization", "Accept"]),
|
|
allow_credentials: true,
|
|
..Default::default()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
rocket::ignite()
|
|
.mount(
|
|
"/",
|
|
routes![
|
|
borrowed,
|
|
response,
|
|
owned,
|
|
owned_options,
|
|
],
|
|
)
|
|
.mount("/", rocket_cors::catch_all_options_routes()) // mount the catch all routes
|
|
.manage(cors_options())
|
|
.launch();
|
|
}
|