diff options
Diffstat (limited to 'server/src/models')
-rw-r--r-- | server/src/models/auth.rs | 10 | ||||
-rw-r--r-- | server/src/models/user.rs | 18 |
2 files changed, 27 insertions, 1 deletions
diff --git a/server/src/models/auth.rs b/server/src/models/auth.rs index 8b8f61c..1e466d3 100644 --- a/server/src/models/auth.rs +++ b/server/src/models/auth.rs @@ -18,7 +18,7 @@ struct Keys { #[derive(Serialize, Deserialize)] pub struct Claims { /// ID from the user model - user_id: i32, + pub user_id: i32, /// Expiration timestamp exp: usize, } @@ -32,6 +32,14 @@ pub struct AuthBody { token_type: String, } +/// Paylod used for user creation +#[derive(Deserialize)] +pub struct SignUpForm { + pub email: String, + pub password1: String, + pub password2: String, +} + static KEYS: Lazy<Keys> = Lazy::new(|| { let secret = std::env::var("JWT_SECRET").expect("JWT_SECRET must be set"); Keys::new(secret.as_bytes()) diff --git a/server/src/models/user.rs b/server/src/models/user.rs index 06cde0a..b94e114 100644 --- a/server/src/models/user.rs +++ b/server/src/models/user.rs @@ -3,6 +3,7 @@ use crate::errors::AppError; use serde::{Deserialize, Serialize}; use validator::Validate; +use sqlx::Row; /// User model #[derive(Deserialize, Serialize, Validate)] @@ -115,4 +116,21 @@ impl User { Ok(rows) } + + /// Prevent the "uniquess" Postgres fields check. Check if email has been taken + pub async fn email_has_taken(email: &String) -> Result<bool, AppError> { + let pool = unsafe { get_client() }; + let cursor = sqlx::query( + r#" + SELECT COUNT(id) as count FROM users WHERE email = $1 + "#, + ) + .bind(email) + .fetch_one(pool) + .await?; + + let count: i64 = cursor.try_get(0).unwrap(); + + Ok(count > 0) + } } |