Rocket/examples/form_validation/src/main.rs

87 lines
2.0 KiB
Rust
Raw Normal View History

#![feature(proc_macro_non_items, proc_macro_gen, decl_macro)]
#[macro_use] extern crate rocket;
mod files;
#[cfg(test)] mod tests;
use rocket::response::Redirect;
use rocket::request::{Form, FromFormValue};
use rocket::http::RawStr;
#[derive(Debug)]
struct StrongPassword<'r>(&'r str);
#[derive(Debug)]
struct AdultAge(isize);
#[derive(FromForm)]
struct UserLogin<'r> {
username: &'r RawStr,
password: Result<StrongPassword<'r>, &'static str>,
age: Result<AdultAge, &'static str>,
}
impl<'v> FromFormValue<'v> for StrongPassword<'v> {
type Error = &'static str;
fn from_form_value(v: &'v RawStr) -> Result<Self, Self::Error> {
if v.len() < 8 {
Err("too short!")
} else {
Ok(StrongPassword(v.as_str()))
}
}
}
impl<'v> FromFormValue<'v> for AdultAge {
type Error = &'static str;
fn from_form_value(v: &'v RawStr) -> Result<Self, Self::Error> {
let age = match isize::from_form_value(v) {
Ok(v) => v,
Err(_) => return Err("value is not a number."),
};
match age > 20 {
true => Ok(AdultAge(age)),
false => Err("must be at least 21."),
}
}
}
#[post("/login", data = "<user>")]
fn login(user: Form<UserLogin>) -> Result<Redirect, String> {
if let Err(e) = user.age {
return Err(format!("Age is invalid: {}", e));
}
if let Err(e) = user.password {
return Err(format!("Password is invalid: {}", e));
}
if user.username == "Sergio" {
if let Ok(StrongPassword("password")) = user.password {
2016-11-03 18:09:08 +00:00
Ok(Redirect::to("/user/Sergio"))
} else {
Err("Wrong password!".to_string())
}
} else {
Err(format!("Unrecognized user, '{}'.", user.username))
}
}
2016-09-04 11:06:28 +00:00
#[get("/user/<username>")]
fn user_page(username: &RawStr) -> String {
format!("This is {}'s page.", username)
}
fn rocket() -> rocket::Rocket {
rocket::ignite()
.mount("/", routes![files::index, files::files, user_page, login])
}
fn main() {
rocket().launch();
}