Merge pull request #135 from zjean/feature/oidc-user-identity

Feature/OIDC user identity
This commit is contained in:
Dionisio Pozo
2026-02-21 21:08:57 +01:00
committed by GitHub
5 changed files with 35 additions and 6 deletions
+2
View File
@@ -14,6 +14,7 @@ pub struct UserDto {
pub updated_at: DateTime<Utc>,
pub last_login_at: Option<DateTime<Utc>>,
pub active: bool,
pub auth_provider: String,
}
impl From<User> for UserDto {
@@ -29,6 +30,7 @@ impl From<User> for UserDto {
updated_at: user.updated_at(),
last_login_at: user.last_login_at(),
active: user.is_active(),
auth_provider: user.oidc_provider().unwrap_or("local").to_string(),
}
}
}
@@ -490,6 +490,15 @@ impl AuthApplicationService {
// Get user
let mut user = self.user_storage.get_user_by_id(user_id).await?;
// Block password changes for OIDC-provisioned users
if user.is_oidc_user() {
return Err(DomainError::new(
ErrorKind::AccessDenied,
"Auth",
"Password changes are not available for SSO/OIDC accounts. Your password is managed by your identity provider.",
));
}
// Verify current password using the injected hasher
let is_valid = self
.password_hasher
@@ -780,6 +789,16 @@ impl AuthApplicationService {
user_id: &str,
new_password: &str,
) -> Result<(), DomainError> {
// Block password reset for OIDC-provisioned users
let user = self.user_storage.get_user_by_id(user_id).await?;
if user.is_oidc_user() {
return Err(DomainError::new(
ErrorKind::InvalidInput,
"Auth",
"Cannot reset password for SSO/OIDC accounts. The user's password is managed by their identity provider.",
));
}
if new_password.len() < 8 {
return Err(DomainError::new(
ErrorKind::InvalidInput,