mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
31 lines
1.1 KiB
Rust
31 lines
1.1 KiB
Rust
mod server_api;
|
|
mod server_api_mock;
|
|
pub use server_api::*;
|
|
pub use server_api_mock::*;
|
|
|
|
use std::sync::Arc;
|
|
pub(crate) type Server = Arc<dyn UserServerAPI + Send + Sync>;
|
|
use crate::{
|
|
entities::{SignInParams, SignInResponse, SignUpParams, SignUpResponse, UpdateUserParams, UserProfile},
|
|
errors::UserError,
|
|
};
|
|
use backend_service::configuration::ClientServerConfiguration;
|
|
use lib_infra::future::ResultFuture;
|
|
|
|
pub trait UserServerAPI {
|
|
fn sign_up(&self, params: SignUpParams) -> ResultFuture<SignUpResponse, UserError>;
|
|
fn sign_in(&self, params: SignInParams) -> ResultFuture<SignInResponse, UserError>;
|
|
fn sign_out(&self, token: &str) -> ResultFuture<(), UserError>;
|
|
fn update_user(&self, token: &str, params: UpdateUserParams) -> ResultFuture<(), UserError>;
|
|
fn get_user(&self, token: &str) -> ResultFuture<UserProfile, UserError>;
|
|
fn ws_addr(&self) -> String;
|
|
}
|
|
|
|
pub(crate) fn construct_user_server(config: &ClientServerConfiguration) -> Arc<dyn UserServerAPI + Send + Sync> {
|
|
if cfg!(feature = "http_server") {
|
|
Arc::new(UserServer::new(config.clone()))
|
|
} else {
|
|
Arc::new(UserServerMock {})
|
|
}
|
|
}
|