diff options
author | THONY <[email protected]> | 2024-01-01 16:01:57 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-01 16:01:57 +0100 |
commit | d672ad3f76e9cf8437fbe58fb82791e4212382c8 (patch) | |
tree | a36307a827cbda040105fb55d6b3d5b31c904f8e /src | |
parent | a641b48884bd66fc8cac4476a69d7f93bf48f2c4 (diff) | |
download | vaultwarden-d672ad3f76e9cf8437fbe58fb82791e4212382c8.tar.gz vaultwarden-d672ad3f76e9cf8437fbe58fb82791e4212382c8.zip |
US or EU Data Region Selection (#3752)
* add selection of data region for push
* fix cargo check + rewrite config + add check url
* fix clippy error
* add comment in .env.template, adapt config.rs
* Update .env.template
Co-authored-by: William Desportes <[email protected]>
* Update .env.template
Co-authored-by: William Desportes <[email protected]>
* Revert "Update .env.template"
This reverts commit 5bed974ba7b9f481792d2228834585f053d47dc3.
* Revert "Update .env.template"
This reverts commit 0760eff95dfaf2a9cf97bb25f6cf7660bdf55173.
* fix /connect/token to push identity
* fix /connect/token to push identity
* Fixed formatting when solving merge conflicts
---------
Co-authored-by: William Desportes <[email protected]>
Co-authored-by: Daniel GarcĂa <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/api/push.rs | 6 | ||||
-rw-r--r-- | src/config.rs | 24 |
2 files changed, 28 insertions, 2 deletions
diff --git a/src/api/push.rs b/src/api/push.rs index 3b0a573b..7497b249 100644 --- a/src/api/push.rs +++ b/src/api/push.rs @@ -50,7 +50,11 @@ async fn get_auth_push_token() -> ApiResult<String> { ("client_secret", &client_secret), ]; - let res = match get_reqwest_client().post("https://identity.bitwarden.com/connect/token").form(¶ms).send().await + let res = match get_reqwest_client() + .post(&format!("{}/connect/token", CONFIG.push_identity_uri())) + .form(¶ms) + .send() + .await { Ok(r) => r, Err(e) => err!(format!("Error getting push token from bitwarden server: {e}")), diff --git a/src/config.rs b/src/config.rs index c1821798..116adc98 100644 --- a/src/config.rs +++ b/src/config.rs @@ -380,8 +380,10 @@ make_config! { push { /// Enable push notifications push_enabled: bool, false, def, false; - /// Push relay base uri + /// Push relay uri push_relay_uri: String, false, def, "https://push.bitwarden.com".to_string(); + /// Push identity uri + push_identity_uri: String, false, def, "https://identity.bitwarden.com".to_string(); /// Installation id |> The installation id from https://bitwarden.com/host push_installation_id: Pass, false, def, String::new(); /// Installation key |> The installation key from https://bitwarden.com/host @@ -754,6 +756,26 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> { ) } + if cfg.push_enabled { + let push_relay_uri = cfg.push_relay_uri.to_lowercase(); + if !push_relay_uri.starts_with("https://") { + err!("`PUSH_RELAY_URI` must start with 'https://'.") + } + + if Url::parse(&push_relay_uri).is_err() { + err!("Invalid URL format for `PUSH_RELAY_URI`."); + } + + let push_identity_uri = cfg.push_identity_uri.to_lowercase(); + if !push_identity_uri.starts_with("https://") { + err!("`PUSH_IDENTITY_URI` must start with 'https://'.") + } + + if Url::parse(&push_identity_uri).is_err() { + err!("Invalid URL format for `PUSH_IDENTITY_URI`."); + } + } + const KNOWN_FLAGS: &[&str] = &["autofill-overlay", "autofill-v2", "browser-fileless-import", "fido2-vault-credentials"]; for flag in parse_experimental_client_feature_flags(&cfg.experimental_client_feature_flags).keys() { |