- Added cookie key to AppState for managing session cookies. - Updated AppState initialization to derive cookie key from configuration. - Removed session-based authentication option from cargo-generate prompts. - Refactored JWT authentication logic to improve clarity and error handling. - Updated password validation to align with NIST recommendations (minimum length increased). - Removed unused session store implementation and related code. - Improved error handling in user repository for unique constraint violations. - Refactored OIDC service to include state management for authentication flow. - Cleaned up dependencies in Cargo.toml and Cargo.toml.template for clarity and efficiency.
29 lines
892 B
Rust
29 lines
892 B
Rust
//! Reference Repository ports (traits)
|
|
//!
|
|
//! These traits define the interface for data persistence.
|
|
|
|
use async_trait::async_trait;
|
|
use uuid::Uuid;
|
|
|
|
use crate::entities::User;
|
|
use crate::errors::DomainResult;
|
|
|
|
/// Repository port for User persistence
|
|
#[async_trait]
|
|
pub trait UserRepository: Send + Sync {
|
|
/// Find a user by their internal ID
|
|
async fn find_by_id(&self, id: Uuid) -> DomainResult<Option<User>>;
|
|
|
|
/// Find a user by their OIDC subject (used for authentication)
|
|
async fn find_by_subject(&self, subject: &str) -> DomainResult<Option<User>>;
|
|
|
|
/// Find a user by their email
|
|
async fn find_by_email(&self, email: &str) -> DomainResult<Option<User>>;
|
|
|
|
/// Save a new user or update an existing one
|
|
async fn save(&self, user: &User) -> DomainResult<()>;
|
|
|
|
/// Delete a user by their ID
|
|
async fn delete(&self, id: Uuid) -> DomainResult<()>;
|
|
}
|