2021-07-14 21:12:52 +08:00
|
|
|
use crate::{
|
2021-07-20 14:03:21 +08:00
|
|
|
entities::{
|
|
|
|
app::{App, CreateAppParams, *},
|
|
|
|
view::View,
|
|
|
|
},
|
2021-07-14 21:12:52 +08:00
|
|
|
errors::*,
|
2021-07-20 14:03:21 +08:00
|
|
|
module::{WorkspaceDatabase, WorkspaceUser},
|
2021-07-21 15:43:05 +08:00
|
|
|
observable::*,
|
2021-07-20 14:03:21 +08:00
|
|
|
services::ViewController,
|
|
|
|
sql_tables::app::{AppTable, AppTableChangeset, AppTableSql},
|
2021-07-14 21:12:52 +08:00
|
|
|
};
|
2021-07-20 14:03:21 +08:00
|
|
|
use flowy_dispatch::prelude::DispatchFuture;
|
2021-07-14 21:12:52 +08:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
pub struct AppController {
|
|
|
|
user: Arc<dyn WorkspaceUser>,
|
2021-07-20 14:03:21 +08:00
|
|
|
sql: Arc<AppTableSql>,
|
|
|
|
view_controller: Arc<ViewController>,
|
2021-07-14 21:12:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AppController {
|
2021-07-20 14:03:21 +08:00
|
|
|
pub fn new(
|
|
|
|
user: Arc<dyn WorkspaceUser>,
|
|
|
|
database: Arc<dyn WorkspaceDatabase>,
|
|
|
|
view_controller: Arc<ViewController>,
|
|
|
|
) -> Self {
|
|
|
|
let sql = Arc::new(AppTableSql { database });
|
|
|
|
Self {
|
|
|
|
user,
|
|
|
|
sql,
|
|
|
|
view_controller,
|
|
|
|
}
|
|
|
|
}
|
2021-07-14 21:12:52 +08:00
|
|
|
|
2021-07-23 14:37:18 +08:00
|
|
|
pub fn create_app(&self, params: CreateAppParams) -> Result<App, WorkspaceError> {
|
2021-07-19 22:44:37 +08:00
|
|
|
let app_table = AppTable::new(params);
|
|
|
|
let app: App = app_table.clone().into();
|
2021-07-23 14:37:18 +08:00
|
|
|
let _ = self.sql.create_app(app_table)?;
|
2021-07-21 22:41:44 +08:00
|
|
|
send_observable(&app.workspace_id, WorkspaceObservable::WorkspaceAddApp);
|
2021-07-19 22:44:37 +08:00
|
|
|
Ok(app)
|
2021-07-14 21:12:52 +08:00
|
|
|
}
|
|
|
|
|
2021-07-29 17:27:59 +08:00
|
|
|
pub async fn read_app(&self, app_id: &str, is_trash: bool) -> Result<App, WorkspaceError> {
|
|
|
|
let app_table = self.async_read_app(&app_id, is_trash).await?;
|
2021-07-20 15:51:49 +08:00
|
|
|
Ok(app_table.into())
|
|
|
|
}
|
|
|
|
|
2021-07-29 17:27:59 +08:00
|
|
|
pub async fn delete_app(&self, app_id: &str) -> Result<(), WorkspaceError> {
|
|
|
|
let _ = self.sql.delete_app(app_id)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn update_app(&self, params: UpdateAppParams) -> Result<(), WorkspaceError> {
|
2021-07-19 17:37:58 +08:00
|
|
|
let changeset = AppTableChangeset::new(params);
|
2021-07-21 15:43:05 +08:00
|
|
|
let app_id = changeset.id.clone();
|
2021-07-23 14:37:18 +08:00
|
|
|
let _ = self.sql.update_app(changeset)?;
|
2021-07-21 22:41:44 +08:00
|
|
|
send_observable(&app_id, WorkspaceObservable::AppUpdateDesc);
|
2021-07-14 21:12:52 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-07-20 14:03:21 +08:00
|
|
|
|
2021-07-29 17:27:59 +08:00
|
|
|
fn async_read_app(
|
|
|
|
&self,
|
|
|
|
app_id: &str,
|
|
|
|
is_trash: bool,
|
|
|
|
) -> DispatchFuture<Result<AppTable, WorkspaceError>> {
|
2021-07-20 14:03:21 +08:00
|
|
|
let sql = self.sql.clone();
|
|
|
|
let app_id = app_id.to_owned();
|
|
|
|
DispatchFuture {
|
|
|
|
fut: Box::pin(async move {
|
2021-07-29 17:27:59 +08:00
|
|
|
let app_table = sql.read_app(&app_id, is_trash)?;
|
2021-07-20 14:03:21 +08:00
|
|
|
// TODO: fetch app from remote server
|
|
|
|
Ok(app_table)
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
2021-07-14 21:12:52 +08:00
|
|
|
}
|