mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* refactor: rename flowy-folder-deps to flowy-folder-pub * chore: rename crates * chore: move flowy-task to lib-infra * chore: rename crates * refactor: user manager dir
70 lines
2.1 KiB
Rust
70 lines
2.1 KiB
Rust
use std::fmt::Display;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use flowy_error::{ErrorCode, FlowyError};
|
|
|
|
pub const APPFLOWY_CLOUD_BASE_URL: &str = "APPFLOWY_CLOUD_ENV_APPFLOWY_CLOUD_BASE_URL";
|
|
pub const APPFLOWY_CLOUD_WS_BASE_URL: &str = "APPFLOWY_CLOUD_ENV_APPFLOWY_CLOUD_WS_BASE_URL";
|
|
pub const APPFLOWY_CLOUD_GOTRUE_URL: &str = "APPFLOWY_CLOUD_ENV_APPFLOWY_CLOUD_GOTRUE_URL";
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default)]
|
|
pub struct AFCloudConfiguration {
|
|
pub base_url: String,
|
|
pub ws_base_url: String,
|
|
pub gotrue_url: String,
|
|
}
|
|
|
|
impl Display for AFCloudConfiguration {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
f.write_fmt(format_args!(
|
|
"base_url: {}, ws_base_url: {}, gotrue_url: {}",
|
|
self.base_url, self.ws_base_url, self.gotrue_url,
|
|
))
|
|
}
|
|
}
|
|
|
|
impl AFCloudConfiguration {
|
|
pub fn from_env() -> Result<Self, FlowyError> {
|
|
let base_url = std::env::var(APPFLOWY_CLOUD_BASE_URL).map_err(|_| {
|
|
FlowyError::new(
|
|
ErrorCode::InvalidAuthConfig,
|
|
"Missing APPFLOWY_CLOUD_BASE_URL",
|
|
)
|
|
})?;
|
|
|
|
let ws_base_url = std::env::var(APPFLOWY_CLOUD_WS_BASE_URL).map_err(|_| {
|
|
FlowyError::new(
|
|
ErrorCode::InvalidAuthConfig,
|
|
"Missing APPFLOWY_CLOUD_WS_BASE_URL",
|
|
)
|
|
})?;
|
|
|
|
let gotrue_url = std::env::var(APPFLOWY_CLOUD_GOTRUE_URL)
|
|
.map_err(|_| FlowyError::new(ErrorCode::InvalidAuthConfig, "Missing AF_CLOUD_GOTRUE_URL"))?;
|
|
|
|
if base_url.is_empty() || ws_base_url.is_empty() || gotrue_url.is_empty() {
|
|
return Err(FlowyError::new(
|
|
ErrorCode::InvalidAuthConfig,
|
|
format!(
|
|
"Invalid APPFLOWY_CLOUD_BASE_URL: {}, APPFLOWY_CLOUD_WS_BASE_URL: {}, APPFLOWY_CLOUD_GOTRUE_URL: {}",
|
|
base_url, ws_base_url, gotrue_url,
|
|
)),
|
|
);
|
|
}
|
|
|
|
Ok(Self {
|
|
base_url,
|
|
ws_base_url,
|
|
gotrue_url,
|
|
})
|
|
}
|
|
|
|
/// Write the configuration to the environment variables.
|
|
pub fn write_env(&self) {
|
|
std::env::set_var(APPFLOWY_CLOUD_BASE_URL, &self.base_url);
|
|
std::env::set_var(APPFLOWY_CLOUD_WS_BASE_URL, &self.ws_base_url);
|
|
std::env::set_var(APPFLOWY_CLOUD_GOTRUE_URL, &self.gotrue_url);
|
|
}
|
|
}
|