mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* chore: reload folder * chore: reload folder * chore: init sync * chore: update tables * chore: update database * chore: load row * chore: update * chore: reload row * test: fit test * chore: retry * chore: support batch fetch * chore: enable sync * chore: sync switch * chore: sync switch * chore: migration user data * chore: migrate data * chore: migrate folder * chore: save user email * chore: refresh user profile * chore: fix test * chore: delete translation files * test: clippy format
233 lines
7.5 KiB
Rust
233 lines
7.5 KiB
Rust
use std::sync::Arc;
|
|
|
|
use collab_folder::core::FolderData;
|
|
use strum_macros::Display;
|
|
|
|
use flowy_derive::{Flowy_Event, ProtoBuf_Enum};
|
|
use flowy_error::FlowyResult;
|
|
use flowy_server_config::supabase_config::SupabaseConfiguration;
|
|
use lib_dispatch::prelude::*;
|
|
use lib_infra::box_any::BoxAny;
|
|
use lib_infra::future::{to_fut, Fut, FutureResult};
|
|
|
|
use crate::entities::{SignInResponse, SignUpResponse, UpdateUserProfileParams, UserProfile};
|
|
use crate::event_handler::*;
|
|
use crate::services::AuthType;
|
|
use crate::{errors::FlowyError, services::UserSession};
|
|
|
|
pub fn init(user_session: Arc<UserSession>) -> AFPlugin {
|
|
AFPlugin::new()
|
|
.name("Flowy-User")
|
|
.state(user_session)
|
|
.event(UserEvent::SignIn, sign_in)
|
|
.event(UserEvent::SignUp, sign_up)
|
|
.event(UserEvent::InitUser, init_user_handler)
|
|
.event(UserEvent::GetUserProfile, get_user_profile_handler)
|
|
.event(UserEvent::SignOut, sign_out)
|
|
.event(UserEvent::UpdateUserProfile, update_user_profile_handler)
|
|
.event(UserEvent::CheckUser, check_user_handler)
|
|
.event(UserEvent::SetAppearanceSetting, set_appearance_setting)
|
|
.event(UserEvent::GetAppearanceSetting, get_appearance_setting)
|
|
.event(UserEvent::GetUserSetting, get_user_setting)
|
|
.event(UserEvent::SetSupabaseConfig, set_supabase_config_handler)
|
|
.event(UserEvent::GetSupabaseConfig, get_supabase_config_handler)
|
|
.event(UserEvent::ThirdPartyAuth, third_party_auth_handler)
|
|
}
|
|
|
|
pub struct SignUpContext {
|
|
/// Indicate whether the user is new or not.
|
|
pub is_new: bool,
|
|
/// If the user is sign in as guest, and the is_new is true, then the folder data will be not
|
|
/// None.
|
|
pub local_folder: Option<FolderData>,
|
|
}
|
|
|
|
pub trait UserStatusCallback: Send + Sync + 'static {
|
|
/// When the [AuthType] changed, this method will be called. Currently, the auth type
|
|
/// will be changed when the user sign in or sign up.
|
|
fn auth_type_did_changed(&self, auth_type: AuthType);
|
|
/// This will be called after the application launches if the user is already signed in.
|
|
/// If the user is not signed in, this method will not be called
|
|
fn did_init(&self, user_id: i64, workspace_id: &str) -> Fut<FlowyResult<()>>;
|
|
/// Will be called after the user signed in.
|
|
fn did_sign_in(&self, user_id: i64, workspace_id: &str) -> Fut<FlowyResult<()>>;
|
|
/// Will be called after the user signed up.
|
|
fn did_sign_up(&self, context: SignUpContext, user_profile: &UserProfile)
|
|
-> Fut<FlowyResult<()>>;
|
|
fn did_expired(&self, token: &str, user_id: i64) -> Fut<FlowyResult<()>>;
|
|
}
|
|
|
|
/// The user cloud service provider.
|
|
/// The provider can be supabase, firebase, aws, or any other cloud service.
|
|
pub trait UserCloudServiceProvider: Send + Sync + 'static {
|
|
fn update_supabase_config(&self, supabase_config: &SupabaseConfiguration);
|
|
fn set_auth_type(&self, auth_type: AuthType);
|
|
fn get_auth_service(&self) -> Result<Arc<dyn UserAuthService>, FlowyError>;
|
|
}
|
|
|
|
impl<T> UserCloudServiceProvider for Arc<T>
|
|
where
|
|
T: UserCloudServiceProvider,
|
|
{
|
|
fn update_supabase_config(&self, supabase_config: &SupabaseConfiguration) {
|
|
(**self).update_supabase_config(supabase_config)
|
|
}
|
|
|
|
fn set_auth_type(&self, auth_type: AuthType) {
|
|
(**self).set_auth_type(auth_type)
|
|
}
|
|
|
|
fn get_auth_service(&self) -> Result<Arc<dyn UserAuthService>, FlowyError> {
|
|
(**self).get_auth_service()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct UserCredentials {
|
|
/// Currently, the token is only used when the [AuthType] is SelfHosted
|
|
pub token: Option<String>,
|
|
|
|
/// The user id
|
|
pub uid: Option<i64>,
|
|
|
|
/// The user id
|
|
pub uuid: Option<String>,
|
|
}
|
|
|
|
impl UserCredentials {
|
|
pub fn from_uid(uid: i64) -> Self {
|
|
Self {
|
|
token: None,
|
|
uid: Some(uid),
|
|
uuid: None,
|
|
}
|
|
}
|
|
|
|
pub fn from_uuid(uuid: String) -> Self {
|
|
Self {
|
|
token: None,
|
|
uid: None,
|
|
uuid: Some(uuid),
|
|
}
|
|
}
|
|
|
|
pub fn new(token: Option<String>, uid: Option<i64>, uuid: Option<String>) -> Self {
|
|
Self { token, uid, uuid }
|
|
}
|
|
}
|
|
|
|
/// Provide the generic interface for the user cloud service
|
|
/// The user cloud service is responsible for the user authentication and user profile management
|
|
pub trait UserAuthService: Send + Sync {
|
|
/// Sign up a new account.
|
|
/// The type of the params is defined the this trait's implementation.
|
|
/// Use the `unbox_or_error` of the [BoxAny] to get the params.
|
|
fn sign_up(&self, params: BoxAny) -> FutureResult<SignUpResponse, FlowyError>;
|
|
|
|
/// Sign in an account
|
|
/// The type of the params is defined the this trait's implementation.
|
|
fn sign_in(&self, params: BoxAny) -> FutureResult<SignInResponse, FlowyError>;
|
|
|
|
/// Sign out an account
|
|
fn sign_out(&self, token: Option<String>) -> FutureResult<(), FlowyError>;
|
|
|
|
/// Using the user's token to update the user information
|
|
fn update_user(
|
|
&self,
|
|
credential: UserCredentials,
|
|
params: UpdateUserProfileParams,
|
|
) -> FutureResult<(), FlowyError>;
|
|
|
|
/// Get the user information using the user's token or uid
|
|
/// return None if the user is not found
|
|
fn get_user_profile(
|
|
&self,
|
|
credential: UserCredentials,
|
|
) -> FutureResult<Option<UserProfile>, FlowyError>;
|
|
|
|
fn check_user(&self, credential: UserCredentials) -> FutureResult<(), FlowyError>;
|
|
}
|
|
|
|
/// Acts as a placeholder [UserStatusCallback] for the user session, but does not perform any function
|
|
pub(crate) struct DefaultUserStatusCallback;
|
|
impl UserStatusCallback for DefaultUserStatusCallback {
|
|
fn auth_type_did_changed(&self, _auth_type: AuthType) {}
|
|
|
|
fn did_init(&self, _user_id: i64, _workspace_id: &str) -> Fut<FlowyResult<()>> {
|
|
to_fut(async { Ok(()) })
|
|
}
|
|
|
|
fn did_sign_in(&self, _user_id: i64, _workspace_id: &str) -> Fut<FlowyResult<()>> {
|
|
to_fut(async { Ok(()) })
|
|
}
|
|
|
|
fn did_sign_up(
|
|
&self,
|
|
_context: SignUpContext,
|
|
_user_profile: &UserProfile,
|
|
) -> Fut<FlowyResult<()>> {
|
|
to_fut(async { Ok(()) })
|
|
}
|
|
|
|
fn did_expired(&self, _token: &str, _user_id: i64) -> Fut<FlowyResult<()>> {
|
|
to_fut(async { Ok(()) })
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug, Display, Hash, ProtoBuf_Enum, Flowy_Event)]
|
|
#[event_err = "FlowyError"]
|
|
pub enum UserEvent {
|
|
/// Only use when the [AuthType] is Local or SelfHosted
|
|
/// Logging into an account using a register email and password
|
|
#[event(input = "SignInPayloadPB", output = "UserProfilePB")]
|
|
SignIn = 0,
|
|
|
|
/// Only use when the [AuthType] is Local or SelfHosted
|
|
/// Creating a new account
|
|
#[event(input = "SignUpPayloadPB", output = "UserProfilePB")]
|
|
SignUp = 1,
|
|
|
|
/// Logging out fo an account
|
|
#[event()]
|
|
SignOut = 2,
|
|
|
|
/// Update the user information
|
|
#[event(input = "UpdateUserProfilePayloadPB")]
|
|
UpdateUserProfile = 3,
|
|
|
|
/// Get the user information
|
|
#[event(output = "UserProfilePB")]
|
|
GetUserProfile = 4,
|
|
|
|
/// Check the user current session is valid or not
|
|
#[event(output = "UserProfilePB")]
|
|
CheckUser = 5,
|
|
|
|
/// Initialize resources for the current user after launching the application
|
|
#[event()]
|
|
InitUser = 6,
|
|
|
|
/// Change the visual elements of the interface, such as theme, font and more
|
|
#[event(input = "AppearanceSettingsPB")]
|
|
SetAppearanceSetting = 7,
|
|
|
|
/// Get the appearance setting
|
|
#[event(output = "AppearanceSettingsPB")]
|
|
GetAppearanceSetting = 8,
|
|
|
|
/// Get the settings of the user, such as the user storage folder
|
|
#[event(output = "UserSettingPB")]
|
|
GetUserSetting = 9,
|
|
|
|
#[event(input = "ThirdPartyAuthPB", output = "UserProfilePB")]
|
|
ThirdPartyAuth = 10,
|
|
|
|
/// Set the supabase config. It will be written to the environment variables.
|
|
/// Check out the `write_to_env` of [SupabaseConfigPB].
|
|
#[event(input = "SupabaseConfigPB")]
|
|
SetSupabaseConfig = 13,
|
|
|
|
#[event(output = "SupabaseConfigPB")]
|
|
GetSupabaseConfig = 14,
|
|
}
|