mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* feat: workspace api * feat: added cloud apis for add and delete workspace * feat: add and delete workspace event handlers * chore: rust fmt * chore: save user workspace * test: add test * test: add test * chore: add to gitignore * feat: update api add name to workspace * chore: cargo clippy and rename to create * chore: add envrc and direnv to gitignore * chore: change name to create workspace instead of add workspace * chore: update client api rev * feat: add create workspace impl * chore: restore gitignore to original * test: fix create workspace event test * fix: change delete workspace input * fix: compile * fix: create workspace test * feat: add error code for request payload too large * chore: remove cargo backup files * feat: add is async option for upload file handler * chore: update client api version --------- Co-authored-by: nathan <nathan@appflowy.io>
42 lines
1.1 KiB
Rust
42 lines
1.1 KiB
Rust
use std::collections::HashMap;
|
|
|
|
use anyhow::Error;
|
|
use collab::core::collab::CollabDocState;
|
|
use collab_entity::CollabType;
|
|
|
|
use lib_infra::future::FutureResult;
|
|
|
|
pub type CollabDocStateByOid = HashMap<String, CollabDocState>;
|
|
|
|
/// A trait for database cloud service.
|
|
/// Each kind of server should implement this trait. Check out the [AppFlowyServerProvider] of
|
|
/// [flowy-server] crate for more information.
|
|
pub trait DatabaseCloudService: Send + Sync {
|
|
fn get_database_object_doc_state(
|
|
&self,
|
|
object_id: &str,
|
|
collab_type: CollabType,
|
|
workspace_id: &str,
|
|
) -> FutureResult<CollabDocState, Error>;
|
|
|
|
fn batch_get_database_object_doc_state(
|
|
&self,
|
|
object_ids: Vec<String>,
|
|
object_ty: CollabType,
|
|
workspace_id: &str,
|
|
) -> FutureResult<CollabDocStateByOid, Error>;
|
|
|
|
fn get_database_collab_object_snapshots(
|
|
&self,
|
|
object_id: &str,
|
|
limit: usize,
|
|
) -> FutureResult<Vec<DatabaseSnapshot>, Error>;
|
|
}
|
|
|
|
pub struct DatabaseSnapshot {
|
|
pub snapshot_id: i64,
|
|
pub database_id: String,
|
|
pub data: Vec<u8>,
|
|
pub created_at: i64,
|
|
}
|