54eedf5483
Implement a complete Nextcloud client compatibility layer so that Nextcloud desktop/mobile sync clients can connect to OxiCloud. Key additions: - Login Flow v2 (device auth) with OIDC bridge support - WebDAV handler compatible with Nextcloud clients (PROPFIND, GET, PUT, DELETE, MKCOL, MOVE, COPY, HEAD, PROPPATCH) - OCS API endpoints (user info, capabilities, notifications stubs, sharees, unified search) - Basic Auth middleware with app password verification, account lockout integration, and blake3-keyed auth cache - App password management: create, list, revoke via both native API (JWT-authenticated profile page) and Nextcloud OCS endpoints - Nextcloud file ID mapping (oc:fileid) with persistent DB storage - Chunked upload support (Nextcloud v2 chunking protocol) - Trashbin WebDAV interface - Avatar (SVG placeholder) and preview (redirect) handlers - User profile page with app password management UI - URL user validation on all DAV routes (403 on mismatch) - Database schema for app_passwords and nextcloud_object_ids tables All services are behind a `nextcloud.enabled` config flag and cleanly separated under src/interfaces/nextcloud/. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
123 lines
4.0 KiB
Rust
123 lines
4.0 KiB
Rust
use crate::common::errors::DomainError;
|
|
use crate::domain::entities::user::{User, UserRole};
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
pub enum UserRepositoryError {
|
|
#[error("User not found: {0}")]
|
|
NotFound(String),
|
|
|
|
#[error("User already exists: {0}")]
|
|
AlreadyExists(String),
|
|
|
|
#[error("Database error: {0}")]
|
|
DatabaseError(String),
|
|
|
|
#[error("Validation error: {0}")]
|
|
ValidationError(String),
|
|
|
|
#[error("Timeout error: {0}")]
|
|
Timeout(String),
|
|
|
|
#[error("Operation not allowed: {0}")]
|
|
OperationNotAllowed(String),
|
|
}
|
|
|
|
pub type UserRepositoryResult<T> = Result<T, UserRepositoryError>;
|
|
|
|
// Conversion from UserRepositoryError to DomainError
|
|
impl From<UserRepositoryError> for DomainError {
|
|
fn from(err: UserRepositoryError) -> Self {
|
|
match err {
|
|
UserRepositoryError::NotFound(msg) => DomainError::not_found("User", msg),
|
|
UserRepositoryError::AlreadyExists(msg) => DomainError::already_exists("User", msg),
|
|
UserRepositoryError::DatabaseError(msg) => DomainError::internal_error("Database", msg),
|
|
UserRepositoryError::ValidationError(msg) => DomainError::validation_error(msg),
|
|
UserRepositoryError::Timeout(msg) => DomainError::timeout("Database", msg),
|
|
UserRepositoryError::OperationNotAllowed(msg) => {
|
|
DomainError::access_denied("User", msg)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
pub trait UserRepository: Send + Sync + 'static {
|
|
/// Creates a new user
|
|
async fn create_user(&self, user: User) -> UserRepositoryResult<User>;
|
|
|
|
/// Gets a user by ID
|
|
async fn get_user_by_id(&self, id: &str) -> UserRepositoryResult<User>;
|
|
|
|
/// Gets a user by username
|
|
async fn get_user_by_username(&self, username: &str) -> UserRepositoryResult<User>;
|
|
|
|
/// Gets a user by email
|
|
async fn get_user_by_email(&self, email: &str) -> UserRepositoryResult<User>;
|
|
|
|
/// Updates an existing user
|
|
async fn update_user(&self, user: User) -> UserRepositoryResult<User>;
|
|
|
|
/// Updates only a user's storage usage
|
|
async fn update_storage_usage(
|
|
&self,
|
|
user_id: &str,
|
|
usage_bytes: i64,
|
|
) -> UserRepositoryResult<()>;
|
|
|
|
/// Updates the last login date
|
|
async fn update_last_login(&self, user_id: &str) -> UserRepositoryResult<()>;
|
|
|
|
/// Lists users with pagination
|
|
async fn list_users(&self, limit: i64, offset: i64) -> UserRepositoryResult<Vec<User>>;
|
|
|
|
/// Searches users by username or email (SQL ILIKE) with a limit.
|
|
async fn search_users(&self, query: &str, limit: i64) -> UserRepositoryResult<Vec<User>>;
|
|
|
|
/// Activates or deactivates a user
|
|
async fn set_user_active_status(&self, user_id: &str, active: bool)
|
|
-> UserRepositoryResult<()>;
|
|
|
|
/// Changes a user's password
|
|
async fn change_password(&self, user_id: &str, password_hash: &str)
|
|
-> UserRepositoryResult<()>;
|
|
|
|
/// Changes a user's role
|
|
async fn change_role(&self, user_id: &str, role: UserRole) -> UserRepositoryResult<()>;
|
|
|
|
/// Lists users by role (admin or user)
|
|
async fn list_users_by_role(&self, role: &str) -> UserRepositoryResult<Vec<User>>;
|
|
|
|
/// Deletes a user
|
|
async fn delete_user(&self, user_id: &str) -> UserRepositoryResult<()>;
|
|
|
|
/// Finds a user by OIDC provider + subject pair
|
|
async fn get_user_by_oidc_subject(
|
|
&self,
|
|
provider: &str,
|
|
subject: &str,
|
|
) -> UserRepositoryResult<User>;
|
|
|
|
/// Updates a user's storage quota
|
|
async fn update_storage_quota(
|
|
&self,
|
|
user_id: &str,
|
|
quota_bytes: i64,
|
|
) -> UserRepositoryResult<()>;
|
|
|
|
/// Counts the total number of users
|
|
async fn count_users(&self) -> UserRepositoryResult<i64>;
|
|
|
|
/// Gets aggregated storage statistics
|
|
async fn get_storage_stats(&self) -> UserRepositoryResult<StorageStats>;
|
|
}
|
|
|
|
/// Aggregated storage statistics
|
|
#[derive(Debug, Clone)]
|
|
pub struct StorageStats {
|
|
pub total_users: i64,
|
|
pub active_users: i64,
|
|
pub total_quota_bytes: i64,
|
|
pub total_used_bytes: i64,
|
|
pub users_over_80_percent: i64,
|
|
pub users_over_quota: i64,
|
|
}
|