mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* chore: update client-api rev * chore: update collab rev id * feat: add sign_in_request and import shared entity * feat: added to userworkspace from af_workspace * chore: add script to update the client-api rev id * chore: update client-api rev * feat: add workspaces api * feat: added check user * chore: config * chore: update client_api version * chore: ws connect * chore: ws connect * chore: update crate versions * chore: rename event * chore: update client-appi * chore: set appflowy cloud env * chore: add env template * chore: update env name * docs: update docs * fix: check_user * feat: impl sign_in_with_url * feat: add file storage placeholders * chore: update client-api * chore: disable test * feat: impl workspace add and remove * chore: sign up test * feat: select cover image on upload (#3488) * fix: close popover after item selection in settings view (#3362) * fix: close popover after item selection in settings view * fix: add missing await before closing popover * fix: find popover container by context instead of passing controllers around * fix: add requested changes * feat: close text direction settings popups after selection * fix: clean up * fix: restore theme value dropdown as StatefulWidget * feat: openai and stabilityai integration (#3439) * chore: create trait * test: add tests * chore: remove log * chore: disable log * chore: checklist ux flow redesign (#3418) * chore: ux flow redesign * chore: remove unused imports * fix: allow creation of tasks of the same name * chore: apply code suggestions from Mathias * fix: add padding below field title text field (#3440) * Fixed Issue no #3426 * Reversed the pubspec.lock mistaken update * FIXED PADDING * Fixed Padding issue on calender field edit popup * chore: rename package name (#3501) * fix: right icon size sam as left one (#3494) * feat: enable removing user icon (#3487) * feat: enable removing user icon * fix: generate to true * fix: review comments * fix: more review comments * fix: integration test and final changes * fix: made cursor grab and background color when hovering on Appearance Options Buttons (#3498) * chore: calendar UI polish (#3484) * chore: update calendar theming * feat: add event popup editor * chore: new event button redesign and add card shadows * chore: unscheduled events button * chore: event title text field * fix: focus node double dispose * chore: show popover when create new event * test: integrate some tests for integration testing purposes * fix: some fixes and more integration tests * chore: add more space between font item and font menu * feat: add reset font button in toolbar * feat: only show text direction toolbar item when RTL is enabled * fix: unable to change RTL of heading block * test: add integration test for ltr/rtl mode * chore: update inlang project settings (#3441) * feat: using script to update the collab source. (#3508) * chore: add script * chore: update script * chore: update bytes version * chore: submit lock file * chore: update test * chore: update test * chore: bump version * chore: update * ci: fix * ci: fix * chore: update commit id * chore: update commit id * chore: update commit id * fix: is cloud enable --------- Co-authored-by: Fu Zi Xiang <speed2exe@live.com.sg> Co-authored-by: Mathias Mogensen <42929161+Xazin@users.noreply.github.com> Co-authored-by: Vincenzo De Petris <37916223+vincendep@users.noreply.github.com> Co-authored-by: Richard Shiue <71320345+richardshiue@users.noreply.github.com> Co-authored-by: Aryan More <61151896+aryan-more@users.noreply.github.com> Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io> Co-authored-by: Lakhan Baheti <94619783+1akhanBaheti@users.noreply.github.com> Co-authored-by: Nitin-Poojary <70025277+Nitin-Poojary@users.noreply.github.com> Co-authored-by: Jannes Blobel <72493222+jannesblobel@users.noreply.github.com>
272 lines
8.2 KiB
Rust
272 lines
8.2 KiB
Rust
use std::fmt::Debug;
|
|
use std::sync::{Arc, Weak};
|
|
|
|
use anyhow::Error;
|
|
use async_trait::async_trait;
|
|
use collab::core::collab::{CollabRawData, MutexCollab};
|
|
use collab::preclude::{CollabBuilder, CollabPlugin};
|
|
use collab_define::{CollabObject, CollabType};
|
|
use collab_persistence::kv::rocks_kv::RocksCollabDB;
|
|
use collab_plugins::cloud_storage::network_state::{CollabNetworkReachability, CollabNetworkState};
|
|
use collab_plugins::local_storage::rocksdb::RocksdbDiskPlugin;
|
|
use collab_plugins::local_storage::CollabPersistenceConfig;
|
|
use collab_plugins::snapshot::{CollabSnapshotPlugin, SnapshotPersistence};
|
|
use futures::executor::block_on;
|
|
use parking_lot::{Mutex, RwLock};
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub enum CollabSource {
|
|
Local,
|
|
AFCloud,
|
|
Supabase,
|
|
}
|
|
|
|
pub enum CollabPluginContext {
|
|
Local,
|
|
AppFlowyCloud {
|
|
uid: i64,
|
|
collab_object: CollabObject,
|
|
local_collab: Weak<MutexCollab>,
|
|
},
|
|
Supabase {
|
|
uid: i64,
|
|
collab_object: CollabObject,
|
|
local_collab: Weak<MutexCollab>,
|
|
local_collab_db: Weak<RocksCollabDB>,
|
|
},
|
|
}
|
|
|
|
#[async_trait]
|
|
pub trait CollabStorageProvider: Send + Sync + 'static {
|
|
fn storage_source(&self) -> CollabSource;
|
|
|
|
async fn get_plugins(
|
|
&self,
|
|
context: CollabPluginContext,
|
|
) -> Vec<Arc<dyn collab::core::collab_plugin::CollabPlugin>>;
|
|
|
|
fn is_sync_enabled(&self) -> bool;
|
|
}
|
|
|
|
#[async_trait]
|
|
impl<T> CollabStorageProvider for Arc<T>
|
|
where
|
|
T: CollabStorageProvider,
|
|
{
|
|
fn storage_source(&self) -> CollabSource {
|
|
(**self).storage_source()
|
|
}
|
|
|
|
async fn get_plugins(&self, context: CollabPluginContext) -> Vec<Arc<dyn CollabPlugin>> {
|
|
(**self).get_plugins(context).await
|
|
}
|
|
|
|
fn is_sync_enabled(&self) -> bool {
|
|
(**self).is_sync_enabled()
|
|
}
|
|
}
|
|
|
|
pub struct AppFlowyCollabBuilder {
|
|
network_reachability: CollabNetworkReachability,
|
|
workspace_id: RwLock<Option<String>>,
|
|
cloud_storage: RwLock<Arc<dyn CollabStorageProvider>>,
|
|
snapshot_persistence: Mutex<Option<Arc<dyn SnapshotPersistence>>>,
|
|
device_id: Mutex<String>,
|
|
}
|
|
|
|
impl AppFlowyCollabBuilder {
|
|
pub fn new<T: CollabStorageProvider>(storage_provider: T) -> Self {
|
|
Self {
|
|
network_reachability: CollabNetworkReachability::new(),
|
|
workspace_id: Default::default(),
|
|
cloud_storage: RwLock::new(Arc::new(storage_provider)),
|
|
snapshot_persistence: Default::default(),
|
|
device_id: Default::default(),
|
|
}
|
|
}
|
|
|
|
pub fn set_snapshot_persistence(&self, snapshot_persistence: Arc<dyn SnapshotPersistence>) {
|
|
*self.snapshot_persistence.lock() = Some(snapshot_persistence);
|
|
}
|
|
|
|
pub fn initialize(&self, workspace_id: String) {
|
|
*self.workspace_id.write() = Some(workspace_id);
|
|
}
|
|
|
|
pub fn set_sync_device(&self, device_id: String) {
|
|
*self.device_id.lock() = device_id;
|
|
}
|
|
|
|
pub fn update_network(&self, reachable: bool) {
|
|
if reachable {
|
|
self
|
|
.network_reachability
|
|
.set_state(CollabNetworkState::Connected)
|
|
} else {
|
|
self
|
|
.network_reachability
|
|
.set_state(CollabNetworkState::Disconnected)
|
|
}
|
|
}
|
|
|
|
fn collab_object(
|
|
&self,
|
|
uid: i64,
|
|
object_id: &str,
|
|
collab_type: CollabType,
|
|
) -> Result<CollabObject, Error> {
|
|
let workspace_id = self.workspace_id.read().clone().ok_or_else(|| {
|
|
anyhow::anyhow!("When using supabase plugin, the workspace_id should not be empty")
|
|
})?;
|
|
Ok(CollabObject::new(
|
|
uid,
|
|
object_id.to_string(),
|
|
collab_type,
|
|
workspace_id,
|
|
self.device_id.lock().clone(),
|
|
))
|
|
}
|
|
|
|
/// Creates a new collaboration builder with the default configuration.
|
|
///
|
|
/// This function will initiate the creation of a [MutexCollab] object if it does not already exist.
|
|
/// To check for the existence of the object prior to creation, you should utilize a transaction
|
|
/// returned by the [read_txn] method of the [RocksCollabDB]. Then, invoke the [is_exist] method
|
|
/// to confirm the object's presence.
|
|
///
|
|
/// # Parameters
|
|
/// - `uid`: The user ID associated with the collaboration.
|
|
/// - `object_id`: A string reference representing the ID of the object.
|
|
/// - `object_type`: The type of the collaboration, defined by the [CollabType] enum.
|
|
/// - `raw_data`: The raw data of the collaboration object, defined by the [CollabRawData] type.
|
|
/// - `collab_db`: A weak reference to the [RocksCollabDB].
|
|
///
|
|
pub fn build(
|
|
&self,
|
|
uid: i64,
|
|
object_id: &str,
|
|
object_type: CollabType,
|
|
raw_data: CollabRawData,
|
|
collab_db: Weak<RocksCollabDB>,
|
|
) -> Result<Arc<MutexCollab>, Error> {
|
|
self.build_with_config(
|
|
uid,
|
|
object_id,
|
|
object_type,
|
|
collab_db,
|
|
raw_data,
|
|
&CollabPersistenceConfig::default(),
|
|
)
|
|
}
|
|
|
|
/// Creates a new collaboration builder with the custom configuration.
|
|
///
|
|
/// This function will initiate the creation of a [MutexCollab] object if it does not already exist.
|
|
/// To check for the existence of the object prior to creation, you should utilize a transaction
|
|
/// returned by the [read_txn] method of the [RocksCollabDB]. Then, invoke the [is_exist] method
|
|
/// to confirm the object's presence.
|
|
///
|
|
/// # Parameters
|
|
/// - `uid`: The user ID associated with the collaboration.
|
|
/// - `object_id`: A string reference representing the ID of the object.
|
|
/// - `object_type`: The type of the collaboration, defined by the [CollabType] enum.
|
|
/// - `raw_data`: The raw data of the collaboration object, defined by the [CollabRawData] type.
|
|
/// - `collab_db`: A weak reference to the [RocksCollabDB].
|
|
///
|
|
pub fn build_with_config(
|
|
&self,
|
|
uid: i64,
|
|
object_id: &str,
|
|
object_type: CollabType,
|
|
collab_db: Weak<RocksCollabDB>,
|
|
collab_raw_data: CollabRawData,
|
|
config: &CollabPersistenceConfig,
|
|
) -> Result<Arc<MutexCollab>, Error> {
|
|
let collab = Arc::new(
|
|
CollabBuilder::new(uid, object_id)
|
|
.with_raw_data(collab_raw_data)
|
|
.with_plugin(RocksdbDiskPlugin::new_with_config(
|
|
uid,
|
|
collab_db.clone(),
|
|
config.clone(),
|
|
))
|
|
.with_device_id(self.device_id.lock().clone())
|
|
.build()?,
|
|
);
|
|
{
|
|
let cloud_storage = self.cloud_storage.read();
|
|
let cloud_storage_type = cloud_storage.storage_source();
|
|
let collab_object = self.collab_object(uid, object_id, object_type)?;
|
|
match cloud_storage_type {
|
|
CollabSource::AFCloud => {
|
|
#[cfg(feature = "appflowy_cloud_integrate")]
|
|
{
|
|
let local_collab = Arc::downgrade(&collab);
|
|
let plugins = block_on(
|
|
cloud_storage.get_plugins(CollabPluginContext::AppFlowyCloud {
|
|
uid,
|
|
collab_object: collab_object.clone(),
|
|
local_collab,
|
|
}),
|
|
);
|
|
for plugin in plugins {
|
|
collab.lock().add_plugin(plugin);
|
|
}
|
|
}
|
|
},
|
|
CollabSource::Supabase => {
|
|
#[cfg(feature = "supabase_integrate")]
|
|
{
|
|
let local_collab = Arc::downgrade(&collab);
|
|
let local_collab_db = collab_db.clone();
|
|
let plugins = block_on(cloud_storage.get_plugins(CollabPluginContext::Supabase {
|
|
uid,
|
|
collab_object: collab_object.clone(),
|
|
local_collab,
|
|
local_collab_db,
|
|
}));
|
|
for plugin in plugins {
|
|
collab.lock().add_plugin(plugin);
|
|
}
|
|
}
|
|
},
|
|
CollabSource::Local => {},
|
|
}
|
|
|
|
if let Some(snapshot_persistence) = self.snapshot_persistence.lock().as_ref() {
|
|
if config.enable_snapshot {
|
|
let snapshot_plugin = CollabSnapshotPlugin::new(
|
|
uid,
|
|
collab_object,
|
|
snapshot_persistence.clone(),
|
|
collab_db,
|
|
config.snapshot_per_update,
|
|
);
|
|
// tracing::trace!("add snapshot plugin: {}", object_id);
|
|
collab.lock().add_plugin(Arc::new(snapshot_plugin));
|
|
}
|
|
}
|
|
}
|
|
|
|
block_on(collab.async_initialize());
|
|
Ok(collab)
|
|
}
|
|
}
|
|
|
|
pub struct DefaultCollabStorageProvider();
|
|
|
|
#[async_trait]
|
|
impl CollabStorageProvider for DefaultCollabStorageProvider {
|
|
fn storage_source(&self) -> CollabSource {
|
|
CollabSource::Local
|
|
}
|
|
|
|
async fn get_plugins(&self, _context: CollabPluginContext) -> Vec<Arc<dyn CollabPlugin>> {
|
|
vec![]
|
|
}
|
|
|
|
fn is_sync_enabled(&self) -> bool {
|
|
false
|
|
}
|
|
}
|