2019-06-17 12:48:03 +06:00
|
|
|
use actix_identity::Identity;
|
2019-07-18 12:55:14 +01:00
|
|
|
use actix_web::{
|
|
|
|
dev::Payload, error::BlockingError, web, Error, FromRequest, HttpRequest, HttpResponse,
|
|
|
|
};
|
2018-12-09 15:55:36 +00:00
|
|
|
use diesel::prelude::*;
|
2019-07-18 12:55:14 +01:00
|
|
|
use diesel::PgConnection;
|
|
|
|
use futures::Future;
|
2019-03-29 13:43:03 -07:00
|
|
|
|
|
|
|
use crate::errors::ServiceError;
|
2019-07-18 12:55:14 +01:00
|
|
|
use crate::models::{Pool, SlimUser, User};
|
|
|
|
use crate::utils::verify;
|
2018-12-09 15:55:36 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
pub struct AuthData {
|
|
|
|
pub email: String,
|
|
|
|
pub password: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
// we need the same data
|
|
|
|
// simple aliasing makes the intentions clear and its more readable
|
|
|
|
pub type LoggedUser = SlimUser;
|
|
|
|
|
2019-04-14 10:34:41 -07:00
|
|
|
impl FromRequest for LoggedUser {
|
|
|
|
type Config = ();
|
2019-03-29 13:43:03 -07:00
|
|
|
type Error = Error;
|
|
|
|
type Future = Result<LoggedUser, Error>;
|
|
|
|
|
2019-04-14 10:34:41 -07:00
|
|
|
fn from_request(req: &HttpRequest, pl: &mut Payload) -> Self::Future {
|
2019-04-07 23:39:45 -07:00
|
|
|
if let Some(identity) = Identity::from_request(req, pl)?.identity() {
|
2019-07-18 12:55:14 +01:00
|
|
|
let user: LoggedUser = serde_json::from_str(&identity)?;
|
|
|
|
return Ok(user);
|
2018-12-09 15:55:36 +00:00
|
|
|
}
|
2019-03-29 13:43:03 -07:00
|
|
|
Err(ServiceError::Unauthorized.into())
|
2018-12-09 15:55:36 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-18 12:55:14 +01:00
|
|
|
|
|
|
|
pub fn logout(id: Identity) -> HttpResponse {
|
|
|
|
id.forget();
|
|
|
|
HttpResponse::Ok().finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn login(
|
|
|
|
auth_data: web::Json<AuthData>,
|
|
|
|
id: Identity,
|
|
|
|
pool: web::Data<Pool>,
|
|
|
|
) -> impl Future<Item = HttpResponse, Error = ServiceError> {
|
|
|
|
web::block(move || query(auth_data.into_inner(), pool)).then(
|
|
|
|
move |res: Result<SlimUser, BlockingError<ServiceError>>| match res {
|
|
|
|
Ok(user) => {
|
|
|
|
let user_string = serde_json::to_string(&user).unwrap();
|
|
|
|
id.remember(user_string);
|
|
|
|
Ok(HttpResponse::Ok().finish())
|
|
|
|
}
|
|
|
|
Err(err) => match err {
|
|
|
|
BlockingError::Error(service_error) => Err(service_error),
|
|
|
|
BlockingError::Canceled => Err(ServiceError::InternalServerError),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_me(logged_user: LoggedUser) -> HttpResponse {
|
|
|
|
HttpResponse::Ok().json(logged_user)
|
|
|
|
}
|
|
|
|
/// Diesel query
|
|
|
|
fn query(auth_data: AuthData, pool: web::Data<Pool>) -> Result<SlimUser, ServiceError> {
|
|
|
|
use crate::schema::users::dsl::{email, users};
|
|
|
|
let conn: &PgConnection = &pool.get().unwrap();
|
|
|
|
let mut items = users
|
|
|
|
.filter(email.eq(&auth_data.email))
|
|
|
|
.load::<User>(conn)?;
|
|
|
|
|
|
|
|
if let Some(user) = items.pop() {
|
|
|
|
if let Ok(matching) = verify(&user.hash, &auth_data.password) {
|
|
|
|
if matching {
|
|
|
|
return Ok(user.into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(ServiceError::Unauthorized)
|
|
|
|
}
|