|
|
|
@ -1,7 +1,3 @@
|
|
|
|
|
|
|
|
|
|
use chrono::Utc;
|
|
|
|
|
use log::{debug, error};
|
|
|
|
|
use sqlx::{PgConnection, Postgres, Transaction};
|
|
|
|
|
use crate::dao::credential::{fetch_user_credentials, get_credential, insert_credential};
|
|
|
|
|
use crate::dao::token::{insert_token, update_token, validate_user_token};
|
|
|
|
|
use crate::dao::user::{get_user_with_id, insert_user, update_user};
|
|
|
|
@ -10,12 +6,24 @@ use crate::domain::token::Token;
|
|
|
|
|
use crate::domain::user::User;
|
|
|
|
|
use crate::dto::token::{AuthenticateUserDto, RefreshAuthTokenForUserDto};
|
|
|
|
|
use crate::dto::users::{UserLoginPayload, UserRegisterPayload, UserResetPasswordPayload};
|
|
|
|
|
use crate::resources::error_messages::{ERROR_CREDENTIAL_DOES_NOT_EXIST, ERROR_EXPIRED_TOKEN, ERROR_INCORRECT_TOKEN, ERROR_PASSWORD_INCORRECT, ERROR_TOKEN_NOT_CREATED, ERROR_TOO_MANY_CREDENTIALS, ERROR_USER_ALREADY_EXISTS, ERROR_USER_DOES_NOT_EXIST, ErrorResource};
|
|
|
|
|
use crate::resources::error_messages::{
|
|
|
|
|
ErrorResource, ERROR_CREDENTIAL_DOES_NOT_EXIST, ERROR_EXPIRED_TOKEN, ERROR_INCORRECT_TOKEN,
|
|
|
|
|
ERROR_PASSWORD_INCORRECT, ERROR_TOKEN_NOT_CREATED, ERROR_TOO_MANY_CREDENTIALS,
|
|
|
|
|
ERROR_USER_ALREADY_EXISTS, ERROR_USER_DOES_NOT_EXIST,
|
|
|
|
|
};
|
|
|
|
|
use crate::resources::expirations::AUTH_TOKEN_EXPIRATION_TIME_MILLIS;
|
|
|
|
|
use crate::utils::hasher::{generate_multiple_random_token_with_rng, hash_password, hash_password_with_existing_salt};
|
|
|
|
|
use crate::utils::hasher::{
|
|
|
|
|
generate_multiple_random_token_with_rng, hash_password, hash_password_with_existing_salt,
|
|
|
|
|
};
|
|
|
|
|
use crate::validation::user_validator::validate_user_for_creation;
|
|
|
|
|
use chrono::Utc;
|
|
|
|
|
use log::{debug, error};
|
|
|
|
|
use sqlx::{PgConnection, Postgres, Transaction};
|
|
|
|
|
|
|
|
|
|
pub async fn register_user<'a>(transaction: &mut PgConnection, user: UserRegisterPayload) -> Result<Token, Vec<ErrorResource<'a>>> {
|
|
|
|
|
pub async fn register_user<'a>(
|
|
|
|
|
transaction: &mut PgConnection,
|
|
|
|
|
user: UserRegisterPayload,
|
|
|
|
|
) -> Result<Token, Vec<ErrorResource<'a>>> {
|
|
|
|
|
let mut error_resources: Vec<ErrorResource> = Vec::new();
|
|
|
|
|
// Validate user
|
|
|
|
|
validate_user_for_creation(&user, &mut error_resources);
|
|
|
|
@ -24,21 +32,13 @@ pub async fn register_user<'a>(transaction: &mut PgConnection, user: UserRegiste
|
|
|
|
|
error_resources.push(ERROR_TOO_MANY_CREDENTIALS);
|
|
|
|
|
}
|
|
|
|
|
for credential_dto in user.credentials.iter() {
|
|
|
|
|
match get_credential(
|
|
|
|
|
transaction,
|
|
|
|
|
credential_dto.credential.clone(),
|
|
|
|
|
)
|
|
|
|
|
.await
|
|
|
|
|
{
|
|
|
|
|
Ok(credential_opt) => {
|
|
|
|
|
match credential_opt {
|
|
|
|
|
match get_credential(transaction, credential_dto.credential.clone()).await {
|
|
|
|
|
Ok(credential_opt) => match credential_opt {
|
|
|
|
|
None => {}
|
|
|
|
|
Some(_) => {
|
|
|
|
|
error_resources.push(
|
|
|
|
|
ERROR_USER_ALREADY_EXISTS);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
error_resources.push(ERROR_USER_ALREADY_EXISTS);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{}", e);
|
|
|
|
|
error_resources.push(("ERROR.DATABASE_ERROR", ""));
|
|
|
|
@ -66,12 +66,13 @@ pub async fn register_user<'a>(transaction: &mut PgConnection, user: UserRegiste
|
|
|
|
|
match insert_user(transaction, user_to_insert).await {
|
|
|
|
|
Ok(user) => {
|
|
|
|
|
persisted_user = user;
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{}", e);
|
|
|
|
|
error_resources.push(("ERROR.DATABASE_ERROR", ""));
|
|
|
|
|
return Err(error_resources);
|
|
|
|
|
}};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Insert Credentials
|
|
|
|
|
for credential in user.credentials {
|
|
|
|
@ -85,21 +86,26 @@ pub async fn register_user<'a>(transaction: &mut PgConnection, user: UserRegiste
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Some(persisted_token) = create_token_for_user(transaction, persisted_user.id, &mut error_resources).await {
|
|
|
|
|
if let Some(persisted_token) =
|
|
|
|
|
create_token_for_user(transaction, persisted_user.id, &mut error_resources).await
|
|
|
|
|
{
|
|
|
|
|
Ok(persisted_token)
|
|
|
|
|
} else {
|
|
|
|
|
Err(error_resources)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pub async fn authenticate_user<'a>(conn: &mut PgConnection, user: AuthenticateUserDto) -> Result<User, Vec<ErrorResource<'a>>> {
|
|
|
|
|
pub async fn authenticate_user<'a>(
|
|
|
|
|
conn: &mut PgConnection,
|
|
|
|
|
user: AuthenticateUserDto,
|
|
|
|
|
) -> Result<User, Vec<ErrorResource<'a>>> {
|
|
|
|
|
let mut error_resources = Vec::new();
|
|
|
|
|
let persisted_user = match get_user_with_id(conn, &user.id).await {
|
|
|
|
|
Ok(persisted_user_opt) => match persisted_user_opt {
|
|
|
|
|
None => {
|
|
|
|
|
error_resources.push(ERROR_USER_DOES_NOT_EXIST);
|
|
|
|
|
return Err(error_resources);
|
|
|
|
|
},
|
|
|
|
|
Some(persisted_user) => persisted_user
|
|
|
|
|
}
|
|
|
|
|
Some(persisted_user) => persisted_user,
|
|
|
|
|
},
|
|
|
|
|
Err(error) => {
|
|
|
|
|
error!("{:?}", error);
|
|
|
|
@ -113,10 +119,12 @@ pub async fn authenticate_user<'a>(conn: &mut PgConnection, user: AuthenticateUs
|
|
|
|
|
None => {
|
|
|
|
|
error_resources.push(ERROR_INCORRECT_TOKEN);
|
|
|
|
|
Err(error_resources)
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
Some(persisted_token) => {
|
|
|
|
|
// Check if persisted_token expired
|
|
|
|
|
if Utc::now().timestamp_millis() - persisted_token.last_updated.timestamp_millis() > AUTH_TOKEN_EXPIRATION_TIME_MILLIS {
|
|
|
|
|
if Utc::now().timestamp_millis() - persisted_token.last_updated.timestamp_millis()
|
|
|
|
|
> AUTH_TOKEN_EXPIRATION_TIME_MILLIS
|
|
|
|
|
{
|
|
|
|
|
// Expired
|
|
|
|
|
debug!("Expired token: {:?}", persisted_token);
|
|
|
|
|
error_resources.push(ERROR_EXPIRED_TOKEN);
|
|
|
|
@ -136,15 +144,18 @@ pub async fn authenticate_user<'a>(conn: &mut PgConnection, user: AuthenticateUs
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
pub async fn refresh_auth_token<'a>(conn: &mut PgConnection, user: RefreshAuthTokenForUserDto) -> Result<Token, Vec<ErrorResource>> {
|
|
|
|
|
pub async fn refresh_auth_token<'a>(
|
|
|
|
|
conn: &mut PgConnection,
|
|
|
|
|
user: RefreshAuthTokenForUserDto,
|
|
|
|
|
) -> Result<Token, Vec<ErrorResource>> {
|
|
|
|
|
let mut error_resources = Vec::new();
|
|
|
|
|
let _persisted_user = match get_user_with_id(conn, &user.id).await {
|
|
|
|
|
Ok(persisted_user_opt) => match persisted_user_opt {
|
|
|
|
|
None => {
|
|
|
|
|
error_resources.push(ERROR_USER_DOES_NOT_EXIST);
|
|
|
|
|
return Err(error_resources);
|
|
|
|
|
},
|
|
|
|
|
Some(persisted_user) => persisted_user
|
|
|
|
|
}
|
|
|
|
|
Some(persisted_user) => persisted_user,
|
|
|
|
|
},
|
|
|
|
|
Err(error) => {
|
|
|
|
|
error!("{:?}", error);
|
|
|
|
@ -171,14 +182,17 @@ pub async fn refresh_auth_token<'a>(conn: &mut PgConnection, user: RefreshAuthTo
|
|
|
|
|
error_resources.push(("ERROR.DATABASE_ERROR", ""));
|
|
|
|
|
Err(error_resources)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Err(error_resources)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// reset a user's password by validating the user's own password.
|
|
|
|
|
pub async fn reset_password(conn: &mut PgConnection, user: UserResetPasswordPayload) -> Result<User, Vec<ErrorResource>>{
|
|
|
|
|
pub async fn reset_password(
|
|
|
|
|
conn: &mut PgConnection,
|
|
|
|
|
user: UserResetPasswordPayload,
|
|
|
|
|
) -> Result<User, Vec<ErrorResource>> {
|
|
|
|
|
let mut error_resources: Vec<ErrorResource> = Vec::new();
|
|
|
|
|
|
|
|
|
|
let password_matches = match validate_user_password(conn, &user.id, user.password).await {
|
|
|
|
@ -190,7 +204,8 @@ pub async fn reset_password(conn: &mut PgConnection, user: UserResetPasswordPayl
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if let Some(persisted_user) = password_matches { // Change pass
|
|
|
|
|
if let Some(persisted_user) = password_matches {
|
|
|
|
|
// Change pass
|
|
|
|
|
match change_password(conn, persisted_user, &user.new_password).await {
|
|
|
|
|
Ok(user_changed) => Ok(user_changed),
|
|
|
|
|
Err(e) => {
|
|
|
|
@ -207,17 +222,24 @@ pub async fn reset_password(conn: &mut PgConnection, user: UserResetPasswordPayl
|
|
|
|
|
|
|
|
|
|
/// ## This resets a user's password without any validations!
|
|
|
|
|
/// Don't expose this to any public endpoint!!
|
|
|
|
|
pub async fn force_reset_password<'a>(conn: &mut PgConnection, user_id: &i32, new_password: String) -> Result<User, ErrorResource<'a>> {
|
|
|
|
|
pub async fn force_reset_password<'a>(
|
|
|
|
|
conn: &mut PgConnection,
|
|
|
|
|
user_id: &i32,
|
|
|
|
|
new_password: String,
|
|
|
|
|
) -> Result<User, ErrorResource<'a>> {
|
|
|
|
|
let persisted_user = match get_user_with_id(conn, user_id).await {
|
|
|
|
|
Ok(persisted_user_opt) => match persisted_user_opt {
|
|
|
|
|
Ok(persisted_user_opt) => {
|
|
|
|
|
match persisted_user_opt {
|
|
|
|
|
None => {
|
|
|
|
|
error!("Serious error. User doesn't exist but credentials pointing to the user do.");
|
|
|
|
|
return Err(("ERROR.DATABASE_ERROR", "Critical. User doesn't exist but credentials pointing to the user do."));
|
|
|
|
|
},
|
|
|
|
|
Some(persisted_user) => {
|
|
|
|
|
persisted_user
|
|
|
|
|
return Err((
|
|
|
|
|
"ERROR.DATABASE_ERROR",
|
|
|
|
|
"Critical. User doesn't exist but credentials pointing to the user do.",
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
Some(persisted_user) => persisted_user,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{}", e);
|
|
|
|
|
return Err(("ERROR.DATABASE_ERROR", ""));
|
|
|
|
@ -227,7 +249,10 @@ pub async fn force_reset_password<'a>(conn: &mut PgConnection, user_id: &i32, ne
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
pub async fn password_login<'a>(conn: &mut Transaction<'a, Postgres>, user: UserLoginPayload) -> Result<Token, Vec<ErrorResource<'a>>>{
|
|
|
|
|
pub async fn password_login<'a>(
|
|
|
|
|
conn: &mut Transaction<'a, Postgres>,
|
|
|
|
|
user: UserLoginPayload,
|
|
|
|
|
) -> Result<Token, Vec<ErrorResource<'a>>> {
|
|
|
|
|
let mut error_resources = Vec::new();
|
|
|
|
|
let persisted_user_credential = match get_credential(conn, user.credential).await {
|
|
|
|
|
Ok(credential_opt) => match credential_opt {
|
|
|
|
@ -235,8 +260,8 @@ pub async fn password_login<'a>(conn: &mut Transaction<'a, Postgres>, user: User
|
|
|
|
|
error!("Credential not found for password login.");
|
|
|
|
|
error_resources.push(ERROR_CREDENTIAL_DOES_NOT_EXIST);
|
|
|
|
|
return Err(error_resources);
|
|
|
|
|
},
|
|
|
|
|
Some(persisted_credential) => persisted_credential
|
|
|
|
|
}
|
|
|
|
|
Some(persisted_credential) => persisted_credential,
|
|
|
|
|
},
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{}", e);
|
|
|
|
@ -244,7 +269,9 @@ pub async fn password_login<'a>(conn: &mut Transaction<'a, Postgres>, user: User
|
|
|
|
|
return Err(error_resources);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
let persisted_user_opt = match validate_user_password(conn, &persisted_user_credential.user_id, user.password).await {
|
|
|
|
|
let persisted_user_opt =
|
|
|
|
|
match validate_user_password(conn, &persisted_user_credential.user_id, user.password).await
|
|
|
|
|
{
|
|
|
|
|
Ok(matches) => matches,
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{:?}", e);
|
|
|
|
@ -253,18 +280,27 @@ pub async fn password_login<'a>(conn: &mut Transaction<'a, Postgres>, user: User
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
if let Some(_) = persisted_user_opt {
|
|
|
|
|
return if let Some(persisted_token) = create_token_for_user(conn, persisted_user_credential.user_id, &mut error_resources).await {
|
|
|
|
|
return if let Some(persisted_token) = create_token_for_user(
|
|
|
|
|
conn,
|
|
|
|
|
persisted_user_credential.user_id,
|
|
|
|
|
&mut error_resources,
|
|
|
|
|
)
|
|
|
|
|
.await
|
|
|
|
|
{
|
|
|
|
|
Ok(persisted_token)
|
|
|
|
|
} else {
|
|
|
|
|
Err(error_resources)
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Err(error_resources)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
pub async fn get_user_credentials<'a>(transaction: &mut Transaction<'a, Postgres>, user: AuthenticateUserDto) -> Result<Vec<Credential>, Vec<ErrorResource<'a>>> {
|
|
|
|
|
pub async fn get_user_credentials<'a>(
|
|
|
|
|
transaction: &mut Transaction<'a, Postgres>,
|
|
|
|
|
user: AuthenticateUserDto,
|
|
|
|
|
) -> Result<Vec<Credential>, Vec<ErrorResource<'a>>> {
|
|
|
|
|
let mut error_resources = Vec::new();
|
|
|
|
|
let persisted_user = authenticate_user(transaction, user).await?;
|
|
|
|
|
match fetch_user_credentials(transaction, &persisted_user.id).await {
|
|
|
|
@ -277,7 +313,11 @@ pub async fn get_user_credentials<'a>(transaction: &mut Transaction<'a, Postgres
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn create_token_for_user<'a>(transaction: &mut PgConnection, user_id: i32, error_resources: &mut Vec<ErrorResource<'a>>) -> Option<Token> {
|
|
|
|
|
async fn create_token_for_user<'a>(
|
|
|
|
|
transaction: &mut PgConnection,
|
|
|
|
|
user_id: i32,
|
|
|
|
|
error_resources: &mut Vec<ErrorResource<'a>>,
|
|
|
|
|
) -> Option<Token> {
|
|
|
|
|
// Create token and send it back.
|
|
|
|
|
let tokens: Vec<String> = match generate_multiple_random_token_with_rng(2).await {
|
|
|
|
|
Ok(tokens) => tokens,
|
|
|
|
@ -287,8 +327,7 @@ async fn create_token_for_user<'a>(transaction: &mut PgConnection, user_id: i32,
|
|
|
|
|
return None;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
let token_to_insert =
|
|
|
|
|
Token {
|
|
|
|
|
let token_to_insert = Token {
|
|
|
|
|
id: 0,
|
|
|
|
|
user_id,
|
|
|
|
|
auth_token: match tokens.get(0) {
|
|
|
|
@ -297,7 +336,7 @@ async fn create_token_for_user<'a>(transaction: &mut PgConnection, user_id: i32,
|
|
|
|
|
error_resources.push(ERROR_TOKEN_NOT_CREATED);
|
|
|
|
|
return None;
|
|
|
|
|
}
|
|
|
|
|
Some(token) => token.clone()
|
|
|
|
|
Some(token) => token.clone(),
|
|
|
|
|
},
|
|
|
|
|
refresh_token: match tokens.get(1) {
|
|
|
|
|
None => {
|
|
|
|
@ -305,7 +344,7 @@ async fn create_token_for_user<'a>(transaction: &mut PgConnection, user_id: i32,
|
|
|
|
|
error_resources.push(ERROR_TOKEN_NOT_CREATED);
|
|
|
|
|
return None;
|
|
|
|
|
}
|
|
|
|
|
Some(token) => token.clone()
|
|
|
|
|
Some(token) => token.clone(),
|
|
|
|
|
},
|
|
|
|
|
time_created: Utc::now(),
|
|
|
|
|
last_updated: Utc::now(),
|
|
|
|
@ -313,9 +352,7 @@ async fn create_token_for_user<'a>(transaction: &mut PgConnection, user_id: i32,
|
|
|
|
|
|
|
|
|
|
// Insert token in DB
|
|
|
|
|
match insert_token(transaction, token_to_insert).await {
|
|
|
|
|
Ok(persisted_token) => {
|
|
|
|
|
Some(persisted_token)
|
|
|
|
|
},
|
|
|
|
|
Ok(persisted_token) => Some(persisted_token),
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{}", e);
|
|
|
|
|
error_resources.push(("ERROR.DATABASE_ERROR", ""));
|
|
|
|
@ -324,17 +361,24 @@ async fn create_token_for_user<'a>(transaction: &mut PgConnection, user_id: i32,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn validate_user_password<'a>(conn: &mut PgConnection, user_id: &i32, password: String) -> Result<Option<User>, ErrorResource<'a>> {
|
|
|
|
|
async fn validate_user_password<'a>(
|
|
|
|
|
conn: &mut PgConnection,
|
|
|
|
|
user_id: &i32,
|
|
|
|
|
password: String,
|
|
|
|
|
) -> Result<Option<User>, ErrorResource<'a>> {
|
|
|
|
|
let persisted_user = match get_user_with_id(conn, user_id).await {
|
|
|
|
|
Ok(persisted_user_opt) => match persisted_user_opt {
|
|
|
|
|
Ok(persisted_user_opt) => {
|
|
|
|
|
match persisted_user_opt {
|
|
|
|
|
None => {
|
|
|
|
|
error!("Serious error. User doesn't exist but credentials pointing to the user do.");
|
|
|
|
|
return Err(("ERROR.DATABASE_ERROR", "Critical. User doesn't exist but credentials pointing to the user do."));
|
|
|
|
|
},
|
|
|
|
|
Some(persisted_user) => {
|
|
|
|
|
persisted_user
|
|
|
|
|
return Err((
|
|
|
|
|
"ERROR.DATABASE_ERROR",
|
|
|
|
|
"Critical. User doesn't exist but credentials pointing to the user do.",
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
Some(persisted_user) => persisted_user,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("{}", e);
|
|
|
|
|
return Err(("ERROR.DATABASE_ERROR", ""));
|
|
|
|
@ -348,7 +392,11 @@ async fn validate_user_password<'a>(conn: &mut PgConnection, user_id: &i32, pass
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn change_password<'a>(conn: &mut PgConnection, mut persisted_user: User, new_password: &String) -> Result<User, ErrorResource<'a>> {
|
|
|
|
|
async fn change_password<'a>(
|
|
|
|
|
conn: &mut PgConnection,
|
|
|
|
|
mut persisted_user: User,
|
|
|
|
|
new_password: &String,
|
|
|
|
|
) -> Result<User, ErrorResource<'a>> {
|
|
|
|
|
let hash_result = hash_password(&new_password);
|
|
|
|
|
persisted_user.password = hash_result.hash;
|
|
|
|
|
persisted_user.salt = hash_result.salt;
|
|
|
|
|