mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-15 12:21:16 +00:00

* refactor: weak passed-in params in handler * refactor: rename struct * chore: update tables * chore: update schema * chore: add permission * chore: update tables * chore: support transaction mode * chore: workspace database id * chore: add user workspace * feat: return list of workspaces * chore: add user to workspace * feat: separate database row table * refactor: update schema * chore: partition table * chore: use transaction * refactor: dir * refactor: collab db ref * fix: collab db lock * chore: rename files * chore: add tables descriptions * chore: update readme * docs: update documentation * chore: rename crate * chore: update ref * chore: update tests * chore: update tests * refactor: crate deps * chore: update crate ref * chore: remove unused deps * chore: remove unused deps * chore: update collab crate refs * chore: replace client with transaction in pooler * refactor: return error type * refactor: use anyhow error in deps * feat: supabase postgrest user signin (wip) * fix: Cargo.toml source git deps, changed Error to anyhow::Error * fix: uuid serialization * chore: fix conflict * chore: extend the response * feat: add implementation place holders * feat: impl get_user_workspaces * feat: impl get_user_profile * test: create workspace * fix: postgrest: field names and alias * chore: implement folder restful api * chore: implement collab storate with restful api * feat: added placeholders for impl: update_user_profile, check_user * feat: impl: update_user_profile * feat: impl: check_user * fix: use UidResponse, add more debug info for serde serialization error * fix: get_user_profile: use Optional<UserProfileResponse> * chore: imple init sync * chore: support soft delete * feat: postgresql: add migration test * feat: postgresql migration test: added UID display and colored output * feat: postgresql migration test: workspace role * feat: postgresql migration test: create shared common utils * feat: postgresql migration test: fixed shebang * chore: add flush_collab_update pg function * chore: implement datbaase and document restful api * chore: migrate to use restful api * chore: update table schema * chore: fix tests * chore: remove unused code * chore: format code * chore: remove unused env * fix: tauri build * fix: tauri build --------- Co-authored-by: Fu Zi Xiang <speed2exe@live.com.sg>
208 lines
4.2 KiB
Rust
208 lines
4.2 KiB
Rust
use std::convert::TryInto;
|
|
|
|
use flowy_derive::ProtoBuf;
|
|
use flowy_user_deps::entities::*;
|
|
|
|
use crate::entities::parser::{UserEmail, UserIcon, UserName, UserOpenaiKey, UserPassword};
|
|
use crate::entities::AuthTypePB;
|
|
use crate::errors::ErrorCode;
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct UserTokenPB {
|
|
#[pb(index = 1)]
|
|
pub token: String,
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default, Clone)]
|
|
pub struct UserSettingPB {
|
|
#[pb(index = 1)]
|
|
pub(crate) user_folder: String,
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default, Eq, PartialEq, Debug, Clone)]
|
|
pub struct UserProfilePB {
|
|
#[pb(index = 1)]
|
|
pub id: i64,
|
|
|
|
#[pb(index = 2)]
|
|
pub email: String,
|
|
|
|
#[pb(index = 3)]
|
|
pub name: String,
|
|
|
|
#[pb(index = 4)]
|
|
pub token: String,
|
|
|
|
#[pb(index = 5)]
|
|
pub icon_url: String,
|
|
|
|
#[pb(index = 6)]
|
|
pub openai_key: String,
|
|
|
|
#[pb(index = 7)]
|
|
pub auth_type: AuthTypePB,
|
|
}
|
|
|
|
impl std::convert::From<UserProfile> for UserProfilePB {
|
|
fn from(user_profile: UserProfile) -> Self {
|
|
Self {
|
|
id: user_profile.id,
|
|
email: user_profile.email,
|
|
name: user_profile.name,
|
|
token: user_profile.token,
|
|
icon_url: user_profile.icon_url,
|
|
openai_key: user_profile.openai_key,
|
|
auth_type: user_profile.auth_type.into(),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default)]
|
|
pub struct UpdateUserProfilePayloadPB {
|
|
#[pb(index = 1)]
|
|
pub id: i64,
|
|
|
|
#[pb(index = 2, one_of)]
|
|
pub name: Option<String>,
|
|
|
|
#[pb(index = 3, one_of)]
|
|
pub email: Option<String>,
|
|
|
|
#[pb(index = 4, one_of)]
|
|
pub password: Option<String>,
|
|
|
|
#[pb(index = 5, one_of)]
|
|
pub icon_url: Option<String>,
|
|
|
|
#[pb(index = 6, one_of)]
|
|
pub openai_key: Option<String>,
|
|
|
|
#[pb(index = 7)]
|
|
pub auth_type: AuthTypePB,
|
|
}
|
|
|
|
impl UpdateUserProfilePayloadPB {
|
|
pub fn new(id: i64) -> Self {
|
|
Self {
|
|
id,
|
|
..Default::default()
|
|
}
|
|
}
|
|
|
|
pub fn name(mut self, name: &str) -> Self {
|
|
self.name = Some(name.to_owned());
|
|
self
|
|
}
|
|
|
|
pub fn email(mut self, email: &str) -> Self {
|
|
self.email = Some(email.to_owned());
|
|
self
|
|
}
|
|
|
|
pub fn password(mut self, password: &str) -> Self {
|
|
self.password = Some(password.to_owned());
|
|
self
|
|
}
|
|
|
|
pub fn icon_url(mut self, icon_url: &str) -> Self {
|
|
self.icon_url = Some(icon_url.to_owned());
|
|
self
|
|
}
|
|
|
|
pub fn openai_key(mut self, openai_key: &str) -> Self {
|
|
self.openai_key = Some(openai_key.to_owned());
|
|
self
|
|
}
|
|
}
|
|
|
|
impl TryInto<UpdateUserProfileParams> for UpdateUserProfilePayloadPB {
|
|
type Error = ErrorCode;
|
|
|
|
fn try_into(self) -> Result<UpdateUserProfileParams, Self::Error> {
|
|
let name = match self.name {
|
|
None => None,
|
|
Some(name) => Some(UserName::parse(name)?.0),
|
|
};
|
|
|
|
let email = match self.email {
|
|
None => None,
|
|
Some(email) => Some(UserEmail::parse(email)?.0),
|
|
};
|
|
|
|
let password = match self.password {
|
|
None => None,
|
|
Some(password) => Some(UserPassword::parse(password)?.0),
|
|
};
|
|
|
|
let icon_url = match self.icon_url {
|
|
None => None,
|
|
Some(icon_url) => Some(UserIcon::parse(icon_url)?.0),
|
|
};
|
|
|
|
let openai_key = match self.openai_key {
|
|
None => None,
|
|
Some(openai_key) => Some(UserOpenaiKey::parse(openai_key)?.0),
|
|
};
|
|
|
|
Ok(UpdateUserProfileParams {
|
|
id: self.id,
|
|
auth_type: self.auth_type.into(),
|
|
name,
|
|
email,
|
|
password,
|
|
icon_url,
|
|
openai_key,
|
|
})
|
|
}
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default, Debug, Clone)]
|
|
pub struct RepeatedUserWorkspacePB {
|
|
#[pb(index = 1)]
|
|
pub items: Vec<UserWorkspacePB>,
|
|
}
|
|
|
|
impl From<Vec<UserWorkspace>> for RepeatedUserWorkspacePB {
|
|
fn from(workspaces: Vec<UserWorkspace>) -> Self {
|
|
Self {
|
|
items: workspaces.into_iter().map(UserWorkspacePB::from).collect(),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default, Debug, Clone)]
|
|
pub struct UserWorkspacePB {
|
|
#[pb(index = 1)]
|
|
pub id: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub name: String,
|
|
}
|
|
|
|
impl From<UserWorkspace> for UserWorkspacePB {
|
|
fn from(value: UserWorkspace) -> Self {
|
|
Self {
|
|
id: value.id,
|
|
name: value.name,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default)]
|
|
pub struct AddWorkspaceUserPB {
|
|
#[pb(index = 1)]
|
|
pub email: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub workspace_id: String,
|
|
}
|
|
|
|
#[derive(ProtoBuf, Default)]
|
|
pub struct RemoveWorkspaceUserPB {
|
|
#[pb(index = 1)]
|
|
pub email: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub workspace_id: String,
|
|
}
|