mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
ca19e61f50
Note that if there was a non-lowercase user already in the DB, it cannot be found again. To fix this, run in the DB: sqlite> UPDATE users SET user_id = LOWER(user_id);
64 lines
3.2 KiB
Rust
64 lines
3.2 KiB
Rust
use async_trait::async_trait;
|
|
use std::collections::HashSet;
|
|
|
|
use crate::domain::{error::Result, handler::UserId};
|
|
|
|
#[async_trait]
|
|
pub trait TcpBackendHandler {
|
|
async fn get_jwt_blacklist(&self) -> anyhow::Result<HashSet<u64>>;
|
|
async fn create_refresh_token(&self, user: &UserId) -> Result<(String, chrono::Duration)>;
|
|
async fn check_token(&self, refresh_token_hash: u64, user: &UserId) -> Result<bool>;
|
|
async fn blacklist_jwts(&self, user: &UserId) -> Result<HashSet<u64>>;
|
|
async fn delete_refresh_token(&self, refresh_token_hash: u64) -> Result<()>;
|
|
|
|
/// Request a token to reset a user's password.
|
|
/// If the user doesn't exist, returns `Ok(None)`, otherwise `Ok(Some(token))`.
|
|
async fn start_password_reset(&self, user: &UserId) -> Result<Option<String>>;
|
|
|
|
/// Get the user ID associated with a password reset token.
|
|
async fn get_user_id_for_password_reset_token(&self, token: &str) -> Result<UserId>;
|
|
|
|
async fn delete_password_reset_token(&self, token: &str) -> Result<()>;
|
|
}
|
|
|
|
#[cfg(test)]
|
|
use crate::domain::handler::*;
|
|
#[cfg(test)]
|
|
mockall::mock! {
|
|
pub TestTcpBackendHandler{}
|
|
impl Clone for TestTcpBackendHandler {
|
|
fn clone(&self) -> Self;
|
|
}
|
|
#[async_trait]
|
|
impl LoginHandler for TestTcpBackendHandler {
|
|
async fn bind(&self, request: BindRequest) -> Result<()>;
|
|
}
|
|
#[async_trait]
|
|
impl BackendHandler for TestTcpBackendHandler {
|
|
async fn list_users(&self, filters: Option<UserRequestFilter>) -> Result<Vec<User>>;
|
|
async fn list_groups(&self, filters: Option<GroupRequestFilter>) -> Result<Vec<Group>>;
|
|
async fn get_user_details(&self, user_id: &UserId) -> Result<User>;
|
|
async fn get_group_details(&self, group_id: GroupId) -> Result<GroupIdAndName>;
|
|
async fn get_user_groups(&self, user: &UserId) -> Result<HashSet<GroupIdAndName>>;
|
|
async fn create_user(&self, request: CreateUserRequest) -> Result<()>;
|
|
async fn update_user(&self, request: UpdateUserRequest) -> Result<()>;
|
|
async fn update_group(&self, request: UpdateGroupRequest) -> Result<()>;
|
|
async fn delete_user(&self, user_id: &UserId) -> Result<()>;
|
|
async fn create_group(&self, group_name: &str) -> Result<GroupId>;
|
|
async fn delete_group(&self, group_id: GroupId) -> Result<()>;
|
|
async fn add_user_to_group(&self, user_id: &UserId, group_id: GroupId) -> Result<()>;
|
|
async fn remove_user_from_group(&self, user_id: &UserId, group_id: GroupId) -> Result<()>;
|
|
}
|
|
#[async_trait]
|
|
impl TcpBackendHandler for TestTcpBackendHandler {
|
|
async fn get_jwt_blacklist(&self) -> anyhow::Result<HashSet<u64>>;
|
|
async fn create_refresh_token(&self, user: &UserId) -> Result<(String, chrono::Duration)>;
|
|
async fn check_token(&self, refresh_token_hash: u64, user: &UserId) -> Result<bool>;
|
|
async fn blacklist_jwts(&self, user: &UserId) -> Result<HashSet<u64>>;
|
|
async fn delete_refresh_token(&self, refresh_token_hash: u64) -> Result<()>;
|
|
async fn start_password_reset(&self, user: &UserId) -> Result<Option<String>>;
|
|
async fn get_user_id_for_password_reset_token(&self, token: &str) -> Result<UserId>;
|
|
async fn delete_password_reset_token(&self, token: &str) -> Result<()>;
|
|
}
|
|
}
|