Plume/src/routes/session.rs

54 lines
1.4 KiB
Rust
Raw Normal View History

2018-05-19 07:39:59 +00:00
use rocket::{
http::{Cookie, Cookies},
response::{Redirect, status::NotFound},
request::Form
};
2018-04-24 09:21:39 +00:00
use rocket_contrib::Template;
2018-04-23 09:52:44 +00:00
use db_conn::DbConn;
2018-04-24 09:21:39 +00:00
use models::users::{User, AUTH_COOKIE};
2018-04-23 09:52:44 +00:00
#[get("/login")]
2018-05-10 20:31:52 +00:00
fn new(user: Option<User>) -> Template {
Template::render("session/login", json!({
"account": user
}))
2018-04-23 09:52:44 +00:00
}
#[derive(FromForm)]
struct LoginForm {
email_or_name: String,
password: String
}
#[post("/login", data = "<data>")]
fn create(conn: DbConn, data: Form<LoginForm>, mut cookies: Cookies) -> Result<Redirect, NotFound<String>> {
let form = data.get();
let user = match User::find_by_email(&*conn, form.email_or_name.to_string()) {
Some(usr) => Ok(usr),
2018-05-01 11:48:19 +00:00
None => match User::find_local(&*conn, form.email_or_name.to_string()) {
2018-04-23 09:52:44 +00:00
Some(usr) => Ok(usr),
None => Err("Invalid username or password")
}
};
match user {
Ok(usr) => {
if usr.auth(form.password.to_string()) {
cookies.add_private(Cookie::new(AUTH_COOKIE, usr.id.to_string()));
Ok(Redirect::to("/"))
} else {
Err(NotFound(String::from("Invalid username or password")))
}
},
Err(e) => Err(NotFound(String::from(e)))
}
}
2018-04-23 11:13:49 +00:00
#[get("/logout")]
fn delete(mut cookies: Cookies) -> Redirect {
let cookie = cookies.get_private(AUTH_COOKIE).unwrap();
cookies.remove_private(cookie);
Redirect::to("/")
}