mirror of
https://github.com/dani-garcia/vaultwarden.wiki.git
synced 2026-07-25 15:25:05 +03:00
Compare commits
4
Commits
602b18fdd6
...
1.34.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
53f58b14d5 | ||
|
|
ef7835d1b0 | ||
|
|
3a44dc963b | ||
|
|
a039e227c7 |
+4
-8
@@ -344,21 +344,17 @@
|
|||||||
## Client Settings
|
## Client Settings
|
||||||
## Enable experimental feature flags for clients.
|
## Enable experimental feature flags for clients.
|
||||||
## This is a comma-separated list of flags, e.g. "flag1,flag2,flag3".
|
## This is a comma-separated list of flags, e.g. "flag1,flag2,flag3".
|
||||||
|
## Note that clients cache the /api/config endpoint for about 1 hour and it could take some time before they are enabled or disabled!
|
||||||
##
|
##
|
||||||
## The following flags are available:
|
## The following flags are available:
|
||||||
## - "autofill-overlay": Add an overlay menu to form fields for quick access to credentials.
|
|
||||||
## - "autofill-v2": Use the new autofill implementation.
|
|
||||||
## - "browser-fileless-import": Directly import credentials from other providers without a file.
|
|
||||||
## - "extension-refresh": Temporarily enable the new extension design until general availability (should be used with the beta Chrome extension)
|
|
||||||
## - "fido2-vault-credentials": Enable the use of FIDO2 security keys as second factor.
|
|
||||||
## - "inline-menu-positioning-improvements": Enable the use of inline menu password generator and identity suggestions in the browser extension.
|
## - "inline-menu-positioning-improvements": Enable the use of inline menu password generator and identity suggestions in the browser extension.
|
||||||
## - "ssh-key-vault-item": Enable the creation and use of SSH key vault items. (Needs clients >=2024.12.0)
|
## - "inline-menu-totp": Enable the use of inline menu TOTP codes in the browser extension.
|
||||||
## - "ssh-agent": Enable SSH agent support on Desktop. (Needs desktop >=2024.12.0)
|
## - "ssh-agent": Enable SSH agent support on Desktop. (Needs desktop >=2024.12.0)
|
||||||
|
## - "ssh-key-vault-item": Enable the creation and use of SSH key vault items. (Needs clients >=2024.12.0)
|
||||||
|
## - "export-attachments": Enable support for exporting attachments (Clients >=2025.4.0)
|
||||||
## - "anon-addy-self-host-alias": Enable configuring self-hosted Anon Addy alias generator. (Needs Android >=2025.3.0, iOS >=2025.4.0)
|
## - "anon-addy-self-host-alias": Enable configuring self-hosted Anon Addy alias generator. (Needs Android >=2025.3.0, iOS >=2025.4.0)
|
||||||
## - "simple-login-self-host-alias": Enable configuring self-hosted Simple Login alias generator. (Needs Android >=2025.3.0, iOS >=2025.4.0)
|
## - "simple-login-self-host-alias": Enable configuring self-hosted Simple Login alias generator. (Needs Android >=2025.3.0, iOS >=2025.4.0)
|
||||||
## - "mutual-tls": Enable the use of mutual TLS on Android (Client >= 2025.2.0)
|
## - "mutual-tls": Enable the use of mutual TLS on Android (Client >= 2025.2.0)
|
||||||
## - "export-attachments": Enable support for exporting attachments (Clients >=2025.4.0)
|
|
||||||
## - "inline-menu-totp": Enable the use of inline menu TOTP codes in the browser extension.
|
|
||||||
# EXPERIMENTAL_CLIENT_FEATURE_FLAGS=fido2-vault-credentials
|
# EXPERIMENTAL_CLIENT_FEATURE_FLAGS=fido2-vault-credentials
|
||||||
|
|
||||||
## Require new device emails. When a user logs in an email is required to be sent.
|
## Require new device emails. When a user logs in an email is required to be sent.
|
||||||
|
|||||||
Generated
+37
-42
@@ -154,9 +154,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "async-io"
|
name = "async-io"
|
||||||
version = "2.4.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
|
checksum = "1237c0ae75a0f3765f58910ff9cdd0a12eeb39ab2f4c7de23262f337f0aacbb3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-lock",
|
"async-lock",
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
@@ -165,7 +165,7 @@ dependencies = [
|
|||||||
"futures-lite",
|
"futures-lite",
|
||||||
"parking",
|
"parking",
|
||||||
"polling",
|
"polling",
|
||||||
"rustix 0.38.44",
|
"rustix 1.0.7",
|
||||||
"slab",
|
"slab",
|
||||||
"tracing",
|
"tracing",
|
||||||
"windows-sys 0.59.0",
|
"windows-sys 0.59.0",
|
||||||
@@ -490,9 +490,9 @@ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cc"
|
name = "cc"
|
||||||
version = "1.2.23"
|
version = "1.2.24"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
|
checksum = "16595d3be041c03b09d08d0858631facccee9221e579704070e6e9e4915d3bc7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"shlex",
|
"shlex",
|
||||||
]
|
]
|
||||||
@@ -1440,12 +1440,6 @@ version = "0.3.9"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "hermit-abi"
|
|
||||||
version = "0.4.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hermit-abi"
|
name = "hermit-abi"
|
||||||
version = "0.5.1"
|
version = "0.5.1"
|
||||||
@@ -1640,11 +1634,10 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hyper-rustls"
|
name = "hyper-rustls"
|
||||||
version = "0.27.5"
|
version = "0.27.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
checksum = "03a01595e11bdcec50946522c32dde3fc6914743000a68b93000965f2f02406d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
|
||||||
"http 1.3.1",
|
"http 1.3.1",
|
||||||
"hyper 1.6.0",
|
"hyper 1.6.0",
|
||||||
"hyper-util",
|
"hyper-util",
|
||||||
@@ -1673,9 +1666,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hyper-util"
|
name = "hyper-util"
|
||||||
version = "0.1.11"
|
version = "0.1.12"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
checksum = "cf9f1e950e0d9d1d3c47184416723cf29c0d1f93bd8cccf37e4beb6b44f31710"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"futures-channel",
|
"futures-channel",
|
||||||
@@ -1764,9 +1757,9 @@ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "icu_properties"
|
name = "icu_properties"
|
||||||
version = "2.0.0"
|
version = "2.0.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a"
|
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"displaydoc",
|
"displaydoc",
|
||||||
"icu_collections",
|
"icu_collections",
|
||||||
@@ -1780,9 +1773,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "icu_properties_data"
|
name = "icu_properties_data"
|
||||||
version = "2.0.0"
|
version = "2.0.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04"
|
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "icu_provider"
|
name = "icu_provider"
|
||||||
@@ -2157,13 +2150,13 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mio"
|
name = "mio"
|
||||||
version = "1.0.3"
|
version = "1.0.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"wasi 0.11.0+wasi-snapshot-preview1",
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2659,15 +2652,15 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "polling"
|
name = "polling"
|
||||||
version = "3.7.4"
|
version = "3.8.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
|
checksum = "b53a684391ad002dd6a596ceb6c74fd004fdce75f4be2e3f615068abbea5fd50"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"concurrent-queue",
|
"concurrent-queue",
|
||||||
"hermit-abi 0.4.0",
|
"hermit-abi 0.5.1",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"rustix 0.38.44",
|
"rustix 1.0.7",
|
||||||
"tracing",
|
"tracing",
|
||||||
"windows-sys 0.59.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
@@ -3282,9 +3275,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustversion"
|
name = "rustversion"
|
||||||
version = "1.0.20"
|
version = "1.0.21"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ryu"
|
name = "ryu"
|
||||||
@@ -3524,9 +3517,9 @@ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "socket2"
|
name = "socket2"
|
||||||
version = "0.5.9"
|
version = "0.5.10"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.52.0",
|
||||||
@@ -3798,9 +3791,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.45.0"
|
version = "1.45.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"bytes",
|
"bytes",
|
||||||
@@ -4145,11 +4138,13 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uuid"
|
name = "uuid"
|
||||||
version = "1.16.0"
|
version = "1.17.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"getrandom 0.3.3",
|
"getrandom 0.3.3",
|
||||||
|
"js-sys",
|
||||||
|
"wasm-bindgen",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -4482,15 +4477,15 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows-core"
|
name = "windows-core"
|
||||||
version = "0.61.1"
|
version = "0.61.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "46ec44dc15085cea82cf9c78f85a9114c463a369786585ad2882d1ff0b0acf40"
|
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-implement",
|
"windows-implement",
|
||||||
"windows-interface",
|
"windows-interface",
|
||||||
"windows-link",
|
"windows-link",
|
||||||
"windows-result",
|
"windows-result",
|
||||||
"windows-strings 0.4.1",
|
"windows-strings 0.4.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -4555,9 +4550,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows-result"
|
name = "windows-result"
|
||||||
version = "0.3.3"
|
version = "0.3.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4b895b5356fc36103d0f64dd1e94dfa7ac5633f1c9dd6e80fe9ec4adef69e09d"
|
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-link",
|
"windows-link",
|
||||||
]
|
]
|
||||||
@@ -4573,9 +4568,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "windows-strings"
|
name = "windows-strings"
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2a7ab927b2637c19b3dbe0965e75d8f2d30bdd697a1516191cad2ec4df8fb28a"
|
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-link",
|
"windows-link",
|
||||||
]
|
]
|
||||||
|
|||||||
+2
-2
@@ -72,7 +72,7 @@ dashmap = "6.1.0"
|
|||||||
|
|
||||||
# Async futures
|
# Async futures
|
||||||
futures = "0.3.31"
|
futures = "0.3.31"
|
||||||
tokio = { version = "1.45.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal", "net"] }
|
tokio = { version = "1.45.1", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal", "net"] }
|
||||||
|
|
||||||
# A generic serialization/deserialization framework
|
# A generic serialization/deserialization framework
|
||||||
serde = { version = "1.0.219", features = ["derive"] }
|
serde = { version = "1.0.219", features = ["derive"] }
|
||||||
@@ -95,7 +95,7 @@ ring = "0.17.14"
|
|||||||
subtle = "2.6.1"
|
subtle = "2.6.1"
|
||||||
|
|
||||||
# UUID generation
|
# UUID generation
|
||||||
uuid = { version = "1.16.0", features = ["v4"] }
|
uuid = { version = "1.17.0", features = ["v4"] }
|
||||||
|
|
||||||
# Date and time libraries
|
# Date and time libraries
|
||||||
chrono = { version = "0.4.41", features = ["clock", "serde"], default-features = false }
|
chrono = { version = "0.4.41", features = ["clock", "serde"], default-features = false }
|
||||||
|
|||||||
+36
-28
@@ -421,11 +421,11 @@ async fn delete_user(user_id: UserId, token: AdminToken, mut conn: DbConn) -> Em
|
|||||||
async fn deauth_user(user_id: UserId, _token: AdminToken, mut conn: DbConn, nt: Notify<'_>) -> EmptyResult {
|
async fn deauth_user(user_id: UserId, _token: AdminToken, mut conn: DbConn, nt: Notify<'_>) -> EmptyResult {
|
||||||
let mut user = get_user_or_404(&user_id, &mut conn).await?;
|
let mut user = get_user_or_404(&user_id, &mut conn).await?;
|
||||||
|
|
||||||
nt.send_logout(&user, None).await;
|
nt.send_logout(&user, None, &mut conn).await;
|
||||||
|
|
||||||
if CONFIG.push_enabled() {
|
if CONFIG.push_enabled() {
|
||||||
for device in Device::find_push_devices_by_user(&user.uuid, &mut conn).await {
|
for device in Device::find_push_devices_by_user(&user.uuid, &mut conn).await {
|
||||||
match unregister_push_device(device.push_uuid).await {
|
match unregister_push_device(&device.push_uuid).await {
|
||||||
Ok(r) => r,
|
Ok(r) => r,
|
||||||
Err(e) => error!("Unable to unregister devices from Bitwarden server: {e}"),
|
Err(e) => error!("Unable to unregister devices from Bitwarden server: {e}"),
|
||||||
};
|
};
|
||||||
@@ -447,7 +447,7 @@ async fn disable_user(user_id: UserId, _token: AdminToken, mut conn: DbConn, nt:
|
|||||||
|
|
||||||
let save_result = user.save(&mut conn).await;
|
let save_result = user.save(&mut conn).await;
|
||||||
|
|
||||||
nt.send_logout(&user, None).await;
|
nt.send_logout(&user, None, &mut conn).await;
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
}
|
}
|
||||||
@@ -591,20 +591,14 @@ struct GitCommit {
|
|||||||
sha: String,
|
sha: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
|
||||||
struct TimeApi {
|
|
||||||
year: u16,
|
|
||||||
month: u8,
|
|
||||||
day: u8,
|
|
||||||
hour: u8,
|
|
||||||
minute: u8,
|
|
||||||
seconds: u8,
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn get_json_api<T: DeserializeOwned>(url: &str) -> Result<T, Error> {
|
async fn get_json_api<T: DeserializeOwned>(url: &str) -> Result<T, Error> {
|
||||||
Ok(make_http_request(Method::GET, url)?.send().await?.error_for_status()?.json::<T>().await?)
|
Ok(make_http_request(Method::GET, url)?.send().await?.error_for_status()?.json::<T>().await?)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn get_text_api(url: &str) -> Result<String, Error> {
|
||||||
|
Ok(make_http_request(Method::GET, url)?.send().await?.error_for_status()?.text().await?)
|
||||||
|
}
|
||||||
|
|
||||||
async fn has_http_access() -> bool {
|
async fn has_http_access() -> bool {
|
||||||
let Ok(req) = make_http_request(Method::HEAD, "https://github.com/dani-garcia/vaultwarden") else {
|
let Ok(req) = make_http_request(Method::HEAD, "https://github.com/dani-garcia/vaultwarden") else {
|
||||||
return false;
|
return false;
|
||||||
@@ -616,9 +610,10 @@ async fn has_http_access() -> bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
use cached::proc_macro::cached;
|
use cached::proc_macro::cached;
|
||||||
/// Cache this function to prevent API call rate limit. Github only allows 60 requests per hour, and we use 3 here already.
|
/// Cache this function to prevent API call rate limit. Github only allows 60 requests per hour, and we use 3 here already
|
||||||
/// It will cache this function for 300 seconds (5 minutes) which should prevent the exhaustion of the rate limit.
|
/// It will cache this function for 600 seconds (10 minutes) which should prevent the exhaustion of the rate limit
|
||||||
#[cached(time = 300, sync_writes = "default")]
|
/// Any cache will be lost if Vaultwarden is restarted
|
||||||
|
#[cached(time = 600, sync_writes = "default")]
|
||||||
async fn get_release_info(has_http_access: bool, running_within_container: bool) -> (String, String, String) {
|
async fn get_release_info(has_http_access: bool, running_within_container: bool) -> (String, String, String) {
|
||||||
// If the HTTP Check failed, do not even attempt to check for new versions since we were not able to connect with github.com anyway.
|
// If the HTTP Check failed, do not even attempt to check for new versions since we were not able to connect with github.com anyway.
|
||||||
if has_http_access {
|
if has_http_access {
|
||||||
@@ -636,7 +631,7 @@ async fn get_release_info(has_http_access: bool, running_within_container: bool)
|
|||||||
}
|
}
|
||||||
_ => "-".to_string(),
|
_ => "-".to_string(),
|
||||||
},
|
},
|
||||||
// Do not fetch the web-vault version when running within a container.
|
// Do not fetch the web-vault version when running within a container
|
||||||
// The web-vault version is embedded within the container it self, and should not be updated manually
|
// The web-vault version is embedded within the container it self, and should not be updated manually
|
||||||
if running_within_container {
|
if running_within_container {
|
||||||
"-".to_string()
|
"-".to_string()
|
||||||
@@ -658,17 +653,18 @@ async fn get_release_info(has_http_access: bool, running_within_container: bool)
|
|||||||
|
|
||||||
async fn get_ntp_time(has_http_access: bool) -> String {
|
async fn get_ntp_time(has_http_access: bool) -> String {
|
||||||
if has_http_access {
|
if has_http_access {
|
||||||
if let Ok(ntp_time) = get_json_api::<TimeApi>("https://www.timeapi.io/api/Time/current/zone?timeZone=UTC").await
|
if let Ok(cf_trace) = get_text_api("https://cloudflare.com/cdn-cgi/trace").await {
|
||||||
{
|
for line in cf_trace.lines() {
|
||||||
return format!(
|
if let Some((key, value)) = line.split_once('=') {
|
||||||
"{year}-{month:02}-{day:02} {hour:02}:{minute:02}:{seconds:02} UTC",
|
if key == "ts" {
|
||||||
year = ntp_time.year,
|
let ts = value.split_once('.').map_or(value, |(s, _)| s);
|
||||||
month = ntp_time.month,
|
if let Ok(dt) = chrono::DateTime::parse_from_str(ts, "%s") {
|
||||||
day = ntp_time.day,
|
return dt.format("%Y-%m-%d %H:%M:%S UTC").to_string();
|
||||||
hour = ntp_time.hour,
|
}
|
||||||
minute = ntp_time.minute,
|
break;
|
||||||
seconds = ntp_time.seconds
|
}
|
||||||
);
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String::from("Unable to fetch NTP time.")
|
String::from("Unable to fetch NTP time.")
|
||||||
@@ -701,6 +697,16 @@ async fn diagnostics(_token: AdminToken, ip_header: IpHeader, mut conn: DbConn)
|
|||||||
// Get current running versions
|
// Get current running versions
|
||||||
let web_vault_version = get_web_vault_version();
|
let web_vault_version = get_web_vault_version();
|
||||||
|
|
||||||
|
// Check if the running version is newer than the latest stable released version
|
||||||
|
let web_vault_pre_release = if let Ok(web_ver_match) = semver::VersionReq::parse(&format!(">{latest_web_build}")) {
|
||||||
|
web_ver_match.matches(
|
||||||
|
&semver::Version::parse(&web_vault_version).unwrap_or_else(|_| semver::Version::parse("2025.1.1").unwrap()),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
error!("Unable to parse latest_web_build: '{latest_web_build}'");
|
||||||
|
false
|
||||||
|
};
|
||||||
|
|
||||||
let diagnostics_json = json!({
|
let diagnostics_json = json!({
|
||||||
"dns_resolved": dns_resolved,
|
"dns_resolved": dns_resolved,
|
||||||
"current_release": VERSION,
|
"current_release": VERSION,
|
||||||
@@ -709,6 +715,7 @@ async fn diagnostics(_token: AdminToken, ip_header: IpHeader, mut conn: DbConn)
|
|||||||
"web_vault_enabled": &CONFIG.web_vault_enabled(),
|
"web_vault_enabled": &CONFIG.web_vault_enabled(),
|
||||||
"web_vault_version": web_vault_version,
|
"web_vault_version": web_vault_version,
|
||||||
"latest_web_build": latest_web_build,
|
"latest_web_build": latest_web_build,
|
||||||
|
"web_vault_pre_release": web_vault_pre_release,
|
||||||
"running_within_container": running_within_container,
|
"running_within_container": running_within_container,
|
||||||
"container_base_image": if running_within_container { container_base_image() } else { "Not applicable" },
|
"container_base_image": if running_within_container { container_base_image() } else { "Not applicable" },
|
||||||
"has_http_access": has_http_access,
|
"has_http_access": has_http_access,
|
||||||
@@ -724,6 +731,7 @@ async fn diagnostics(_token: AdminToken, ip_header: IpHeader, mut conn: DbConn)
|
|||||||
"overrides": &CONFIG.get_overrides().join(", "),
|
"overrides": &CONFIG.get_overrides().join(", "),
|
||||||
"host_arch": env::consts::ARCH,
|
"host_arch": env::consts::ARCH,
|
||||||
"host_os": env::consts::OS,
|
"host_os": env::consts::OS,
|
||||||
|
"tz_env": env::var("TZ").unwrap_or_default(),
|
||||||
"server_time_local": Local::now().format("%Y-%m-%d %H:%M:%S %Z").to_string(),
|
"server_time_local": Local::now().format("%Y-%m-%d %H:%M:%S %Z").to_string(),
|
||||||
"server_time": Utc::now().format("%Y-%m-%d %H:%M:%S UTC").to_string(), // Run the server date/time check as late as possible to minimize the time difference
|
"server_time": Utc::now().format("%Y-%m-%d %H:%M:%S UTC").to_string(), // Run the server date/time check as late as possible to minimize the time difference
|
||||||
"ntp_time": get_ntp_time(has_http_access).await, // Run the ntp check as late as possible to minimize the time difference
|
"ntp_time": get_ntp_time(has_http_access).await, // Run the ntp check as late as possible to minimize the time difference
|
||||||
|
|||||||
+35
-30
@@ -128,9 +128,8 @@ async fn is_email_2fa_required(member_id: Option<MembershipId>, conn: &mut DbCon
|
|||||||
if CONFIG.email_2fa_enforce_on_verified_invite() {
|
if CONFIG.email_2fa_enforce_on_verified_invite() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if member_id.is_some() {
|
if let Some(member_id) = member_id {
|
||||||
return OrgPolicy::is_enabled_for_member(&member_id.unwrap(), OrgPolicyType::TwoFactorAuthentication, conn)
|
return OrgPolicy::is_enabled_for_member(&member_id, OrgPolicyType::TwoFactorAuthentication, conn).await;
|
||||||
.await;
|
|
||||||
}
|
}
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
@@ -337,7 +336,6 @@ async fn profile(headers: Headers, mut conn: DbConn) -> Json<Value> {
|
|||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
struct ProfileData {
|
struct ProfileData {
|
||||||
// culture: String, // Ignored, always use en-US
|
// culture: String, // Ignored, always use en-US
|
||||||
// masterPasswordHint: Option<String>, // Ignored, has been moved to ChangePassData
|
|
||||||
name: String,
|
name: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -463,7 +461,7 @@ async fn post_password(data: Json<ChangePassData>, headers: Headers, mut conn: D
|
|||||||
// Prevent logging out the client where the user requested this endpoint from.
|
// Prevent logging out the client where the user requested this endpoint from.
|
||||||
// If you do logout the user it will causes issues at the client side.
|
// If you do logout the user it will causes issues at the client side.
|
||||||
// Adding the device uuid will prevent this.
|
// Adding the device uuid will prevent this.
|
||||||
nt.send_logout(&user, Some(headers.device.uuid.clone())).await;
|
nt.send_logout(&user, Some(headers.device.uuid.clone()), &mut conn).await;
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
}
|
}
|
||||||
@@ -523,7 +521,7 @@ async fn post_kdf(data: Json<ChangeKdfData>, headers: Headers, mut conn: DbConn,
|
|||||||
user.set_password(&data.new_master_password_hash, Some(data.key), true, None);
|
user.set_password(&data.new_master_password_hash, Some(data.key), true, None);
|
||||||
let save_result = user.save(&mut conn).await;
|
let save_result = user.save(&mut conn).await;
|
||||||
|
|
||||||
nt.send_logout(&user, Some(headers.device.uuid.clone())).await;
|
nt.send_logout(&user, Some(headers.device.uuid.clone()), &mut conn).await;
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
}
|
}
|
||||||
@@ -735,7 +733,7 @@ async fn post_rotatekey(data: Json<KeyData>, headers: Headers, mut conn: DbConn,
|
|||||||
// Prevent logging out the client where the user requested this endpoint from.
|
// Prevent logging out the client where the user requested this endpoint from.
|
||||||
// If you do logout the user it will causes issues at the client side.
|
// If you do logout the user it will causes issues at the client side.
|
||||||
// Adding the device uuid will prevent this.
|
// Adding the device uuid will prevent this.
|
||||||
nt.send_logout(&user, Some(headers.device.uuid.clone())).await;
|
nt.send_logout(&user, Some(headers.device.uuid.clone()), &mut conn).await;
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
}
|
}
|
||||||
@@ -751,7 +749,7 @@ async fn post_sstamp(data: Json<PasswordOrOtpData>, headers: Headers, mut conn:
|
|||||||
user.reset_security_stamp();
|
user.reset_security_stamp();
|
||||||
let save_result = user.save(&mut conn).await;
|
let save_result = user.save(&mut conn).await;
|
||||||
|
|
||||||
nt.send_logout(&user, None).await;
|
nt.send_logout(&user, None, &mut conn).await;
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
}
|
}
|
||||||
@@ -777,6 +775,11 @@ async fn post_email_token(data: Json<EmailTokenData>, headers: Headers, mut conn
|
|||||||
}
|
}
|
||||||
|
|
||||||
if User::find_by_mail(&data.new_email, &mut conn).await.is_some() {
|
if User::find_by_mail(&data.new_email, &mut conn).await.is_some() {
|
||||||
|
if CONFIG.mail_enabled() {
|
||||||
|
if let Err(e) = mail::send_change_email_existing(&data.new_email, &user.email).await {
|
||||||
|
error!("Error sending change-email-existing email: {e:#?}");
|
||||||
|
}
|
||||||
|
}
|
||||||
err!("Email already in use");
|
err!("Email already in use");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -859,7 +862,7 @@ async fn post_email(data: Json<ChangeEmailData>, headers: Headers, mut conn: DbC
|
|||||||
|
|
||||||
let save_result = user.save(&mut conn).await;
|
let save_result = user.save(&mut conn).await;
|
||||||
|
|
||||||
nt.send_logout(&user, None).await;
|
nt.send_logout(&user, None, &mut conn).await;
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
}
|
}
|
||||||
@@ -1057,7 +1060,7 @@ pub async fn _prelogin(data: Json<PreloginData>, mut conn: DbConn) -> Json<Value
|
|||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/master/src/Api/Models/Request/Accounts/SecretVerificationRequestModel.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Auth/Models/Request/Accounts/SecretVerificationRequestModel.cs
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
struct SecretVerificationRequest {
|
struct SecretVerificationRequest {
|
||||||
@@ -1198,19 +1201,14 @@ async fn put_device_token(
|
|||||||
err!(format!("Error: device {device_id} should be present before a token can be assigned"))
|
err!(format!("Error: device {device_id} should be present before a token can be assigned"))
|
||||||
};
|
};
|
||||||
|
|
||||||
// if the device already has been registered
|
// Check if the new token is the same as the registered token
|
||||||
if device.is_registered() {
|
// Although upstream seems to always register a device on login, we do not.
|
||||||
// check if the new token is the same as the registered token
|
// Unless this causes issues, lets keep it this way, else we might need to also register on every login.
|
||||||
if device.push_token.is_some() && device.push_token.unwrap() == token.clone() {
|
if device.push_token.as_ref() == Some(&token) {
|
||||||
debug!("Device {device_id} is already registered and token is the same");
|
debug!("Device {device_id} for user {} is already registered and token is identical", headers.user.uuid);
|
||||||
return Ok(());
|
return Ok(());
|
||||||
} else {
|
|
||||||
// Try to unregister already registered device
|
|
||||||
unregister_push_device(device.push_uuid).await.ok();
|
|
||||||
}
|
|
||||||
// clear the push_uuid
|
|
||||||
device.push_uuid = None;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
device.push_token = Some(token);
|
device.push_token = Some(token);
|
||||||
if let Err(e) = device.save(&mut conn).await {
|
if let Err(e) = device.save(&mut conn).await {
|
||||||
err!(format!("An error occurred while trying to save the device push token: {e}"));
|
err!(format!("An error occurred while trying to save the device push token: {e}"));
|
||||||
@@ -1224,16 +1222,19 @@ async fn put_device_token(
|
|||||||
#[put("/devices/identifier/<device_id>/clear-token")]
|
#[put("/devices/identifier/<device_id>/clear-token")]
|
||||||
async fn put_clear_device_token(device_id: DeviceId, mut conn: DbConn) -> EmptyResult {
|
async fn put_clear_device_token(device_id: DeviceId, mut conn: DbConn) -> EmptyResult {
|
||||||
// This only clears push token
|
// This only clears push token
|
||||||
// https://github.com/bitwarden/core/blob/master/src/Api/Controllers/DevicesController.cs#L109
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Controllers/DevicesController.cs#L215
|
||||||
// https://github.com/bitwarden/core/blob/master/src/Core/Services/Implementations/DeviceService.cs#L37
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/Services/Implementations/DeviceService.cs#L37
|
||||||
// This is somehow not implemented in any app, added it in case it is required
|
// This is somehow not implemented in any app, added it in case it is required
|
||||||
|
// 2025: Also, it looks like it only clears the first found device upstream, which is probably faulty.
|
||||||
|
// This because currently multiple accounts could be on the same device/app and that would cause issues.
|
||||||
|
// Vaultwarden removes the push-token for all devices, but this probably means we should also unregister all these devices.
|
||||||
if !CONFIG.push_enabled() {
|
if !CONFIG.push_enabled() {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(device) = Device::find_by_uuid(&device_id, &mut conn).await {
|
if let Some(device) = Device::find_by_uuid(&device_id, &mut conn).await {
|
||||||
Device::clear_push_token_by_uuid(&device_id, &mut conn).await?;
|
Device::clear_push_token_by_uuid(&device_id, &mut conn).await?;
|
||||||
unregister_push_device(device.push_uuid).await?;
|
unregister_push_device(&device.push_uuid).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -1271,10 +1272,10 @@ async fn post_auth_request(
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Validate device uuid and type
|
// Validate device uuid and type
|
||||||
match Device::find_by_uuid_and_user(&data.device_identifier, &user.uuid, &mut conn).await {
|
let device = match Device::find_by_uuid_and_user(&data.device_identifier, &user.uuid, &mut conn).await {
|
||||||
Some(device) if device.atype == client_headers.device_type => {}
|
Some(device) if device.atype == client_headers.device_type => device,
|
||||||
_ => err!("AuthRequest doesn't exist", "Device verification failed"),
|
_ => err!("AuthRequest doesn't exist", "Device verification failed"),
|
||||||
}
|
};
|
||||||
|
|
||||||
let mut auth_request = AuthRequest::new(
|
let mut auth_request = AuthRequest::new(
|
||||||
user.uuid.clone(),
|
user.uuid.clone(),
|
||||||
@@ -1286,7 +1287,7 @@ async fn post_auth_request(
|
|||||||
);
|
);
|
||||||
auth_request.save(&mut conn).await?;
|
auth_request.save(&mut conn).await?;
|
||||||
|
|
||||||
nt.send_auth_request(&user.uuid, &auth_request.uuid, &data.device_identifier, &mut conn).await;
|
nt.send_auth_request(&user.uuid, &auth_request.uuid, &device, &mut conn).await;
|
||||||
|
|
||||||
log_user_event(
|
log_user_event(
|
||||||
EventType::UserRequestedDeviceApproval as i32,
|
EventType::UserRequestedDeviceApproval as i32,
|
||||||
@@ -1361,6 +1362,10 @@ async fn put_auth_request(
|
|||||||
err!("AuthRequest doesn't exist", "Record not found or user uuid does not match")
|
err!("AuthRequest doesn't exist", "Record not found or user uuid does not match")
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if headers.device.uuid != data.device_identifier {
|
||||||
|
err!("AuthRequest doesn't exist", "Device verification failed")
|
||||||
|
}
|
||||||
|
|
||||||
if auth_request.approved.is_some() {
|
if auth_request.approved.is_some() {
|
||||||
err!("An authentication request with the same device already exists")
|
err!("An authentication request with the same device already exists")
|
||||||
}
|
}
|
||||||
@@ -1377,7 +1382,7 @@ async fn put_auth_request(
|
|||||||
auth_request.save(&mut conn).await?;
|
auth_request.save(&mut conn).await?;
|
||||||
|
|
||||||
ant.send_auth_response(&auth_request.user_uuid, &auth_request.uuid).await;
|
ant.send_auth_response(&auth_request.user_uuid, &auth_request.uuid).await;
|
||||||
nt.send_auth_response(&auth_request.user_uuid, &auth_request.uuid, &data.device_identifier, &mut conn).await;
|
nt.send_auth_response(&auth_request.user_uuid, &auth_request.uuid, &headers.device, &mut conn).await;
|
||||||
|
|
||||||
log_user_event(
|
log_user_event(
|
||||||
EventType::OrganizationUserApprovedAuthRequest as i32,
|
EventType::OrganizationUserApprovedAuthRequest as i32,
|
||||||
|
|||||||
+13
-13
@@ -535,7 +535,7 @@ pub async fn update_cipher_from_data(
|
|||||||
ut,
|
ut,
|
||||||
cipher,
|
cipher,
|
||||||
&cipher.update_users_revision(conn).await,
|
&cipher.update_users_revision(conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
shared_to_collections,
|
shared_to_collections,
|
||||||
conn,
|
conn,
|
||||||
)
|
)
|
||||||
@@ -612,7 +612,7 @@ async fn post_ciphers_import(
|
|||||||
|
|
||||||
let mut user = headers.user;
|
let mut user = headers.user;
|
||||||
user.update_revision(&mut conn).await?;
|
user.update_revision(&mut conn).await?;
|
||||||
nt.send_user_update(UpdateType::SyncVault, &user).await;
|
nt.send_user_update(UpdateType::SyncVault, &user, &headers.device.push_uuid, &mut conn).await;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -808,7 +808,7 @@ async fn post_collections_update(
|
|||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(&mut conn).await,
|
&cipher.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
Some(Vec::from_iter(posted_collections)),
|
Some(Vec::from_iter(posted_collections)),
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
@@ -885,7 +885,7 @@ async fn post_collections_admin(
|
|||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(&mut conn).await,
|
&cipher.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
Some(Vec::from_iter(posted_collections)),
|
Some(Vec::from_iter(posted_collections)),
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
@@ -1281,7 +1281,7 @@ async fn save_attachment(
|
|||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(&mut conn).await,
|
&cipher.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
None,
|
None,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
@@ -1581,8 +1581,8 @@ async fn move_cipher_selected(
|
|||||||
nt.send_cipher_update(
|
nt.send_cipher_update(
|
||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&[user_id.clone()],
|
std::slice::from_ref(&user_id),
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
None,
|
None,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
@@ -1629,7 +1629,7 @@ async fn delete_all(
|
|||||||
Some(member) => {
|
Some(member) => {
|
||||||
if member.atype == MembershipType::Owner {
|
if member.atype == MembershipType::Owner {
|
||||||
Cipher::delete_all_by_organization(&org_data.org_id, &mut conn).await?;
|
Cipher::delete_all_by_organization(&org_data.org_id, &mut conn).await?;
|
||||||
nt.send_user_update(UpdateType::SyncVault, &user).await;
|
nt.send_user_update(UpdateType::SyncVault, &user, &headers.device.push_uuid, &mut conn).await;
|
||||||
|
|
||||||
log_event(
|
log_event(
|
||||||
EventType::OrganizationPurgedVault as i32,
|
EventType::OrganizationPurgedVault as i32,
|
||||||
@@ -1662,7 +1662,7 @@ async fn delete_all(
|
|||||||
}
|
}
|
||||||
|
|
||||||
user.update_revision(&mut conn).await?;
|
user.update_revision(&mut conn).await?;
|
||||||
nt.send_user_update(UpdateType::SyncVault, &user).await;
|
nt.send_user_update(UpdateType::SyncVault, &user, &headers.device.push_uuid, &mut conn).await;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -1691,7 +1691,7 @@ async fn _delete_cipher_by_uuid(
|
|||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(conn).await,
|
&cipher.update_users_revision(conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
None,
|
None,
|
||||||
conn,
|
conn,
|
||||||
)
|
)
|
||||||
@@ -1702,7 +1702,7 @@ async fn _delete_cipher_by_uuid(
|
|||||||
UpdateType::SyncCipherDelete,
|
UpdateType::SyncCipherDelete,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(conn).await,
|
&cipher.update_users_revision(conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
None,
|
None,
|
||||||
conn,
|
conn,
|
||||||
)
|
)
|
||||||
@@ -1767,7 +1767,7 @@ async fn _restore_cipher_by_uuid(
|
|||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(conn).await,
|
&cipher.update_users_revision(conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
None,
|
None,
|
||||||
conn,
|
conn,
|
||||||
)
|
)
|
||||||
@@ -1841,7 +1841,7 @@ async fn _delete_cipher_attachment_by_id(
|
|||||||
UpdateType::SyncCipherUpdate,
|
UpdateType::SyncCipherUpdate,
|
||||||
&cipher,
|
&cipher,
|
||||||
&cipher.update_users_revision(conn).await,
|
&cipher.update_users_revision(conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
None,
|
None,
|
||||||
conn,
|
conn,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ struct EventRange {
|
|||||||
continuation_token: Option<String>,
|
continuation_token: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Upstream: https://github.com/bitwarden/server/blob/9ecf69d9cabce732cf2c57976dd9afa5728578fb/src/Api/Controllers/EventsController.cs#LL84C35-L84C41
|
// Upstream: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/AdminConsole/Controllers/EventsController.cs#L87
|
||||||
#[get("/organizations/<org_id>/events?<data..>")]
|
#[get("/organizations/<org_id>/events?<data..>")]
|
||||||
async fn get_org_events(
|
async fn get_org_events(
|
||||||
org_id: OrganizationId,
|
org_id: OrganizationId,
|
||||||
@@ -169,8 +169,8 @@ struct EventCollection {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Upstream:
|
// Upstream:
|
||||||
// https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Events/Controllers/CollectController.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Events/Controllers/CollectController.cs
|
||||||
// https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Core/Services/Implementations/EventService.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Services/Implementations/EventService.cs
|
||||||
#[post("/collect", format = "application/json", data = "<data>")]
|
#[post("/collect", format = "application/json", data = "<data>")]
|
||||||
async fn post_events_collect(data: Json<Vec<EventCollection>>, headers: Headers, mut conn: DbConn) -> EmptyResult {
|
async fn post_events_collect(data: Json<Vec<EventCollection>>, headers: Headers, mut conn: DbConn) -> EmptyResult {
|
||||||
if !CONFIG.org_events_enabled() {
|
if !CONFIG.org_events_enabled() {
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ async fn post_folders(data: Json<FolderData>, headers: Headers, mut conn: DbConn
|
|||||||
let mut folder = Folder::new(headers.user.uuid, data.name);
|
let mut folder = Folder::new(headers.user.uuid, data.name);
|
||||||
|
|
||||||
folder.save(&mut conn).await?;
|
folder.save(&mut conn).await?;
|
||||||
nt.send_folder_update(UpdateType::SyncFolderCreate, &folder, &headers.device.uuid, &mut conn).await;
|
nt.send_folder_update(UpdateType::SyncFolderCreate, &folder, &headers.device, &mut conn).await;
|
||||||
|
|
||||||
Ok(Json(folder.to_json()))
|
Ok(Json(folder.to_json()))
|
||||||
}
|
}
|
||||||
@@ -78,7 +78,7 @@ async fn put_folder(
|
|||||||
folder.name = data.name;
|
folder.name = data.name;
|
||||||
|
|
||||||
folder.save(&mut conn).await?;
|
folder.save(&mut conn).await?;
|
||||||
nt.send_folder_update(UpdateType::SyncFolderUpdate, &folder, &headers.device.uuid, &mut conn).await;
|
nt.send_folder_update(UpdateType::SyncFolderUpdate, &folder, &headers.device, &mut conn).await;
|
||||||
|
|
||||||
Ok(Json(folder.to_json()))
|
Ok(Json(folder.to_json()))
|
||||||
}
|
}
|
||||||
@@ -97,6 +97,6 @@ async fn delete_folder(folder_id: FolderId, headers: Headers, mut conn: DbConn,
|
|||||||
// Delete the actual folder entry
|
// Delete the actual folder entry
|
||||||
folder.delete(&mut conn).await?;
|
folder.delete(&mut conn).await?;
|
||||||
|
|
||||||
nt.send_folder_update(UpdateType::SyncFolderDelete, &folder, &headers.device.uuid, &mut conn).await;
|
nt.send_folder_update(UpdateType::SyncFolderDelete, &folder, &headers.device, &mut conn).await;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|||||||
+14
-6
@@ -124,7 +124,7 @@ async fn post_eq_domains(
|
|||||||
|
|
||||||
user.save(&mut conn).await?;
|
user.save(&mut conn).await?;
|
||||||
|
|
||||||
nt.send_user_update(UpdateType::SyncSettings, &user).await;
|
nt.send_user_update(UpdateType::SyncSettings, &user, &headers.device.push_uuid, &mut conn).await;
|
||||||
|
|
||||||
Ok(Json(json!({})))
|
Ok(Json(json!({})))
|
||||||
}
|
}
|
||||||
@@ -199,12 +199,14 @@ fn get_api_webauthn(_headers: Headers) -> Json<Value> {
|
|||||||
#[get("/config")]
|
#[get("/config")]
|
||||||
fn config() -> Json<Value> {
|
fn config() -> Json<Value> {
|
||||||
let domain = crate::CONFIG.domain();
|
let domain = crate::CONFIG.domain();
|
||||||
|
// Official available feature flags can be found here:
|
||||||
|
// Server (v2025.5.0): https://github.com/bitwarden/server/blob/4a7db112a0952c6df8bacf36c317e9c4e58c3651/src/Core/Constants.cs#L102
|
||||||
|
// Client (v2025.5.0): https://github.com/bitwarden/clients/blob/9df8a3cc50ed45f52513e62c23fcc8a4b745f078/libs/common/src/enums/feature-flag.enum.ts#L10
|
||||||
|
// Android (v2025.4.0): https://github.com/bitwarden/android/blob/bee09de972c3870de0d54a0067996be473ec55c7/app/src/main/java/com/x8bit/bitwarden/data/platform/manager/model/FlagKey.kt#L27
|
||||||
|
// iOS (v2025.4.0): https://github.com/bitwarden/ios/blob/956e05db67344c912e3a1b8cb2609165d67da1c9/BitwardenShared/Core/Platform/Models/Enum/FeatureFlag.swift#L7
|
||||||
let mut feature_states =
|
let mut feature_states =
|
||||||
parse_experimental_client_feature_flags(&crate::CONFIG.experimental_client_feature_flags());
|
parse_experimental_client_feature_flags(&crate::CONFIG.experimental_client_feature_flags());
|
||||||
// Force the new key rotation feature
|
feature_states.insert("duo-redirect".to_string(), true);
|
||||||
feature_states.insert("key-rotation-improvements".to_string(), true);
|
|
||||||
feature_states.insert("flexible-collections-v-1".to_string(), false);
|
|
||||||
|
|
||||||
feature_states.insert("email-verification".to_string(), true);
|
feature_states.insert("email-verification".to_string(), true);
|
||||||
feature_states.insert("unauth-ui-refresh".to_string(), true);
|
feature_states.insert("unauth-ui-refresh".to_string(), true);
|
||||||
|
|
||||||
@@ -214,7 +216,7 @@ fn config() -> Json<Value> {
|
|||||||
// We should make sure that we keep this updated when we support the new server features
|
// We should make sure that we keep this updated when we support the new server features
|
||||||
// Version history:
|
// Version history:
|
||||||
// - Individual cipher key encryption: 2024.2.0
|
// - Individual cipher key encryption: 2024.2.0
|
||||||
"version": "2025.1.0",
|
"version": "2025.4.0",
|
||||||
"gitHash": option_env!("GIT_REV"),
|
"gitHash": option_env!("GIT_REV"),
|
||||||
"server": {
|
"server": {
|
||||||
"name": "Vaultwarden",
|
"name": "Vaultwarden",
|
||||||
@@ -229,6 +231,12 @@ fn config() -> Json<Value> {
|
|||||||
"identity": format!("{domain}/identity"),
|
"identity": format!("{domain}/identity"),
|
||||||
"notifications": format!("{domain}/notifications"),
|
"notifications": format!("{domain}/notifications"),
|
||||||
"sso": "",
|
"sso": "",
|
||||||
|
"cloudRegion": null,
|
||||||
|
},
|
||||||
|
// Bitwarden uses this for the self-hosted servers to indicate the default push technology
|
||||||
|
"push": {
|
||||||
|
"pushTechnology": 0,
|
||||||
|
"vapidPublicKey": null
|
||||||
},
|
},
|
||||||
"featureStates": feature_states,
|
"featureStates": feature_states,
|
||||||
"object": "config",
|
"object": "config",
|
||||||
|
|||||||
+132
-34
@@ -374,6 +374,21 @@ async fn get_org_collections_details(
|
|||||||
|| (CONFIG.org_groups_enabled()
|
|| (CONFIG.org_groups_enabled()
|
||||||
&& GroupUser::has_full_access_by_member(&org_id, &member.uuid, &mut conn).await);
|
&& GroupUser::has_full_access_by_member(&org_id, &member.uuid, &mut conn).await);
|
||||||
|
|
||||||
|
// Get all admins, owners and managers who can manage/access all
|
||||||
|
// Those are currently not listed in the col_users but need to be listed too.
|
||||||
|
let manage_all_members: Vec<Value> = Membership::find_confirmed_and_manage_all_by_org(&org_id, &mut conn)
|
||||||
|
.await
|
||||||
|
.into_iter()
|
||||||
|
.map(|member| {
|
||||||
|
json!({
|
||||||
|
"id": member.uuid,
|
||||||
|
"readOnly": false,
|
||||||
|
"hidePasswords": false,
|
||||||
|
"manage": true,
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
for col in Collection::find_by_organization(&org_id, &mut conn).await {
|
for col in Collection::find_by_organization(&org_id, &mut conn).await {
|
||||||
// check whether the current user has access to the given collection
|
// check whether the current user has access to the given collection
|
||||||
let assigned = has_full_access_to_org
|
let assigned = has_full_access_to_org
|
||||||
@@ -382,7 +397,7 @@ async fn get_org_collections_details(
|
|||||||
&& GroupUser::has_access_to_collection_by_member(&col.uuid, &member.uuid, &mut conn).await);
|
&& GroupUser::has_access_to_collection_by_member(&col.uuid, &member.uuid, &mut conn).await);
|
||||||
|
|
||||||
// get the users assigned directly to the given collection
|
// get the users assigned directly to the given collection
|
||||||
let users: Vec<Value> = col_users
|
let mut users: Vec<Value> = col_users
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|collection_member| collection_member.collection_uuid == col.uuid)
|
.filter(|collection_member| collection_member.collection_uuid == col.uuid)
|
||||||
.map(|collection_member| {
|
.map(|collection_member| {
|
||||||
@@ -391,6 +406,7 @@ async fn get_org_collections_details(
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
users.extend_from_slice(&manage_all_members);
|
||||||
|
|
||||||
// get the group details for the given collection
|
// get the group details for the given collection
|
||||||
let groups: Vec<Value> = if CONFIG.org_groups_enabled() {
|
let groups: Vec<Value> = if CONFIG.org_groups_enabled() {
|
||||||
@@ -681,6 +697,9 @@ async fn _delete_organization_collection(
|
|||||||
headers: &ManagerHeaders,
|
headers: &ManagerHeaders,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
let Some(collection) = Collection::find_by_uuid_and_org(col_id, org_id, conn).await else {
|
let Some(collection) = Collection::find_by_uuid_and_org(col_id, org_id, conn).await else {
|
||||||
err!("Collection not found", "Collection does not exist or does not belong to this organization")
|
err!("Collection not found", "Collection does not exist or does not belong to this organization")
|
||||||
};
|
};
|
||||||
@@ -893,7 +912,7 @@ struct OrgIdData {
|
|||||||
|
|
||||||
#[get("/ciphers/organization-details?<data..>")]
|
#[get("/ciphers/organization-details?<data..>")]
|
||||||
async fn get_org_details(data: OrgIdData, headers: OrgMemberHeaders, mut conn: DbConn) -> JsonResult {
|
async fn get_org_details(data: OrgIdData, headers: OrgMemberHeaders, mut conn: DbConn) -> JsonResult {
|
||||||
if data.organization_id != headers.org_id {
|
if data.organization_id != headers.membership.org_uuid {
|
||||||
err_code!("Resource not found.", "Organization id's do not match", rocket::http::Status::NotFound.code);
|
err_code!("Resource not found.", "Organization id's do not match", rocket::http::Status::NotFound.code);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1180,6 +1199,9 @@ async fn reinvite_member(
|
|||||||
headers: AdminHeaders,
|
headers: AdminHeaders,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
_reinvite_member(&org_id, &member_id, &headers.user.email, &mut conn).await
|
_reinvite_member(&org_id, &member_id, &headers.user.email, &mut conn).await
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1397,6 +1419,9 @@ async fn _confirm_invite(
|
|||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
nt: &Notify<'_>,
|
nt: &Notify<'_>,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
if key.is_empty() || member_id.is_empty() {
|
if key.is_empty() || member_id.is_empty() {
|
||||||
err!("Key or UserId is not set, unable to process request");
|
err!("Key or UserId is not set, unable to process request");
|
||||||
}
|
}
|
||||||
@@ -1460,7 +1485,7 @@ async fn _confirm_invite(
|
|||||||
let save_result = member_to_confirm.save(conn).await;
|
let save_result = member_to_confirm.save(conn).await;
|
||||||
|
|
||||||
if let Some(user) = User::find_by_uuid(&member_to_confirm.user_uuid, conn).await {
|
if let Some(user) = User::find_by_uuid(&member_to_confirm.user_uuid, conn).await {
|
||||||
nt.send_user_update(UpdateType::SyncOrgKeys, &user).await;
|
nt.send_user_update(UpdateType::SyncOrgKeys, &user, &headers.device.push_uuid, conn).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
save_result
|
save_result
|
||||||
@@ -1719,6 +1744,9 @@ async fn _delete_member(
|
|||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
nt: &Notify<'_>,
|
nt: &Notify<'_>,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
let Some(member_to_delete) = Membership::find_by_uuid_and_org(member_id, org_id, conn).await else {
|
let Some(member_to_delete) = Membership::find_by_uuid_and_org(member_id, org_id, conn).await else {
|
||||||
err!("User to delete isn't member of the organization")
|
err!("User to delete isn't member of the organization")
|
||||||
};
|
};
|
||||||
@@ -1747,7 +1775,7 @@ async fn _delete_member(
|
|||||||
.await;
|
.await;
|
||||||
|
|
||||||
if let Some(user) = User::find_by_uuid(&member_to_delete.user_uuid, conn).await {
|
if let Some(user) = User::find_by_uuid(&member_to_delete.user_uuid, conn).await {
|
||||||
nt.send_user_update(UpdateType::SyncOrgKeys, &user).await;
|
nt.send_user_update(UpdateType::SyncOrgKeys, &user, &headers.device.push_uuid, conn).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
member_to_delete.delete(conn).await
|
member_to_delete.delete(conn).await
|
||||||
@@ -1813,16 +1841,20 @@ struct RelationsData {
|
|||||||
value: usize,
|
value: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Tools/Controllers/ImportCiphersController.cs#L62
|
||||||
#[post("/ciphers/import-organization?<query..>", data = "<data>")]
|
#[post("/ciphers/import-organization?<query..>", data = "<data>")]
|
||||||
async fn post_org_import(
|
async fn post_org_import(
|
||||||
query: OrgIdData,
|
query: OrgIdData,
|
||||||
data: Json<ImportData>,
|
data: Json<ImportData>,
|
||||||
headers: AdminHeaders,
|
headers: OrgMemberHeaders,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
nt: Notify<'_>,
|
nt: Notify<'_>,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
let data: ImportData = data.into_inner();
|
|
||||||
let org_id = query.organization_id;
|
let org_id = query.organization_id;
|
||||||
|
if org_id != headers.membership.org_uuid {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
|
let data: ImportData = data.into_inner();
|
||||||
|
|
||||||
// Validate the import before continuing
|
// Validate the import before continuing
|
||||||
// Bitwarden does not process the import if there is one item invalid.
|
// Bitwarden does not process the import if there is one item invalid.
|
||||||
@@ -1835,8 +1867,20 @@ async fn post_org_import(
|
|||||||
let mut collections: Vec<CollectionId> = Vec::with_capacity(data.collections.len());
|
let mut collections: Vec<CollectionId> = Vec::with_capacity(data.collections.len());
|
||||||
for col in data.collections {
|
for col in data.collections {
|
||||||
let collection_uuid = if existing_collections.contains(&col.id) {
|
let collection_uuid = if existing_collections.contains(&col.id) {
|
||||||
col.id.unwrap()
|
let col_id = col.id.unwrap();
|
||||||
|
// When not an Owner or Admin, check if the member is allowed to access the collection.
|
||||||
|
if headers.membership.atype < MembershipType::Admin
|
||||||
|
&& !Collection::can_access_collection(&headers.membership, &col_id, &mut conn).await
|
||||||
|
{
|
||||||
|
err!(Compact, "The current user isn't allowed to manage this collection")
|
||||||
|
}
|
||||||
|
col_id
|
||||||
} else {
|
} else {
|
||||||
|
// We do not allow users or managers which can not manage all collections to create new collections
|
||||||
|
// If there is any collection other than an existing import collection, abort the import.
|
||||||
|
if headers.membership.atype <= MembershipType::Manager && !headers.membership.has_full_access() {
|
||||||
|
err!(Compact, "The current user isn't allowed to create new collections")
|
||||||
|
}
|
||||||
let new_collection = Collection::new(org_id.clone(), col.name, col.external_id);
|
let new_collection = Collection::new(org_id.clone(), col.name, col.external_id);
|
||||||
new_collection.save(&mut conn).await?;
|
new_collection.save(&mut conn).await?;
|
||||||
new_collection.uuid
|
new_collection.uuid
|
||||||
@@ -1859,7 +1903,17 @@ async fn post_org_import(
|
|||||||
// Always clear folder_id's via an organization import
|
// Always clear folder_id's via an organization import
|
||||||
cipher_data.folder_id = None;
|
cipher_data.folder_id = None;
|
||||||
let mut cipher = Cipher::new(cipher_data.r#type, cipher_data.name.clone());
|
let mut cipher = Cipher::new(cipher_data.r#type, cipher_data.name.clone());
|
||||||
update_cipher_from_data(&mut cipher, cipher_data, &headers, None, &mut conn, &nt, UpdateType::None).await.ok();
|
update_cipher_from_data(
|
||||||
|
&mut cipher,
|
||||||
|
cipher_data,
|
||||||
|
&headers,
|
||||||
|
Some(collections.clone()),
|
||||||
|
&mut conn,
|
||||||
|
&nt,
|
||||||
|
UpdateType::None,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.ok();
|
||||||
ciphers.push(cipher.uuid);
|
ciphers.push(cipher.uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1890,12 +1944,6 @@ struct BulkCollectionsData {
|
|||||||
async fn post_bulk_collections(data: Json<BulkCollectionsData>, headers: Headers, mut conn: DbConn) -> EmptyResult {
|
async fn post_bulk_collections(data: Json<BulkCollectionsData>, headers: Headers, mut conn: DbConn) -> EmptyResult {
|
||||||
let data: BulkCollectionsData = data.into_inner();
|
let data: BulkCollectionsData = data.into_inner();
|
||||||
|
|
||||||
// This feature does not seem to be active on all the clients
|
|
||||||
// To prevent future issues, add a check to block a call when this is set to true
|
|
||||||
if data.remove_collections {
|
|
||||||
err!("Bulk removing of collections is not yet implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get all the collection available to the user in one query
|
// Get all the collection available to the user in one query
|
||||||
// Also filter based upon the provided collections
|
// Also filter based upon the provided collections
|
||||||
let user_collections: HashMap<CollectionId, Collection> =
|
let user_collections: HashMap<CollectionId, Collection> =
|
||||||
@@ -1924,8 +1972,16 @@ async fn post_bulk_collections(data: Json<BulkCollectionsData>, headers: Headers
|
|||||||
// Do not abort the operation just ignore it, it could be a cipher was just deleted for example
|
// Do not abort the operation just ignore it, it could be a cipher was just deleted for example
|
||||||
if let Some(cipher) = Cipher::find_by_uuid_and_org(cipher_id, &data.organization_id, &mut conn).await {
|
if let Some(cipher) = Cipher::find_by_uuid_and_org(cipher_id, &data.organization_id, &mut conn).await {
|
||||||
if cipher.is_write_accessible_to_user(&headers.user.uuid, &mut conn).await {
|
if cipher.is_write_accessible_to_user(&headers.user.uuid, &mut conn).await {
|
||||||
for collection in &data.collection_ids {
|
// When selecting a specific collection from the left filter list, and use the bulk option, you can remove an item from that collection
|
||||||
CollectionCipher::save(&cipher.uuid, collection, &mut conn).await?;
|
// In these cases the client will call this endpoint twice, once for adding the new collections and a second for deleting.
|
||||||
|
if data.remove_collections {
|
||||||
|
for collection in &data.collection_ids {
|
||||||
|
CollectionCipher::delete(&cipher.uuid, collection, &mut conn).await?;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for collection in &data.collection_ids {
|
||||||
|
CollectionCipher::save(&cipher.uuid, collection, &mut conn).await?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -2402,6 +2458,9 @@ async fn _revoke_member(
|
|||||||
headers: &AdminHeaders,
|
headers: &AdminHeaders,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
match Membership::find_by_uuid_and_org(member_id, org_id, conn).await {
|
match Membership::find_by_uuid_and_org(member_id, org_id, conn).await {
|
||||||
Some(mut member) if member.status > MembershipStatus::Revoked as i32 => {
|
Some(mut member) if member.status > MembershipStatus::Revoked as i32 => {
|
||||||
if member.user_uuid == headers.user.uuid {
|
if member.user_uuid == headers.user.uuid {
|
||||||
@@ -2509,6 +2568,9 @@ async fn _restore_member(
|
|||||||
headers: &AdminHeaders,
|
headers: &AdminHeaders,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
match Membership::find_by_uuid_and_org(member_id, org_id, conn).await {
|
match Membership::find_by_uuid_and_org(member_id, org_id, conn).await {
|
||||||
Some(mut member) if member.status < MembershipStatus::Accepted as i32 => {
|
Some(mut member) if member.status < MembershipStatus::Accepted as i32 => {
|
||||||
if member.user_uuid == headers.user.uuid {
|
if member.user_uuid == headers.user.uuid {
|
||||||
@@ -2556,18 +2618,27 @@ async fn _restore_member(
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[get("/organizations/<org_id>/groups")]
|
async fn get_groups_data(
|
||||||
async fn get_groups(org_id: OrganizationId, headers: ManagerHeadersLoose, mut conn: DbConn) -> JsonResult {
|
details: bool,
|
||||||
|
org_id: OrganizationId,
|
||||||
|
headers: ManagerHeadersLoose,
|
||||||
|
mut conn: DbConn,
|
||||||
|
) -> JsonResult {
|
||||||
if org_id != headers.membership.org_uuid {
|
if org_id != headers.membership.org_uuid {
|
||||||
err!("Organization not found", "Organization id's do not match");
|
err!("Organization not found", "Organization id's do not match");
|
||||||
}
|
}
|
||||||
let groups: Vec<Value> = if CONFIG.org_groups_enabled() {
|
let groups: Vec<Value> = if CONFIG.org_groups_enabled() {
|
||||||
// Group::find_by_organization(&org_id, &mut conn).await.iter().map(Group::to_json).collect::<Value>()
|
|
||||||
let groups = Group::find_by_organization(&org_id, &mut conn).await;
|
let groups = Group::find_by_organization(&org_id, &mut conn).await;
|
||||||
let mut groups_json = Vec::with_capacity(groups.len());
|
let mut groups_json = Vec::with_capacity(groups.len());
|
||||||
|
|
||||||
for g in groups {
|
if details {
|
||||||
groups_json.push(g.to_json_details(&mut conn).await)
|
for g in groups {
|
||||||
|
groups_json.push(g.to_json_details(&mut conn).await)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for g in groups {
|
||||||
|
groups_json.push(g.to_json())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
groups_json
|
groups_json
|
||||||
} else {
|
} else {
|
||||||
@@ -2583,9 +2654,14 @@ async fn get_groups(org_id: OrganizationId, headers: ManagerHeadersLoose, mut co
|
|||||||
})))
|
})))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[get("/organizations/<org_id>/groups")]
|
||||||
|
async fn get_groups(org_id: OrganizationId, headers: ManagerHeadersLoose, conn: DbConn) -> JsonResult {
|
||||||
|
get_groups_data(false, org_id, headers, conn).await
|
||||||
|
}
|
||||||
|
|
||||||
#[get("/organizations/<org_id>/groups/details", rank = 1)]
|
#[get("/organizations/<org_id>/groups/details", rank = 1)]
|
||||||
async fn get_groups_details(org_id: OrganizationId, headers: ManagerHeadersLoose, conn: DbConn) -> JsonResult {
|
async fn get_groups_details(org_id: OrganizationId, headers: ManagerHeadersLoose, conn: DbConn) -> JsonResult {
|
||||||
get_groups(org_id, headers, conn).await
|
get_groups_data(true, org_id, headers, conn).await
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
@@ -2647,6 +2723,9 @@ async fn post_groups(
|
|||||||
data: Json<GroupRequest>,
|
data: Json<GroupRequest>,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> JsonResult {
|
) -> JsonResult {
|
||||||
|
if org_id != headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
if !CONFIG.org_groups_enabled() {
|
if !CONFIG.org_groups_enabled() {
|
||||||
err!("Group support is disabled");
|
err!("Group support is disabled");
|
||||||
}
|
}
|
||||||
@@ -2676,6 +2755,9 @@ async fn put_group(
|
|||||||
headers: AdminHeaders,
|
headers: AdminHeaders,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> JsonResult {
|
) -> JsonResult {
|
||||||
|
if org_id != headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
if !CONFIG.org_groups_enabled() {
|
if !CONFIG.org_groups_enabled() {
|
||||||
err!("Group support is disabled");
|
err!("Group support is disabled");
|
||||||
}
|
}
|
||||||
@@ -2740,7 +2822,8 @@ async fn add_update_group(
|
|||||||
"organizationId": group.organizations_uuid,
|
"organizationId": group.organizations_uuid,
|
||||||
"name": group.name,
|
"name": group.name,
|
||||||
"accessAll": group.access_all,
|
"accessAll": group.access_all,
|
||||||
"externalId": group.external_id
|
"externalId": group.external_id,
|
||||||
|
"object": "group"
|
||||||
})))
|
})))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2791,6 +2874,9 @@ async fn _delete_group(
|
|||||||
headers: &AdminHeaders,
|
headers: &AdminHeaders,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
if !CONFIG.org_groups_enabled() {
|
if !CONFIG.org_groups_enabled() {
|
||||||
err!("Group support is disabled");
|
err!("Group support is disabled");
|
||||||
}
|
}
|
||||||
@@ -2820,6 +2906,9 @@ async fn bulk_delete_groups(
|
|||||||
headers: AdminHeaders,
|
headers: AdminHeaders,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
if !CONFIG.org_groups_enabled() {
|
if !CONFIG.org_groups_enabled() {
|
||||||
err!("Group support is disabled");
|
err!("Group support is disabled");
|
||||||
}
|
}
|
||||||
@@ -2883,6 +2972,9 @@ async fn put_group_members(
|
|||||||
data: Json<Vec<MembershipId>>,
|
data: Json<Vec<MembershipId>>,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
|
if org_id != headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
if !CONFIG.org_groups_enabled() {
|
if !CONFIG.org_groups_enabled() {
|
||||||
err!("Group support is disabled");
|
err!("Group support is disabled");
|
||||||
}
|
}
|
||||||
@@ -3067,7 +3159,7 @@ async fn get_organization_public_key(
|
|||||||
headers: OrgMemberHeaders,
|
headers: OrgMemberHeaders,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> JsonResult {
|
) -> JsonResult {
|
||||||
if org_id != headers.org_id {
|
if org_id != headers.membership.org_uuid {
|
||||||
err!("Organization not found", "Organization id's do not match");
|
err!("Organization not found", "Organization id's do not match");
|
||||||
}
|
}
|
||||||
let Some(org) = Organization::find_by_uuid(&org_id, &mut conn).await else {
|
let Some(org) = Organization::find_by_uuid(&org_id, &mut conn).await else {
|
||||||
@@ -3081,7 +3173,7 @@ async fn get_organization_public_key(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Obsolete - Renamed to public-key (2023.8), left for backwards compatibility with older clients
|
// Obsolete - Renamed to public-key (2023.8), left for backwards compatibility with older clients
|
||||||
// https://github.com/bitwarden/server/blob/25dc0c9178e3e3584074bbef0d4be827b7c89415/src/Api/AdminConsole/Controllers/OrganizationsController.cs#L463-L468
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/AdminConsole/Controllers/OrganizationsController.cs#L487-L492
|
||||||
#[get("/organizations/<org_id>/keys")]
|
#[get("/organizations/<org_id>/keys")]
|
||||||
async fn get_organization_keys(org_id: OrganizationId, headers: OrgMemberHeaders, conn: DbConn) -> JsonResult {
|
async fn get_organization_keys(org_id: OrganizationId, headers: OrgMemberHeaders, conn: DbConn) -> JsonResult {
|
||||||
get_organization_public_key(org_id, headers, conn).await
|
get_organization_public_key(org_id, headers, conn).await
|
||||||
@@ -3132,7 +3224,7 @@ async fn put_reset_password(
|
|||||||
user.set_password(reset_request.new_master_password_hash.as_str(), Some(reset_request.key), true, None);
|
user.set_password(reset_request.new_master_password_hash.as_str(), Some(reset_request.key), true, None);
|
||||||
user.save(&mut conn).await?;
|
user.save(&mut conn).await?;
|
||||||
|
|
||||||
nt.send_logout(&user, None).await;
|
nt.send_logout(&user, None, &mut conn).await;
|
||||||
|
|
||||||
log_event(
|
log_event(
|
||||||
EventType::OrganizationUserAdminResetPassword as i32,
|
EventType::OrganizationUserAdminResetPassword as i32,
|
||||||
@@ -3172,16 +3264,16 @@ async fn get_reset_password_details(
|
|||||||
|
|
||||||
check_reset_password_applicable_and_permissions(&org_id, &member_id, &headers, &mut conn).await?;
|
check_reset_password_applicable_and_permissions(&org_id, &member_id, &headers, &mut conn).await?;
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/3b50ccb9f804efaacdc46bed5b60e5b28eddefcf/src/Api/Models/Response/Organizations/OrganizationUserResponseModel.cs#L111
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/AdminConsole/Models/Response/Organizations/OrganizationUserResponseModel.cs#L190
|
||||||
Ok(Json(json!({
|
Ok(Json(json!({
|
||||||
"object": "organizationUserResetPasswordDetails",
|
"object": "organizationUserResetPasswordDetails",
|
||||||
"kdf":user.client_kdf_type,
|
"organizationUserId": member_id,
|
||||||
"kdfIterations":user.client_kdf_iter,
|
"kdf": user.client_kdf_type,
|
||||||
"kdfMemory":user.client_kdf_memory,
|
"kdfIterations": user.client_kdf_iter,
|
||||||
"kdfParallelism":user.client_kdf_parallelism,
|
"kdfMemory": user.client_kdf_memory,
|
||||||
"resetPasswordKey":member.reset_password_key,
|
"kdfParallelism": user.client_kdf_parallelism,
|
||||||
"encryptedPrivateKey":org.private_key,
|
"resetPasswordKey": member.reset_password_key,
|
||||||
|
"encryptedPrivateKey": org.private_key,
|
||||||
})))
|
})))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3269,6 +3361,9 @@ async fn put_reset_password_enrollment(
|
|||||||
// NOTE: It seems clients can't handle uppercase-first keys!!
|
// NOTE: It seems clients can't handle uppercase-first keys!!
|
||||||
// We need to convert all keys so they have the first character to be a lowercase.
|
// We need to convert all keys so they have the first character to be a lowercase.
|
||||||
// Else the export will be just an empty JSON file.
|
// Else the export will be just an empty JSON file.
|
||||||
|
// We currently only support exports by members of the Admin or Owner status.
|
||||||
|
// Vaultwarden does not yet support exporting only managed collections!
|
||||||
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Tools/Controllers/OrganizationExportController.cs#L52
|
||||||
#[get("/organizations/<org_id>/export")]
|
#[get("/organizations/<org_id>/export")]
|
||||||
async fn get_org_export(org_id: OrganizationId, headers: AdminHeaders, mut conn: DbConn) -> JsonResult {
|
async fn get_org_export(org_id: OrganizationId, headers: AdminHeaders, mut conn: DbConn) -> JsonResult {
|
||||||
if org_id != headers.org_id {
|
if org_id != headers.org_id {
|
||||||
@@ -3288,6 +3383,9 @@ async fn _api_key(
|
|||||||
headers: AdminHeaders,
|
headers: AdminHeaders,
|
||||||
mut conn: DbConn,
|
mut conn: DbConn,
|
||||||
) -> JsonResult {
|
) -> JsonResult {
|
||||||
|
if org_id != &headers.org_id {
|
||||||
|
err!("Organization not found", "Organization id's do not match");
|
||||||
|
}
|
||||||
let data: PasswordOrOtpData = data.into_inner();
|
let data: PasswordOrOtpData = data.into_inner();
|
||||||
let user = headers.user;
|
let user = headers.user;
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ struct OrgImportData {
|
|||||||
#[post("/public/organization/import", data = "<data>")]
|
#[post("/public/organization/import", data = "<data>")]
|
||||||
async fn ldap_import(data: Json<OrgImportData>, token: PublicToken, mut conn: DbConn) -> EmptyResult {
|
async fn ldap_import(data: Json<OrgImportData>, token: PublicToken, mut conn: DbConn) -> EmptyResult {
|
||||||
// Most of the logic for this function can be found here
|
// Most of the logic for this function can be found here
|
||||||
// https://github.com/bitwarden/server/blob/fd892b2ff4547648a276734fb2b14a8abae2c6f5/src/Core/Services/Implementations/OrganizationService.cs#L1797
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Services/Implementations/OrganizationService.cs#L1203
|
||||||
|
|
||||||
let org_id = token.0;
|
let org_id = token.0;
|
||||||
let data = data.into_inner();
|
let data = data.into_inner();
|
||||||
|
|||||||
+28
-10
@@ -2,6 +2,7 @@ use std::path::Path;
|
|||||||
|
|
||||||
use chrono::{DateTime, TimeDelta, Utc};
|
use chrono::{DateTime, TimeDelta, Utc};
|
||||||
use num_traits::ToPrimitive;
|
use num_traits::ToPrimitive;
|
||||||
|
use once_cell::sync::Lazy;
|
||||||
use rocket::form::Form;
|
use rocket::form::Form;
|
||||||
use rocket::fs::NamedFile;
|
use rocket::fs::NamedFile;
|
||||||
use rocket::fs::TempFile;
|
use rocket::fs::TempFile;
|
||||||
@@ -17,6 +18,21 @@ use crate::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
const SEND_INACCESSIBLE_MSG: &str = "Send does not exist or is no longer available";
|
const SEND_INACCESSIBLE_MSG: &str = "Send does not exist or is no longer available";
|
||||||
|
static ANON_PUSH_DEVICE: Lazy<Device> = Lazy::new(|| {
|
||||||
|
let dt = crate::util::parse_date("1970-01-01T00:00:00.000000Z");
|
||||||
|
Device {
|
||||||
|
uuid: String::from("00000000-0000-0000-0000-000000000000").into(),
|
||||||
|
created_at: dt,
|
||||||
|
updated_at: dt,
|
||||||
|
user_uuid: String::from("00000000-0000-0000-0000-000000000000").into(),
|
||||||
|
name: String::new(),
|
||||||
|
atype: 14, // 14 == Unknown Browser
|
||||||
|
push_uuid: Some(String::from("00000000-0000-0000-0000-000000000000").into()),
|
||||||
|
push_token: None,
|
||||||
|
refresh_token: String::new(),
|
||||||
|
twofactor_remember: None,
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// The max file size allowed by Bitwarden clients and add an extra 5% to avoid issues
|
// The max file size allowed by Bitwarden clients and add an extra 5% to avoid issues
|
||||||
const SIZE_525_MB: i64 = 550_502_400;
|
const SIZE_525_MB: i64 = 550_502_400;
|
||||||
@@ -182,7 +198,7 @@ async fn post_send(data: Json<SendData>, headers: Headers, mut conn: DbConn, nt:
|
|||||||
UpdateType::SyncSendCreate,
|
UpdateType::SyncSendCreate,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
@@ -204,6 +220,8 @@ struct UploadDataV2<'f> {
|
|||||||
// @deprecated Mar 25 2021: This method has been deprecated in favor of direct uploads (v2).
|
// @deprecated Mar 25 2021: This method has been deprecated in favor of direct uploads (v2).
|
||||||
// This method still exists to support older clients, probably need to remove it sometime.
|
// This method still exists to support older clients, probably need to remove it sometime.
|
||||||
// Upstream: https://github.com/bitwarden/server/blob/d0c793c95181dfb1b447eb450f85ba0bfd7ef643/src/Api/Controllers/SendsController.cs#L164-L167
|
// Upstream: https://github.com/bitwarden/server/blob/d0c793c95181dfb1b447eb450f85ba0bfd7ef643/src/Api/Controllers/SendsController.cs#L164-L167
|
||||||
|
// 2025: This endpoint doesn't seem to exists anymore in the latest version
|
||||||
|
// See: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Tools/Controllers/SendsController.cs
|
||||||
#[post("/sends/file", format = "multipart/form-data", data = "<data>")]
|
#[post("/sends/file", format = "multipart/form-data", data = "<data>")]
|
||||||
async fn post_send_file(data: Form<UploadData<'_>>, headers: Headers, mut conn: DbConn, nt: Notify<'_>) -> JsonResult {
|
async fn post_send_file(data: Form<UploadData<'_>>, headers: Headers, mut conn: DbConn, nt: Notify<'_>) -> JsonResult {
|
||||||
enforce_disable_send_policy(&headers, &mut conn).await?;
|
enforce_disable_send_policy(&headers, &mut conn).await?;
|
||||||
@@ -272,7 +290,7 @@ async fn post_send_file(data: Form<UploadData<'_>>, headers: Headers, mut conn:
|
|||||||
UpdateType::SyncSendCreate,
|
UpdateType::SyncSendCreate,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
@@ -280,7 +298,7 @@ async fn post_send_file(data: Form<UploadData<'_>>, headers: Headers, mut conn:
|
|||||||
Ok(Json(send.to_json()))
|
Ok(Json(send.to_json()))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Upstream: https://github.com/bitwarden/server/blob/d0c793c95181dfb1b447eb450f85ba0bfd7ef643/src/Api/Controllers/SendsController.cs#L190
|
// Upstream: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Tools/Controllers/SendsController.cs#L165
|
||||||
#[post("/sends/file/v2", data = "<data>")]
|
#[post("/sends/file/v2", data = "<data>")]
|
||||||
async fn post_send_file_v2(data: Json<SendData>, headers: Headers, mut conn: DbConn) -> JsonResult {
|
async fn post_send_file_v2(data: Json<SendData>, headers: Headers, mut conn: DbConn) -> JsonResult {
|
||||||
enforce_disable_send_policy(&headers, &mut conn).await?;
|
enforce_disable_send_policy(&headers, &mut conn).await?;
|
||||||
@@ -351,7 +369,7 @@ pub struct SendFileData {
|
|||||||
fileName: String,
|
fileName: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/66f95d1c443490b653e5a15d32977e2f5a3f9e32/src/Api/Tools/Controllers/SendsController.cs#L250
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Tools/Controllers/SendsController.cs#L195
|
||||||
#[post("/sends/<send_id>/file/<file_id>", format = "multipart/form-data", data = "<data>")]
|
#[post("/sends/<send_id>/file/<file_id>", format = "multipart/form-data", data = "<data>")]
|
||||||
async fn post_send_file_v2_data(
|
async fn post_send_file_v2_data(
|
||||||
send_id: SendId,
|
send_id: SendId,
|
||||||
@@ -424,7 +442,7 @@ async fn post_send_file_v2_data(
|
|||||||
UpdateType::SyncSendCreate,
|
UpdateType::SyncSendCreate,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
@@ -489,7 +507,7 @@ async fn post_access(
|
|||||||
UpdateType::SyncSendUpdate,
|
UpdateType::SyncSendUpdate,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&String::from("00000000-0000-0000-0000-000000000000").into(),
|
&ANON_PUSH_DEVICE,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
@@ -546,7 +564,7 @@ async fn post_access_file(
|
|||||||
UpdateType::SyncSendUpdate,
|
UpdateType::SyncSendUpdate,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&String::from("00000000-0000-0000-0000-000000000000").into(),
|
&ANON_PUSH_DEVICE,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
@@ -645,7 +663,7 @@ pub async fn update_send_from_data(
|
|||||||
|
|
||||||
send.save(conn).await?;
|
send.save(conn).await?;
|
||||||
if ut != UpdateType::None {
|
if ut != UpdateType::None {
|
||||||
nt.send_send_update(ut, send, &send.update_users_revision(conn).await, &headers.device.uuid, conn).await;
|
nt.send_send_update(ut, send, &send.update_users_revision(conn).await, &headers.device, conn).await;
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -661,7 +679,7 @@ async fn delete_send(send_id: SendId, headers: Headers, mut conn: DbConn, nt: No
|
|||||||
UpdateType::SyncSendDelete,
|
UpdateType::SyncSendDelete,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
@@ -683,7 +701,7 @@ async fn put_remove_password(send_id: SendId, headers: Headers, mut conn: DbConn
|
|||||||
UpdateType::SyncSendUpdate,
|
UpdateType::SyncSendUpdate,
|
||||||
&send,
|
&send,
|
||||||
&send.update_users_revision(&mut conn).await,
|
&send.update_users_revision(&mut conn).await,
|
||||||
&headers.device.uuid,
|
&headers.device,
|
||||||
&mut conn,
|
&mut conn,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
|
|||||||
@@ -34,6 +34,10 @@ async fn generate_authenticator(data: Json<PasswordOrOtpData>, headers: Headers,
|
|||||||
_ => (false, crypto::encode_random_bytes::<20>(BASE32)),
|
_ => (false, crypto::encode_random_bytes::<20>(BASE32)),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Upstream seems to also return `userVerificationToken`, but doesn't seem to be used at all.
|
||||||
|
// It should help prevent TOTP disclosure if someone keeps their vault unlocked.
|
||||||
|
// Since it doesn't seem to be used, and also does not cause any issues, lets leave it out of the response.
|
||||||
|
// See: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Auth/Controllers/TwoFactorController.cs#L94
|
||||||
Ok(Json(json!({
|
Ok(Json(json!({
|
||||||
"enabled": enabled,
|
"enabled": enabled,
|
||||||
"key": key,
|
"key": key,
|
||||||
|
|||||||
@@ -118,6 +118,9 @@ async fn get_duo(data: Json<PasswordOrOtpData>, headers: Headers, mut conn: DbCo
|
|||||||
} else {
|
} else {
|
||||||
json!({
|
json!({
|
||||||
"enabled": enabled,
|
"enabled": enabled,
|
||||||
|
"host": null,
|
||||||
|
"clientSecret": null,
|
||||||
|
"clientId": null,
|
||||||
"object": "twoFactorDuo"
|
"object": "twoFactorDuo"
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ use url::Url;
|
|||||||
|
|
||||||
// The location on this service that Duo should redirect users to. For us, this is a bridge
|
// The location on this service that Duo should redirect users to. For us, this is a bridge
|
||||||
// built in to the Bitwarden clients.
|
// built in to the Bitwarden clients.
|
||||||
// See: https://github.com/bitwarden/clients/blob/main/apps/web/src/connectors/duo-redirect.ts
|
// See: https://github.com/bitwarden/clients/blob/5fb46df3415aefced0b52f2db86c873962255448/apps/web/src/connectors/duo-redirect.ts
|
||||||
const DUO_REDIRECT_LOCATION: &str = "duo-redirect-connector.html";
|
const DUO_REDIRECT_LOCATION: &str = "duo-redirect-connector.html";
|
||||||
|
|
||||||
// Number of seconds that a JWT we generate for Duo should be valid for.
|
// Number of seconds that a JWT we generate for Duo should be valid for.
|
||||||
|
|||||||
+34
-14
@@ -17,7 +17,7 @@ use crate::{
|
|||||||
push::register_push_device,
|
push::register_push_device,
|
||||||
ApiResult, EmptyResult, JsonResult,
|
ApiResult, EmptyResult, JsonResult,
|
||||||
},
|
},
|
||||||
auth::{generate_organization_api_key_login_claims, ClientHeaders, ClientIp},
|
auth::{generate_organization_api_key_login_claims, ClientHeaders, ClientIp, ClientVersion},
|
||||||
db::{models::*, DbConn},
|
db::{models::*, DbConn},
|
||||||
error::MapResult,
|
error::MapResult,
|
||||||
mail, util, CONFIG,
|
mail, util, CONFIG,
|
||||||
@@ -28,7 +28,12 @@ pub fn routes() -> Vec<Route> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[post("/connect/token", data = "<data>")]
|
#[post("/connect/token", data = "<data>")]
|
||||||
async fn login(data: Form<ConnectData>, client_header: ClientHeaders, mut conn: DbConn) -> JsonResult {
|
async fn login(
|
||||||
|
data: Form<ConnectData>,
|
||||||
|
client_header: ClientHeaders,
|
||||||
|
client_version: Option<ClientVersion>,
|
||||||
|
mut conn: DbConn,
|
||||||
|
) -> JsonResult {
|
||||||
let data: ConnectData = data.into_inner();
|
let data: ConnectData = data.into_inner();
|
||||||
|
|
||||||
let mut user_id: Option<UserId> = None;
|
let mut user_id: Option<UserId> = None;
|
||||||
@@ -48,7 +53,7 @@ async fn login(data: Form<ConnectData>, client_header: ClientHeaders, mut conn:
|
|||||||
_check_is_some(&data.device_name, "device_name cannot be blank")?;
|
_check_is_some(&data.device_name, "device_name cannot be blank")?;
|
||||||
_check_is_some(&data.device_type, "device_type cannot be blank")?;
|
_check_is_some(&data.device_type, "device_type cannot be blank")?;
|
||||||
|
|
||||||
_password_login(data, &mut user_id, &mut conn, &client_header.ip).await
|
_password_login(data, &mut user_id, &mut conn, &client_header.ip, &client_version).await
|
||||||
}
|
}
|
||||||
"client_credentials" => {
|
"client_credentials" => {
|
||||||
_check_is_some(&data.client_id, "client_id cannot be blank")?;
|
_check_is_some(&data.client_id, "client_id cannot be blank")?;
|
||||||
@@ -112,7 +117,7 @@ async fn _refresh_login(data: ConnectData, conn: &mut DbConn) -> JsonResult {
|
|||||||
// See: https://github.com/dani-garcia/vaultwarden/issues/4156
|
// See: https://github.com/dani-garcia/vaultwarden/issues/4156
|
||||||
// ---
|
// ---
|
||||||
// let members = Membership::find_confirmed_by_user(&user.uuid, conn).await;
|
// let members = Membership::find_confirmed_by_user(&user.uuid, conn).await;
|
||||||
let (access_token, expires_in) = device.refresh_tokens(&user, scope_vec);
|
let (access_token, expires_in) = device.refresh_tokens(&user, scope_vec, data.client_id);
|
||||||
device.save(conn).await?;
|
device.save(conn).await?;
|
||||||
|
|
||||||
let result = json!({
|
let result = json!({
|
||||||
@@ -144,6 +149,7 @@ async fn _password_login(
|
|||||||
user_id: &mut Option<UserId>,
|
user_id: &mut Option<UserId>,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
ip: &ClientIp,
|
ip: &ClientIp,
|
||||||
|
client_version: &Option<ClientVersion>,
|
||||||
) -> JsonResult {
|
) -> JsonResult {
|
||||||
// Validate scope
|
// Validate scope
|
||||||
let scope = data.scope.as_ref().unwrap();
|
let scope = data.scope.as_ref().unwrap();
|
||||||
@@ -262,7 +268,7 @@ async fn _password_login(
|
|||||||
|
|
||||||
let (mut device, new_device) = get_device(&data, conn, &user).await;
|
let (mut device, new_device) = get_device(&data, conn, &user).await;
|
||||||
|
|
||||||
let twofactor_token = twofactor_auth(&user, &data, &mut device, ip, conn).await?;
|
let twofactor_token = twofactor_auth(&user, &data, &mut device, ip, client_version, conn).await?;
|
||||||
|
|
||||||
if CONFIG.mail_enabled() && new_device {
|
if CONFIG.mail_enabled() && new_device {
|
||||||
if let Err(e) = mail::send_new_device_logged_in(&user.email, &ip.ip.to_string(), &now, &device).await {
|
if let Err(e) = mail::send_new_device_logged_in(&user.email, &ip.ip.to_string(), &now, &device).await {
|
||||||
@@ -291,10 +297,10 @@ async fn _password_login(
|
|||||||
// See: https://github.com/dani-garcia/vaultwarden/issues/4156
|
// See: https://github.com/dani-garcia/vaultwarden/issues/4156
|
||||||
// ---
|
// ---
|
||||||
// let members = Membership::find_confirmed_by_user(&user.uuid, conn).await;
|
// let members = Membership::find_confirmed_by_user(&user.uuid, conn).await;
|
||||||
let (access_token, expires_in) = device.refresh_tokens(&user, scope_vec);
|
let (access_token, expires_in) = device.refresh_tokens(&user, scope_vec, data.client_id);
|
||||||
device.save(conn).await?;
|
device.save(conn).await?;
|
||||||
|
|
||||||
// Fetch all valid Master Password Policies and merge them into one with all true's and larges numbers as one policy
|
// Fetch all valid Master Password Policies and merge them into one with all trues and largest numbers as one policy
|
||||||
let master_password_policies: Vec<MasterPasswordPolicy> =
|
let master_password_policies: Vec<MasterPasswordPolicy> =
|
||||||
OrgPolicy::find_accepted_and_confirmed_by_user_and_active_policy(
|
OrgPolicy::find_accepted_and_confirmed_by_user_and_active_policy(
|
||||||
&user.uuid,
|
&user.uuid,
|
||||||
@@ -306,6 +312,7 @@ async fn _password_login(
|
|||||||
.filter_map(|p| serde_json::from_str(&p.data).ok())
|
.filter_map(|p| serde_json::from_str(&p.data).ok())
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
|
// NOTE: Upstream still uses PascalCase here for `Object`!
|
||||||
let master_password_policy = if !master_password_policies.is_empty() {
|
let master_password_policy = if !master_password_policies.is_empty() {
|
||||||
let mut mpp_json = json!(master_password_policies.into_iter().reduce(|acc, policy| {
|
let mut mpp_json = json!(master_password_policies.into_iter().reduce(|acc, policy| {
|
||||||
MasterPasswordPolicy {
|
MasterPasswordPolicy {
|
||||||
@@ -318,10 +325,10 @@ async fn _password_login(
|
|||||||
enforce_on_login: acc.enforce_on_login || policy.enforce_on_login,
|
enforce_on_login: acc.enforce_on_login || policy.enforce_on_login,
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
mpp_json["object"] = json!("masterPasswordPolicy");
|
mpp_json["Object"] = json!("masterPasswordPolicy");
|
||||||
mpp_json
|
mpp_json
|
||||||
} else {
|
} else {
|
||||||
json!({"object": "masterPasswordPolicy"})
|
json!({"Object": "masterPasswordPolicy"})
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut result = json!({
|
let mut result = json!({
|
||||||
@@ -441,7 +448,7 @@ async fn _user_api_key_login(
|
|||||||
// See: https://github.com/dani-garcia/vaultwarden/issues/4156
|
// See: https://github.com/dani-garcia/vaultwarden/issues/4156
|
||||||
// ---
|
// ---
|
||||||
// let members = Membership::find_confirmed_by_user(&user.uuid, conn).await;
|
// let members = Membership::find_confirmed_by_user(&user.uuid, conn).await;
|
||||||
let (access_token, expires_in) = device.refresh_tokens(&user, scope_vec);
|
let (access_token, expires_in) = device.refresh_tokens(&user, scope_vec, data.client_id);
|
||||||
device.save(conn).await?;
|
device.save(conn).await?;
|
||||||
|
|
||||||
info!("User {} logged in successfully via API key. IP: {}", user.email, ip.ip);
|
info!("User {} logged in successfully via API key. IP: {}", user.email, ip.ip);
|
||||||
@@ -520,6 +527,7 @@ async fn twofactor_auth(
|
|||||||
data: &ConnectData,
|
data: &ConnectData,
|
||||||
device: &mut Device,
|
device: &mut Device,
|
||||||
ip: &ClientIp,
|
ip: &ClientIp,
|
||||||
|
client_version: &Option<ClientVersion>,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) -> ApiResult<Option<String>> {
|
) -> ApiResult<Option<String>> {
|
||||||
let twofactors = TwoFactor::find_by_user(&user.uuid, conn).await;
|
let twofactors = TwoFactor::find_by_user(&user.uuid, conn).await;
|
||||||
@@ -538,7 +546,10 @@ async fn twofactor_auth(
|
|||||||
let twofactor_code = match data.two_factor_token {
|
let twofactor_code = match data.two_factor_token {
|
||||||
Some(ref code) => code,
|
Some(ref code) => code,
|
||||||
None => {
|
None => {
|
||||||
err_json!(_json_err_twofactor(&twofactor_ids, &user.uuid, data, conn).await?, "2FA token not provided")
|
err_json!(
|
||||||
|
_json_err_twofactor(&twofactor_ids, &user.uuid, data, client_version, conn).await?,
|
||||||
|
"2FA token not provided"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -585,7 +596,7 @@ async fn twofactor_auth(
|
|||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
err_json!(
|
err_json!(
|
||||||
_json_err_twofactor(&twofactor_ids, &user.uuid, data, conn).await?,
|
_json_err_twofactor(&twofactor_ids, &user.uuid, data, client_version, conn).await?,
|
||||||
"2FA Remember token not provided"
|
"2FA Remember token not provided"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -617,6 +628,7 @@ async fn _json_err_twofactor(
|
|||||||
providers: &[i32],
|
providers: &[i32],
|
||||||
user_id: &UserId,
|
user_id: &UserId,
|
||||||
data: &ConnectData,
|
data: &ConnectData,
|
||||||
|
client_version: &Option<ClientVersion>,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) -> ApiResult<Value> {
|
) -> ApiResult<Value> {
|
||||||
let mut result = json!({
|
let mut result = json!({
|
||||||
@@ -689,8 +701,16 @@ async fn _json_err_twofactor(
|
|||||||
err!("No twofactor email registered")
|
err!("No twofactor email registered")
|
||||||
};
|
};
|
||||||
|
|
||||||
// Send email immediately if email is the only 2FA option
|
// Starting with version 2025.5.0 the client will call `/api/two-factor/send-email-login`.
|
||||||
if providers.len() == 1 {
|
let disabled_send = if let Some(cv) = client_version {
|
||||||
|
let ver_match = semver::VersionReq::parse(">=2025.5.0").unwrap();
|
||||||
|
ver_match.matches(&cv.0)
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
};
|
||||||
|
|
||||||
|
// Send email immediately if email is the only 2FA option.
|
||||||
|
if providers.len() == 1 && !disabled_send {
|
||||||
email::send_token(user_id, conn).await?
|
email::send_token(user_id, conn).await?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+19
-25
@@ -10,7 +10,7 @@ use rocket_ws::{Message, WebSocket};
|
|||||||
use crate::{
|
use crate::{
|
||||||
auth::{ClientIp, WsAccessTokenHeader},
|
auth::{ClientIp, WsAccessTokenHeader},
|
||||||
db::{
|
db::{
|
||||||
models::{AuthRequestId, Cipher, CollectionId, DeviceId, Folder, Send as DbSend, User, UserId},
|
models::{AuthRequestId, Cipher, CollectionId, Device, DeviceId, Folder, PushId, Send as DbSend, User, UserId},
|
||||||
DbConn,
|
DbConn,
|
||||||
},
|
},
|
||||||
Error, CONFIG,
|
Error, CONFIG,
|
||||||
@@ -339,7 +339,7 @@ impl WebSocketUsers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: The last modified date needs to be updated before calling these methods
|
// NOTE: The last modified date needs to be updated before calling these methods
|
||||||
pub async fn send_user_update(&self, ut: UpdateType, user: &User) {
|
pub async fn send_user_update(&self, ut: UpdateType, user: &User, push_uuid: &Option<PushId>, conn: &mut DbConn) {
|
||||||
// Skip any processing if both WebSockets and Push are not active
|
// Skip any processing if both WebSockets and Push are not active
|
||||||
if *NOTIFICATIONS_DISABLED {
|
if *NOTIFICATIONS_DISABLED {
|
||||||
return;
|
return;
|
||||||
@@ -355,11 +355,11 @@ impl WebSocketUsers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if CONFIG.push_enabled() {
|
if CONFIG.push_enabled() {
|
||||||
push_user_update(ut, user);
|
push_user_update(ut, user, push_uuid, conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn send_logout(&self, user: &User, acting_device_id: Option<DeviceId>) {
|
pub async fn send_logout(&self, user: &User, acting_device_id: Option<DeviceId>, conn: &mut DbConn) {
|
||||||
// Skip any processing if both WebSockets and Push are not active
|
// Skip any processing if both WebSockets and Push are not active
|
||||||
if *NOTIFICATIONS_DISABLED {
|
if *NOTIFICATIONS_DISABLED {
|
||||||
return;
|
return;
|
||||||
@@ -375,17 +375,11 @@ impl WebSocketUsers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if CONFIG.push_enabled() {
|
if CONFIG.push_enabled() {
|
||||||
push_logout(user, acting_device_id.clone());
|
push_logout(user, acting_device_id.clone(), conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn send_folder_update(
|
pub async fn send_folder_update(&self, ut: UpdateType, folder: &Folder, device: &Device, conn: &mut DbConn) {
|
||||||
&self,
|
|
||||||
ut: UpdateType,
|
|
||||||
folder: &Folder,
|
|
||||||
acting_device_id: &DeviceId,
|
|
||||||
conn: &mut DbConn,
|
|
||||||
) {
|
|
||||||
// Skip any processing if both WebSockets and Push are not active
|
// Skip any processing if both WebSockets and Push are not active
|
||||||
if *NOTIFICATIONS_DISABLED {
|
if *NOTIFICATIONS_DISABLED {
|
||||||
return;
|
return;
|
||||||
@@ -397,7 +391,7 @@ impl WebSocketUsers {
|
|||||||
("RevisionDate".into(), serialize_date(folder.updated_at)),
|
("RevisionDate".into(), serialize_date(folder.updated_at)),
|
||||||
],
|
],
|
||||||
ut,
|
ut,
|
||||||
Some(acting_device_id.clone()),
|
Some(device.uuid.clone()),
|
||||||
);
|
);
|
||||||
|
|
||||||
if CONFIG.enable_websocket() {
|
if CONFIG.enable_websocket() {
|
||||||
@@ -405,7 +399,7 @@ impl WebSocketUsers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if CONFIG.push_enabled() {
|
if CONFIG.push_enabled() {
|
||||||
push_folder_update(ut, folder, acting_device_id, conn).await;
|
push_folder_update(ut, folder, device, conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -414,7 +408,7 @@ impl WebSocketUsers {
|
|||||||
ut: UpdateType,
|
ut: UpdateType,
|
||||||
cipher: &Cipher,
|
cipher: &Cipher,
|
||||||
user_ids: &[UserId],
|
user_ids: &[UserId],
|
||||||
acting_device_id: &DeviceId,
|
device: &Device,
|
||||||
collection_uuids: Option<Vec<CollectionId>>,
|
collection_uuids: Option<Vec<CollectionId>>,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) {
|
) {
|
||||||
@@ -444,7 +438,7 @@ impl WebSocketUsers {
|
|||||||
("RevisionDate".into(), revision_date),
|
("RevisionDate".into(), revision_date),
|
||||||
],
|
],
|
||||||
ut,
|
ut,
|
||||||
Some(acting_device_id.clone()),
|
Some(device.uuid.clone()), // Acting device id (unique device/app uuid)
|
||||||
);
|
);
|
||||||
|
|
||||||
if CONFIG.enable_websocket() {
|
if CONFIG.enable_websocket() {
|
||||||
@@ -454,7 +448,7 @@ impl WebSocketUsers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if CONFIG.push_enabled() && user_ids.len() == 1 {
|
if CONFIG.push_enabled() && user_ids.len() == 1 {
|
||||||
push_cipher_update(ut, cipher, acting_device_id, conn).await;
|
push_cipher_update(ut, cipher, device, conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -463,7 +457,7 @@ impl WebSocketUsers {
|
|||||||
ut: UpdateType,
|
ut: UpdateType,
|
||||||
send: &DbSend,
|
send: &DbSend,
|
||||||
user_ids: &[UserId],
|
user_ids: &[UserId],
|
||||||
acting_device_id: &DeviceId,
|
device: &Device,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) {
|
) {
|
||||||
// Skip any processing if both WebSockets and Push are not active
|
// Skip any processing if both WebSockets and Push are not active
|
||||||
@@ -488,7 +482,7 @@ impl WebSocketUsers {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if CONFIG.push_enabled() && user_ids.len() == 1 {
|
if CONFIG.push_enabled() && user_ids.len() == 1 {
|
||||||
push_send_update(ut, send, acting_device_id, conn).await;
|
push_send_update(ut, send, device, conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -496,7 +490,7 @@ impl WebSocketUsers {
|
|||||||
&self,
|
&self,
|
||||||
user_id: &UserId,
|
user_id: &UserId,
|
||||||
auth_request_uuid: &str,
|
auth_request_uuid: &str,
|
||||||
acting_device_id: &DeviceId,
|
device: &Device,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) {
|
) {
|
||||||
// Skip any processing if both WebSockets and Push are not active
|
// Skip any processing if both WebSockets and Push are not active
|
||||||
@@ -506,14 +500,14 @@ impl WebSocketUsers {
|
|||||||
let data = create_update(
|
let data = create_update(
|
||||||
vec![("Id".into(), auth_request_uuid.to_owned().into()), ("UserId".into(), user_id.to_string().into())],
|
vec![("Id".into(), auth_request_uuid.to_owned().into()), ("UserId".into(), user_id.to_string().into())],
|
||||||
UpdateType::AuthRequest,
|
UpdateType::AuthRequest,
|
||||||
Some(acting_device_id.clone()),
|
Some(device.uuid.clone()),
|
||||||
);
|
);
|
||||||
if CONFIG.enable_websocket() {
|
if CONFIG.enable_websocket() {
|
||||||
self.send_update(user_id, &data).await;
|
self.send_update(user_id, &data).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
if CONFIG.push_enabled() {
|
if CONFIG.push_enabled() {
|
||||||
push_auth_request(user_id.clone(), auth_request_uuid.to_owned(), conn).await;
|
push_auth_request(user_id, auth_request_uuid, device, conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -521,7 +515,7 @@ impl WebSocketUsers {
|
|||||||
&self,
|
&self,
|
||||||
user_id: &UserId,
|
user_id: &UserId,
|
||||||
auth_request_id: &AuthRequestId,
|
auth_request_id: &AuthRequestId,
|
||||||
approving_device_id: &DeviceId,
|
device: &Device,
|
||||||
conn: &mut DbConn,
|
conn: &mut DbConn,
|
||||||
) {
|
) {
|
||||||
// Skip any processing if both WebSockets and Push are not active
|
// Skip any processing if both WebSockets and Push are not active
|
||||||
@@ -531,14 +525,14 @@ impl WebSocketUsers {
|
|||||||
let data = create_update(
|
let data = create_update(
|
||||||
vec![("Id".into(), auth_request_id.to_string().into()), ("UserId".into(), user_id.to_string().into())],
|
vec![("Id".into(), auth_request_id.to_string().into()), ("UserId".into(), user_id.to_string().into())],
|
||||||
UpdateType::AuthRequestResponse,
|
UpdateType::AuthRequestResponse,
|
||||||
Some(approving_device_id.clone()),
|
Some(device.uuid.clone()),
|
||||||
);
|
);
|
||||||
if CONFIG.enable_websocket() {
|
if CONFIG.enable_websocket() {
|
||||||
self.send_update(user_id, &data).await;
|
self.send_update(user_id, &data).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
if CONFIG.push_enabled() {
|
if CONFIG.push_enabled() {
|
||||||
push_auth_response(user_id, auth_request_id, approving_device_id, conn).await;
|
push_auth_response(user_id, auth_request_id, device, conn).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+127
-111
@@ -7,9 +7,9 @@ use tokio::sync::RwLock;
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
api::{ApiResult, EmptyResult, UpdateType},
|
api::{ApiResult, EmptyResult, UpdateType},
|
||||||
db::models::{AuthRequestId, Cipher, Device, DeviceId, Folder, Send, User, UserId},
|
db::models::{AuthRequestId, Cipher, Device, DeviceId, Folder, PushId, Send, User, UserId},
|
||||||
http_client::make_http_request,
|
http_client::make_http_request,
|
||||||
util::format_date,
|
util::{format_date, get_uuid},
|
||||||
CONFIG,
|
CONFIG,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -28,20 +28,20 @@ struct LocalAuthPushToken {
|
|||||||
valid_until: Instant,
|
valid_until: Instant,
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn get_auth_push_token() -> ApiResult<String> {
|
async fn get_auth_api_token() -> ApiResult<String> {
|
||||||
static PUSH_TOKEN: Lazy<RwLock<LocalAuthPushToken>> = Lazy::new(|| {
|
static API_TOKEN: Lazy<RwLock<LocalAuthPushToken>> = Lazy::new(|| {
|
||||||
RwLock::new(LocalAuthPushToken {
|
RwLock::new(LocalAuthPushToken {
|
||||||
access_token: String::new(),
|
access_token: String::new(),
|
||||||
valid_until: Instant::now(),
|
valid_until: Instant::now(),
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
let push_token = PUSH_TOKEN.read().await;
|
let api_token = API_TOKEN.read().await;
|
||||||
|
|
||||||
if push_token.valid_until.saturating_duration_since(Instant::now()).as_secs() > 0 {
|
if api_token.valid_until.saturating_duration_since(Instant::now()).as_secs() > 0 {
|
||||||
debug!("Auth Push token still valid, no need for a new one");
|
debug!("Auth Push token still valid, no need for a new one");
|
||||||
return Ok(push_token.access_token.clone());
|
return Ok(api_token.access_token.clone());
|
||||||
}
|
}
|
||||||
drop(push_token); // Drop the read lock now
|
drop(api_token); // Drop the read lock now
|
||||||
|
|
||||||
let installation_id = CONFIG.push_installation_id();
|
let installation_id = CONFIG.push_installation_id();
|
||||||
let client_id = format!("installation.{installation_id}");
|
let client_id = format!("installation.{installation_id}");
|
||||||
@@ -68,44 +68,48 @@ async fn get_auth_push_token() -> ApiResult<String> {
|
|||||||
Err(e) => err!(format!("Unexpected push token received from bitwarden server: {e}")),
|
Err(e) => err!(format!("Unexpected push token received from bitwarden server: {e}")),
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut push_token = PUSH_TOKEN.write().await;
|
let mut api_token = API_TOKEN.write().await;
|
||||||
push_token.valid_until = Instant::now()
|
api_token.valid_until = Instant::now()
|
||||||
.checked_add(Duration::new((json_pushtoken.expires_in / 2) as u64, 0)) // Token valid for half the specified time
|
.checked_add(Duration::new((json_pushtoken.expires_in / 2) as u64, 0)) // Token valid for half the specified time
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
push_token.access_token = json_pushtoken.access_token;
|
api_token.access_token = json_pushtoken.access_token;
|
||||||
|
|
||||||
debug!("Token still valid for {}", push_token.valid_until.saturating_duration_since(Instant::now()).as_secs());
|
debug!("Token still valid for {}", api_token.valid_until.saturating_duration_since(Instant::now()).as_secs());
|
||||||
Ok(push_token.access_token.clone())
|
Ok(api_token.access_token.clone())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn register_push_device(device: &mut Device, conn: &mut crate::db::DbConn) -> EmptyResult {
|
pub async fn register_push_device(device: &mut Device, conn: &mut crate::db::DbConn) -> EmptyResult {
|
||||||
if !CONFIG.push_enabled() || !device.is_push_device() || device.is_registered() {
|
if !CONFIG.push_enabled() || !device.is_push_device() {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
if device.push_token.is_none() {
|
if device.push_token.is_none() {
|
||||||
warn!("Skipping the registration of the device {} because the push_token field is empty.", device.uuid);
|
warn!("Skipping the registration of the device {:?} because the push_token field is empty.", device.uuid);
|
||||||
warn!("To get rid of this message you need to clear the app data and reconnect the device.");
|
warn!("To get rid of this message you need to logout, clear the app data and login again on the device.");
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
debug!("Registering Device {}", device.uuid);
|
debug!("Registering Device {:?}", device.push_uuid);
|
||||||
|
|
||||||
// generate a random push_uuid so we know the device is registered
|
// Generate a random push_uuid so if it doesn't already have one
|
||||||
device.push_uuid = Some(uuid::Uuid::new_v4().to_string());
|
if device.push_uuid.is_none() {
|
||||||
|
device.push_uuid = Some(PushId(get_uuid()));
|
||||||
|
}
|
||||||
|
|
||||||
//Needed to register a device for push to bitwarden :
|
//Needed to register a device for push to bitwarden :
|
||||||
let data = json!({
|
let data = json!({
|
||||||
|
"deviceId": device.push_uuid, // Unique UUID per user/device
|
||||||
|
"pushToken": device.push_token,
|
||||||
"userId": device.user_uuid,
|
"userId": device.user_uuid,
|
||||||
"deviceId": device.push_uuid,
|
|
||||||
"identifier": device.uuid,
|
|
||||||
"type": device.atype,
|
"type": device.atype,
|
||||||
"pushToken": device.push_token
|
"identifier": device.uuid, // Unique UUID of the device/app, determined by the device/app it self currently registering
|
||||||
|
// "organizationIds:" [] // TODO: This is not yet implemented by Vaultwarden!
|
||||||
|
"installationId": CONFIG.push_installation_id(),
|
||||||
});
|
});
|
||||||
|
|
||||||
let auth_push_token = get_auth_push_token().await?;
|
let auth_api_token = get_auth_api_token().await?;
|
||||||
let auth_header = format!("Bearer {}", &auth_push_token);
|
let auth_header = format!("Bearer {auth_api_token}");
|
||||||
|
|
||||||
if let Err(e) = make_http_request(Method::POST, &(CONFIG.push_relay_uri() + "/push/register"))?
|
if let Err(e) = make_http_request(Method::POST, &(CONFIG.push_relay_uri() + "/push/register"))?
|
||||||
.header(CONTENT_TYPE, "application/json")
|
.header(CONTENT_TYPE, "application/json")
|
||||||
@@ -126,18 +130,21 @@ pub async fn register_push_device(device: &mut Device, conn: &mut crate::db::DbC
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn unregister_push_device(push_id: Option<String>) -> EmptyResult {
|
pub async fn unregister_push_device(push_id: &Option<PushId>) -> EmptyResult {
|
||||||
if !CONFIG.push_enabled() || push_id.is_none() {
|
if !CONFIG.push_enabled() || push_id.is_none() {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
let auth_push_token = get_auth_push_token().await?;
|
let auth_api_token = get_auth_api_token().await?;
|
||||||
|
|
||||||
let auth_header = format!("Bearer {}", &auth_push_token);
|
let auth_header = format!("Bearer {auth_api_token}");
|
||||||
|
|
||||||
match make_http_request(Method::DELETE, &(CONFIG.push_relay_uri() + "/push/" + &push_id.unwrap()))?
|
match make_http_request(
|
||||||
.header(AUTHORIZATION, auth_header)
|
Method::POST,
|
||||||
.send()
|
&format!("{}/push/delete/{}", CONFIG.push_relay_uri(), push_id.as_ref().unwrap()),
|
||||||
.await
|
)?
|
||||||
|
.header(AUTHORIZATION, auth_header)
|
||||||
|
.send()
|
||||||
|
.await
|
||||||
{
|
{
|
||||||
Ok(r) => r,
|
Ok(r) => r,
|
||||||
Err(e) => err!(format!("An error occurred during device unregistration: {e}")),
|
Err(e) => err!(format!("An error occurred during device unregistration: {e}")),
|
||||||
@@ -145,12 +152,7 @@ pub async fn unregister_push_device(push_id: Option<String>) -> EmptyResult {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn push_cipher_update(
|
pub async fn push_cipher_update(ut: UpdateType, cipher: &Cipher, device: &Device, conn: &mut crate::db::DbConn) {
|
||||||
ut: UpdateType,
|
|
||||||
cipher: &Cipher,
|
|
||||||
acting_device_id: &DeviceId,
|
|
||||||
conn: &mut crate::db::DbConn,
|
|
||||||
) {
|
|
||||||
// We shouldn't send a push notification on cipher update if the cipher belongs to an organization, this isn't implemented in the upstream server too.
|
// We shouldn't send a push notification on cipher update if the cipher belongs to an organization, this isn't implemented in the upstream server too.
|
||||||
if cipher.organization_uuid.is_some() {
|
if cipher.organization_uuid.is_some() {
|
||||||
return;
|
return;
|
||||||
@@ -163,87 +165,97 @@ pub async fn push_cipher_update(
|
|||||||
if Device::check_user_has_push_device(user_id, conn).await {
|
if Device::check_user_has_push_device(user_id, conn).await {
|
||||||
send_to_push_relay(json!({
|
send_to_push_relay(json!({
|
||||||
"userId": user_id,
|
"userId": user_id,
|
||||||
"organizationId": (),
|
"organizationId": null,
|
||||||
"deviceId": acting_device_id,
|
"deviceId": device.push_uuid, // Should be the records unique uuid of the acting device (unique uuid per user/device)
|
||||||
"identifier": acting_device_id,
|
"identifier": device.uuid, // Should be the acting device id (aka uuid per device/app)
|
||||||
"type": ut as i32,
|
"type": ut as i32,
|
||||||
"payload": {
|
"payload": {
|
||||||
"Id": cipher.uuid,
|
"id": cipher.uuid,
|
||||||
"UserId": cipher.user_uuid,
|
"userId": cipher.user_uuid,
|
||||||
"OrganizationId": (),
|
"organizationId": null,
|
||||||
"RevisionDate": format_date(&cipher.updated_at)
|
"collectionIds": null,
|
||||||
}
|
"revisionDate": format_date(&cipher.updated_at)
|
||||||
|
},
|
||||||
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
}))
|
}))
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn push_logout(user: &User, acting_device_id: Option<DeviceId>) {
|
pub async fn push_logout(user: &User, acting_device_id: Option<DeviceId>, conn: &mut crate::db::DbConn) {
|
||||||
let acting_device_id: Value = acting_device_id.map(|v| v.to_string().into()).unwrap_or_else(|| Value::Null);
|
let acting_device_id: Value = acting_device_id.map(|v| v.to_string().into()).unwrap_or_else(|| Value::Null);
|
||||||
|
|
||||||
tokio::task::spawn(send_to_push_relay(json!({
|
if Device::check_user_has_push_device(&user.uuid, conn).await {
|
||||||
"userId": user.uuid,
|
|
||||||
"organizationId": (),
|
|
||||||
"deviceId": acting_device_id,
|
|
||||||
"identifier": acting_device_id,
|
|
||||||
"type": UpdateType::LogOut as i32,
|
|
||||||
"payload": {
|
|
||||||
"UserId": user.uuid,
|
|
||||||
"Date": format_date(&user.updated_at)
|
|
||||||
}
|
|
||||||
})));
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn push_user_update(ut: UpdateType, user: &User) {
|
|
||||||
tokio::task::spawn(send_to_push_relay(json!({
|
|
||||||
"userId": user.uuid,
|
|
||||||
"organizationId": (),
|
|
||||||
"deviceId": (),
|
|
||||||
"identifier": (),
|
|
||||||
"type": ut as i32,
|
|
||||||
"payload": {
|
|
||||||
"UserId": user.uuid,
|
|
||||||
"Date": format_date(&user.updated_at)
|
|
||||||
}
|
|
||||||
})));
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn push_folder_update(
|
|
||||||
ut: UpdateType,
|
|
||||||
folder: &Folder,
|
|
||||||
acting_device_id: &DeviceId,
|
|
||||||
conn: &mut crate::db::DbConn,
|
|
||||||
) {
|
|
||||||
if Device::check_user_has_push_device(&folder.user_uuid, conn).await {
|
|
||||||
tokio::task::spawn(send_to_push_relay(json!({
|
tokio::task::spawn(send_to_push_relay(json!({
|
||||||
"userId": folder.user_uuid,
|
"userId": user.uuid,
|
||||||
"organizationId": (),
|
"organizationId": (),
|
||||||
"deviceId": acting_device_id,
|
"deviceId": acting_device_id,
|
||||||
"identifier": acting_device_id,
|
"identifier": acting_device_id,
|
||||||
"type": ut as i32,
|
"type": UpdateType::LogOut as i32,
|
||||||
"payload": {
|
"payload": {
|
||||||
"Id": folder.uuid,
|
"userId": user.uuid,
|
||||||
"UserId": folder.user_uuid,
|
"date": format_date(&user.updated_at)
|
||||||
"RevisionDate": format_date(&folder.updated_at)
|
},
|
||||||
}
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn push_send_update(ut: UpdateType, send: &Send, acting_device_id: &DeviceId, conn: &mut crate::db::DbConn) {
|
pub async fn push_user_update(ut: UpdateType, user: &User, push_uuid: &Option<PushId>, conn: &mut crate::db::DbConn) {
|
||||||
|
if Device::check_user_has_push_device(&user.uuid, conn).await {
|
||||||
|
tokio::task::spawn(send_to_push_relay(json!({
|
||||||
|
"userId": user.uuid,
|
||||||
|
"organizationId": null,
|
||||||
|
"deviceId": push_uuid,
|
||||||
|
"identifier": null,
|
||||||
|
"type": ut as i32,
|
||||||
|
"payload": {
|
||||||
|
"userId": user.uuid,
|
||||||
|
"date": format_date(&user.updated_at)
|
||||||
|
},
|
||||||
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
|
})));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn push_folder_update(ut: UpdateType, folder: &Folder, device: &Device, conn: &mut crate::db::DbConn) {
|
||||||
|
if Device::check_user_has_push_device(&folder.user_uuid, conn).await {
|
||||||
|
tokio::task::spawn(send_to_push_relay(json!({
|
||||||
|
"userId": folder.user_uuid,
|
||||||
|
"organizationId": null,
|
||||||
|
"deviceId": device.push_uuid, // Should be the records unique uuid of the acting device (unique uuid per user/device)
|
||||||
|
"identifier": device.uuid, // Should be the acting device id (aka uuid per device/app)
|
||||||
|
"type": ut as i32,
|
||||||
|
"payload": {
|
||||||
|
"id": folder.uuid,
|
||||||
|
"userId": folder.user_uuid,
|
||||||
|
"revisionDate": format_date(&folder.updated_at)
|
||||||
|
},
|
||||||
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
|
})));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn push_send_update(ut: UpdateType, send: &Send, device: &Device, conn: &mut crate::db::DbConn) {
|
||||||
if let Some(s) = &send.user_uuid {
|
if let Some(s) = &send.user_uuid {
|
||||||
if Device::check_user_has_push_device(s, conn).await {
|
if Device::check_user_has_push_device(s, conn).await {
|
||||||
tokio::task::spawn(send_to_push_relay(json!({
|
tokio::task::spawn(send_to_push_relay(json!({
|
||||||
"userId": send.user_uuid,
|
"userId": send.user_uuid,
|
||||||
"organizationId": (),
|
"organizationId": null,
|
||||||
"deviceId": acting_device_id,
|
"deviceId": device.push_uuid, // Should be the records unique uuid of the acting device (unique uuid per user/device)
|
||||||
"identifier": acting_device_id,
|
"identifier": device.uuid, // Should be the acting device id (aka uuid per device/app)
|
||||||
"type": ut as i32,
|
"type": ut as i32,
|
||||||
"payload": {
|
"payload": {
|
||||||
"Id": send.uuid,
|
"id": send.uuid,
|
||||||
"UserId": send.user_uuid,
|
"userId": send.user_uuid,
|
||||||
"RevisionDate": format_date(&send.revision_date)
|
"revisionDate": format_date(&send.revision_date)
|
||||||
}
|
},
|
||||||
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -254,7 +266,7 @@ async fn send_to_push_relay(notification_data: Value) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let auth_push_token = match get_auth_push_token().await {
|
let auth_api_token = match get_auth_api_token().await {
|
||||||
Ok(s) => s,
|
Ok(s) => s,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
debug!("Could not get the auth push token: {e}");
|
debug!("Could not get the auth push token: {e}");
|
||||||
@@ -262,7 +274,7 @@ async fn send_to_push_relay(notification_data: Value) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let auth_header = format!("Bearer {}", &auth_push_token);
|
let auth_header = format!("Bearer {auth_api_token}");
|
||||||
|
|
||||||
let req = match make_http_request(Method::POST, &(CONFIG.push_relay_uri() + "/push/send")) {
|
let req = match make_http_request(Method::POST, &(CONFIG.push_relay_uri() + "/push/send")) {
|
||||||
Ok(r) => r,
|
Ok(r) => r,
|
||||||
@@ -284,18 +296,20 @@ async fn send_to_push_relay(notification_data: Value) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn push_auth_request(user_id: UserId, auth_request_id: String, conn: &mut crate::db::DbConn) {
|
pub async fn push_auth_request(user_id: &UserId, auth_request_id: &str, device: &Device, conn: &mut crate::db::DbConn) {
|
||||||
if Device::check_user_has_push_device(&user_id, conn).await {
|
if Device::check_user_has_push_device(user_id, conn).await {
|
||||||
tokio::task::spawn(send_to_push_relay(json!({
|
tokio::task::spawn(send_to_push_relay(json!({
|
||||||
"userId": user_id,
|
"userId": user_id,
|
||||||
"organizationId": (),
|
"organizationId": null,
|
||||||
"deviceId": null,
|
"deviceId": device.push_uuid, // Should be the records unique uuid of the acting device (unique uuid per user/device)
|
||||||
"identifier": null,
|
"identifier": device.uuid, // Should be the acting device id (aka uuid per device/app)
|
||||||
"type": UpdateType::AuthRequest as i32,
|
"type": UpdateType::AuthRequest as i32,
|
||||||
"payload": {
|
"payload": {
|
||||||
"Id": auth_request_id,
|
"userId": user_id,
|
||||||
"UserId": user_id,
|
"id": auth_request_id,
|
||||||
}
|
},
|
||||||
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -303,20 +317,22 @@ pub async fn push_auth_request(user_id: UserId, auth_request_id: String, conn: &
|
|||||||
pub async fn push_auth_response(
|
pub async fn push_auth_response(
|
||||||
user_id: &UserId,
|
user_id: &UserId,
|
||||||
auth_request_id: &AuthRequestId,
|
auth_request_id: &AuthRequestId,
|
||||||
approving_device_id: &DeviceId,
|
device: &Device,
|
||||||
conn: &mut crate::db::DbConn,
|
conn: &mut crate::db::DbConn,
|
||||||
) {
|
) {
|
||||||
if Device::check_user_has_push_device(user_id, conn).await {
|
if Device::check_user_has_push_device(user_id, conn).await {
|
||||||
tokio::task::spawn(send_to_push_relay(json!({
|
tokio::task::spawn(send_to_push_relay(json!({
|
||||||
"userId": user_id,
|
"userId": user_id,
|
||||||
"organizationId": (),
|
"organizationId": null,
|
||||||
"deviceId": approving_device_id,
|
"deviceId": device.push_uuid, // Should be the records unique uuid of the acting device (unique uuid per user/device)
|
||||||
"identifier": approving_device_id,
|
"identifier": device.uuid, // Should be the acting device id (aka uuid per device/app)
|
||||||
"type": UpdateType::AuthRequestResponse as i32,
|
"type": UpdateType::AuthRequestResponse as i32,
|
||||||
"payload": {
|
"payload": {
|
||||||
"Id": auth_request_id,
|
"userId": user_id,
|
||||||
"UserId": user_id,
|
"id": auth_request_id,
|
||||||
}
|
},
|
||||||
|
"clientType": null,
|
||||||
|
"installationId": null
|
||||||
})));
|
})));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+22
-13
@@ -181,6 +181,11 @@ pub struct LoginJwtClaims {
|
|||||||
pub sstamp: String,
|
pub sstamp: String,
|
||||||
// device uuid
|
// device uuid
|
||||||
pub device: DeviceId,
|
pub device: DeviceId,
|
||||||
|
// what kind of device, like FirefoxBrowser or Android derived from DeviceType
|
||||||
|
pub devicetype: String,
|
||||||
|
// the type of client_id, like web, cli, desktop, browser or mobile
|
||||||
|
pub client_id: String,
|
||||||
|
|
||||||
// [ "api", "offline_access" ]
|
// [ "api", "offline_access" ]
|
||||||
pub scope: Vec<String>,
|
pub scope: Vec<String>,
|
||||||
// [ "Application" ]
|
// [ "Application" ]
|
||||||
@@ -689,17 +694,6 @@ impl<'r> FromRequest<'r> for AdminHeaders {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<AdminHeaders> for Headers {
|
|
||||||
fn from(h: AdminHeaders) -> Headers {
|
|
||||||
Headers {
|
|
||||||
host: h.host,
|
|
||||||
device: h.device,
|
|
||||||
user: h.user,
|
|
||||||
ip: h.ip,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// col_id is usually the fourth path param ("/organizations/<org_id>/collections/<col_id>"),
|
// col_id is usually the fourth path param ("/organizations/<org_id>/collections/<col_id>"),
|
||||||
// but there could be cases where it is a query value.
|
// but there could be cases where it is a query value.
|
||||||
// First check the path, if this is not a valid uuid, try the query values.
|
// First check the path, if this is not a valid uuid, try the query values.
|
||||||
@@ -869,8 +863,10 @@ impl<'r> FromRequest<'r> for OwnerHeaders {
|
|||||||
|
|
||||||
pub struct OrgMemberHeaders {
|
pub struct OrgMemberHeaders {
|
||||||
pub host: String,
|
pub host: String,
|
||||||
|
pub device: Device,
|
||||||
pub user: User,
|
pub user: User,
|
||||||
pub org_id: OrganizationId,
|
pub membership: Membership,
|
||||||
|
pub ip: ClientIp,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rocket::async_trait]
|
#[rocket::async_trait]
|
||||||
@@ -882,8 +878,10 @@ impl<'r> FromRequest<'r> for OrgMemberHeaders {
|
|||||||
if headers.is_member() {
|
if headers.is_member() {
|
||||||
Outcome::Success(Self {
|
Outcome::Success(Self {
|
||||||
host: headers.host,
|
host: headers.host,
|
||||||
|
device: headers.device,
|
||||||
user: headers.user,
|
user: headers.user,
|
||||||
org_id: headers.membership.org_uuid,
|
membership: headers.membership,
|
||||||
|
ip: headers.ip,
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
err_handler!("You need to be a Member of the Organization to call this endpoint")
|
err_handler!("You need to be a Member of the Organization to call this endpoint")
|
||||||
@@ -891,6 +889,17 @@ impl<'r> FromRequest<'r> for OrgMemberHeaders {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<OrgMemberHeaders> for Headers {
|
||||||
|
fn from(h: OrgMemberHeaders) -> Headers {
|
||||||
|
Headers {
|
||||||
|
host: h.host,
|
||||||
|
device: h.device,
|
||||||
|
user: h.user,
|
||||||
|
ip: h.ip,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Client IP address detection
|
// Client IP address detection
|
||||||
//
|
//
|
||||||
|
|||||||
+15
-10
@@ -579,7 +579,7 @@ make_config! {
|
|||||||
authenticator_disable_time_drift: bool, true, def, false;
|
authenticator_disable_time_drift: bool, true, def, false;
|
||||||
|
|
||||||
/// Customize the enabled feature flags on the clients |> This is a comma separated list of feature flags to enable.
|
/// Customize the enabled feature flags on the clients |> This is a comma separated list of feature flags to enable.
|
||||||
experimental_client_feature_flags: String, false, def, "fido2-vault-credentials".to_string();
|
experimental_client_feature_flags: String, false, def, String::new();
|
||||||
|
|
||||||
/// Require new device emails |> When a user logs in an email is required to be sent.
|
/// Require new device emails |> When a user logs in an email is required to be sent.
|
||||||
/// If sending the email fails the login attempt will fail.
|
/// If sending the email fails the login attempt will fail.
|
||||||
@@ -833,21 +833,25 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: deal with deprecated flags so they can be removed from this list, cf. #4263
|
// Server (v2025.5.0): https://github.com/bitwarden/server/blob/4a7db112a0952c6df8bacf36c317e9c4e58c3651/src/Core/Constants.cs#L102
|
||||||
|
// Client (v2025.5.0): https://github.com/bitwarden/clients/blob/9df8a3cc50ed45f52513e62c23fcc8a4b745f078/libs/common/src/enums/feature-flag.enum.ts#L10
|
||||||
|
// Android (v2025.4.0): https://github.com/bitwarden/android/blob/bee09de972c3870de0d54a0067996be473ec55c7/app/src/main/java/com/x8bit/bitwarden/data/platform/manager/model/FlagKey.kt#L27
|
||||||
|
// iOS (v2025.4.0): https://github.com/bitwarden/ios/blob/956e05db67344c912e3a1b8cb2609165d67da1c9/BitwardenShared/Core/Platform/Models/Enum/FeatureFlag.swift#L7
|
||||||
|
//
|
||||||
|
// NOTE: Move deprecated flags to the utils::parse_experimental_client_feature_flags() DEPRECATED_FLAGS const!
|
||||||
const KNOWN_FLAGS: &[&str] = &[
|
const KNOWN_FLAGS: &[&str] = &[
|
||||||
"autofill-overlay",
|
// Autofill Team
|
||||||
"autofill-v2",
|
|
||||||
"browser-fileless-import",
|
|
||||||
"extension-refresh",
|
|
||||||
"fido2-vault-credentials",
|
|
||||||
"inline-menu-positioning-improvements",
|
"inline-menu-positioning-improvements",
|
||||||
"ssh-key-vault-item",
|
"inline-menu-totp",
|
||||||
"ssh-agent",
|
"ssh-agent",
|
||||||
|
// Key Management Team
|
||||||
|
"ssh-key-vault-item",
|
||||||
|
// Tools
|
||||||
|
"export-attachments",
|
||||||
|
// Mobile Team
|
||||||
"anon-addy-self-host-alias",
|
"anon-addy-self-host-alias",
|
||||||
"simple-login-self-host-alias",
|
"simple-login-self-host-alias",
|
||||||
"mutual-tls",
|
"mutual-tls",
|
||||||
"export-attachments",
|
|
||||||
"inline-menu-totp",
|
|
||||||
];
|
];
|
||||||
let configured_flags = parse_experimental_client_feature_flags(&cfg.experimental_client_feature_flags);
|
let configured_flags = parse_experimental_client_feature_flags(&cfg.experimental_client_feature_flags);
|
||||||
let invalid_flags: Vec<_> = configured_flags.keys().filter(|flag| !KNOWN_FLAGS.contains(&flag.as_str())).collect();
|
let invalid_flags: Vec<_> = configured_flags.keys().filter(|flag| !KNOWN_FLAGS.contains(&flag.as_str())).collect();
|
||||||
@@ -1373,6 +1377,7 @@ where
|
|||||||
reg!("email/email_footer_text");
|
reg!("email/email_footer_text");
|
||||||
|
|
||||||
reg!("email/admin_reset_password", ".html");
|
reg!("email/admin_reset_password", ".html");
|
||||||
|
reg!("email/change_email_existing", ".html");
|
||||||
reg!("email/change_email", ".html");
|
reg!("email/change_email", ".html");
|
||||||
reg!("email/delete_account", ".html");
|
reg!("email/delete_account", ".html");
|
||||||
reg!("email/emergency_access_invite_accepted", ".html");
|
reg!("email/emergency_access_invite_accepted", ".html");
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ db_object! {
|
|||||||
pub organization_uuid: Option<OrganizationId>,
|
pub organization_uuid: Option<OrganizationId>,
|
||||||
|
|
||||||
pub request_device_identifier: DeviceId,
|
pub request_device_identifier: DeviceId,
|
||||||
pub device_type: i32, // https://github.com/bitwarden/server/blob/master/src/Core/Enums/DeviceType.cs
|
pub device_type: i32, // https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/Enums/DeviceType.cs
|
||||||
|
|
||||||
pub request_ip: String,
|
pub request_ip: String,
|
||||||
pub response_device_id: Option<DeviceId>,
|
pub response_device_id: Option<DeviceId>,
|
||||||
|
|||||||
@@ -318,7 +318,7 @@ impl Cipher {
|
|||||||
// supports the "cipherDetails" type, though it seems like the
|
// supports the "cipherDetails" type, though it seems like the
|
||||||
// Bitwarden clients will ignore extra fields.
|
// Bitwarden clients will ignore extra fields.
|
||||||
//
|
//
|
||||||
// Ref: https://github.com/bitwarden/server/blob/master/src/Core/Models/Api/Response/CipherResponseModel.cs
|
// Ref: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/Vault/Models/Response/CipherResponseModel.cs#L14
|
||||||
let mut json_object = json!({
|
let mut json_object = json!({
|
||||||
"object": "cipherDetails",
|
"object": "cipherDetails",
|
||||||
"id": self.uuid,
|
"id": self.uuid,
|
||||||
|
|||||||
+29
-12
@@ -3,8 +3,12 @@ use derive_more::{Display, From};
|
|||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
|
|
||||||
use super::{AuthRequest, UserId};
|
use super::{AuthRequest, UserId};
|
||||||
use crate::{crypto, util::format_date, CONFIG};
|
use crate::{
|
||||||
use macros::IdFromParam;
|
crypto,
|
||||||
|
util::{format_date, get_uuid},
|
||||||
|
CONFIG,
|
||||||
|
};
|
||||||
|
use macros::{IdFromParam, UuidFromParam};
|
||||||
|
|
||||||
db_object! {
|
db_object! {
|
||||||
#[derive(Identifiable, Queryable, Insertable, AsChangeset)]
|
#[derive(Identifiable, Queryable, Insertable, AsChangeset)]
|
||||||
@@ -19,8 +23,8 @@ db_object! {
|
|||||||
pub user_uuid: UserId,
|
pub user_uuid: UserId,
|
||||||
|
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub atype: i32, // https://github.com/bitwarden/server/blob/dcc199bcce4aa2d5621f6fab80f1b49d8b143418/src/Core/Enums/DeviceType.cs
|
pub atype: i32, // https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/Enums/DeviceType.cs
|
||||||
pub push_uuid: Option<String>,
|
pub push_uuid: Option<PushId>,
|
||||||
pub push_token: Option<String>,
|
pub push_token: Option<String>,
|
||||||
|
|
||||||
pub refresh_token: String,
|
pub refresh_token: String,
|
||||||
@@ -42,7 +46,7 @@ impl Device {
|
|||||||
name,
|
name,
|
||||||
atype,
|
atype,
|
||||||
|
|
||||||
push_uuid: None,
|
push_uuid: Some(PushId(get_uuid())),
|
||||||
push_token: None,
|
push_token: None,
|
||||||
refresh_token: String::new(),
|
refresh_token: String::new(),
|
||||||
twofactor_remember: None,
|
twofactor_remember: None,
|
||||||
@@ -54,7 +58,7 @@ impl Device {
|
|||||||
"id": self.uuid,
|
"id": self.uuid,
|
||||||
"name": self.name,
|
"name": self.name,
|
||||||
"type": self.atype,
|
"type": self.atype,
|
||||||
"identifier": self.push_uuid,
|
"identifier": self.uuid,
|
||||||
"creationDate": format_date(&self.created_at),
|
"creationDate": format_date(&self.created_at),
|
||||||
"isTrusted": false,
|
"isTrusted": false,
|
||||||
"object":"device"
|
"object":"device"
|
||||||
@@ -73,7 +77,12 @@ impl Device {
|
|||||||
self.twofactor_remember = None;
|
self.twofactor_remember = None;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn refresh_tokens(&mut self, user: &super::User, scope: Vec<String>) -> (String, i64) {
|
pub fn refresh_tokens(
|
||||||
|
&mut self,
|
||||||
|
user: &super::User,
|
||||||
|
scope: Vec<String>,
|
||||||
|
client_id: Option<String>,
|
||||||
|
) -> (String, i64) {
|
||||||
// If there is no refresh token, we create one
|
// If there is no refresh token, we create one
|
||||||
if self.refresh_token.is_empty() {
|
if self.refresh_token.is_empty() {
|
||||||
use data_encoding::BASE64URL;
|
use data_encoding::BASE64URL;
|
||||||
@@ -84,6 +93,11 @@ impl Device {
|
|||||||
let time_now = Utc::now();
|
let time_now = Utc::now();
|
||||||
self.updated_at = time_now.naive_utc();
|
self.updated_at = time_now.naive_utc();
|
||||||
|
|
||||||
|
// Generate a random push_uuid so if it doesn't already have one
|
||||||
|
if self.push_uuid.is_none() {
|
||||||
|
self.push_uuid = Some(PushId(get_uuid()));
|
||||||
|
}
|
||||||
|
|
||||||
// ---
|
// ---
|
||||||
// Disabled these keys to be added to the JWT since they could cause the JWT to get too large
|
// Disabled these keys to be added to the JWT since they could cause the JWT to get too large
|
||||||
// Also These key/value pairs are not used anywhere by either Vaultwarden or Bitwarden Clients
|
// Also These key/value pairs are not used anywhere by either Vaultwarden or Bitwarden Clients
|
||||||
@@ -121,6 +135,8 @@ impl Device {
|
|||||||
// orgmanager,
|
// orgmanager,
|
||||||
sstamp: user.security_stamp.clone(),
|
sstamp: user.security_stamp.clone(),
|
||||||
device: self.uuid.clone(),
|
device: self.uuid.clone(),
|
||||||
|
devicetype: DeviceType::from_i32(self.atype).to_string(),
|
||||||
|
client_id: client_id.unwrap_or("undefined".to_string()),
|
||||||
scope,
|
scope,
|
||||||
amr: vec!["Application".into()],
|
amr: vec!["Application".into()],
|
||||||
};
|
};
|
||||||
@@ -132,10 +148,6 @@ impl Device {
|
|||||||
matches!(DeviceType::from_i32(self.atype), DeviceType::Android | DeviceType::Ios)
|
matches!(DeviceType::from_i32(self.atype), DeviceType::Android | DeviceType::Ios)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn is_registered(&self) -> bool {
|
|
||||||
self.push_uuid.is_some()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn is_cli(&self) -> bool {
|
pub fn is_cli(&self) -> bool {
|
||||||
matches!(DeviceType::from_i32(self.atype), DeviceType::WindowsCLI | DeviceType::MacOsCLI | DeviceType::LinuxCLI)
|
matches!(DeviceType::from_i32(self.atype), DeviceType::WindowsCLI | DeviceType::MacOsCLI | DeviceType::LinuxCLI)
|
||||||
}
|
}
|
||||||
@@ -156,10 +168,12 @@ impl DeviceWithAuthRequest {
|
|||||||
"id": self.device.uuid,
|
"id": self.device.uuid,
|
||||||
"name": self.device.name,
|
"name": self.device.name,
|
||||||
"type": self.device.atype,
|
"type": self.device.atype,
|
||||||
"identifier": self.device.push_uuid,
|
"identifier": self.device.uuid,
|
||||||
"creationDate": format_date(&self.device.created_at),
|
"creationDate": format_date(&self.device.created_at),
|
||||||
"devicePendingAuthRequest": auth_request,
|
"devicePendingAuthRequest": auth_request,
|
||||||
"isTrusted": false,
|
"isTrusted": false,
|
||||||
|
"encryptedPublicKey": null,
|
||||||
|
"encryptedUserKey": null,
|
||||||
"object": "device",
|
"object": "device",
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -395,3 +409,6 @@ impl DeviceType {
|
|||||||
Clone, Debug, DieselNewType, Display, From, FromForm, Hash, PartialEq, Eq, Serialize, Deserialize, IdFromParam,
|
Clone, Debug, DieselNewType, Display, From, FromForm, Hash, PartialEq, Eq, Serialize, Deserialize, IdFromParam,
|
||||||
)]
|
)]
|
||||||
pub struct DeviceId(String);
|
pub struct DeviceId(String);
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, DieselNewType, Display, From, FromForm, Serialize, Deserialize, UuidFromParam)]
|
||||||
|
pub struct PushId(pub String);
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ impl EmergencyAccess {
|
|||||||
"grantorId": grantor_user.uuid,
|
"grantorId": grantor_user.uuid,
|
||||||
"email": grantor_user.email,
|
"email": grantor_user.email,
|
||||||
"name": grantor_user.name,
|
"name": grantor_user.name,
|
||||||
|
"avatarColor": grantor_user.avatar_color,
|
||||||
"object": "emergencyAccessGrantorDetails",
|
"object": "emergencyAccessGrantorDetails",
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -106,6 +107,7 @@ impl EmergencyAccess {
|
|||||||
"granteeId": grantee_user.uuid,
|
"granteeId": grantee_user.uuid,
|
||||||
"email": grantee_user.email,
|
"email": grantee_user.email,
|
||||||
"name": grantee_user.name,
|
"name": grantee_user.name,
|
||||||
|
"avatarColor": grantee_user.avatar_color,
|
||||||
"object": "emergencyAccessGranteeDetails",
|
"object": "emergencyAccessGranteeDetails",
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-10
@@ -8,9 +8,9 @@ use crate::{api::EmptyResult, db::DbConn, error::MapResult, CONFIG};
|
|||||||
// https://bitwarden.com/help/event-logs/
|
// https://bitwarden.com/help/event-logs/
|
||||||
|
|
||||||
db_object! {
|
db_object! {
|
||||||
// Upstream: https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Core/Services/Implementations/EventService.cs
|
// Upstream: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Services/Implementations/EventService.cs
|
||||||
// Upstream: https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Api/Models/Public/Response/EventResponseModel.cs
|
// Upstream: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/AdminConsole/Public/Models/Response/EventResponseModel.cs
|
||||||
// Upstream SQL: https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Sql/dbo/Tables/Event.sql
|
// Upstream SQL: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Sql/dbo/Tables/Event.sql
|
||||||
#[derive(Identifiable, Queryable, Insertable, AsChangeset)]
|
#[derive(Identifiable, Queryable, Insertable, AsChangeset)]
|
||||||
#[diesel(table_name = event)]
|
#[diesel(table_name = event)]
|
||||||
#[diesel(treat_none_as_null = true)]
|
#[diesel(treat_none_as_null = true)]
|
||||||
@@ -25,7 +25,7 @@ db_object! {
|
|||||||
pub group_uuid: Option<GroupId>,
|
pub group_uuid: Option<GroupId>,
|
||||||
pub org_user_uuid: Option<MembershipId>,
|
pub org_user_uuid: Option<MembershipId>,
|
||||||
pub act_user_uuid: Option<UserId>,
|
pub act_user_uuid: Option<UserId>,
|
||||||
// Upstream enum: https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Core/Enums/DeviceType.cs
|
// Upstream enum: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/Enums/DeviceType.cs
|
||||||
pub device_type: Option<i32>,
|
pub device_type: Option<i32>,
|
||||||
pub ip_address: Option<String>,
|
pub ip_address: Option<String>,
|
||||||
pub event_date: NaiveDateTime,
|
pub event_date: NaiveDateTime,
|
||||||
@@ -36,7 +36,7 @@ db_object! {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Upstream enum: https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Core/Enums/EventType.cs
|
// Upstream enum: https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Enums/EventType.cs
|
||||||
#[derive(Debug, Copy, Clone)]
|
#[derive(Debug, Copy, Clone)]
|
||||||
pub enum EventType {
|
pub enum EventType {
|
||||||
// User
|
// User
|
||||||
@@ -72,7 +72,6 @@ pub enum EventType {
|
|||||||
CipherSoftDeleted = 1115,
|
CipherSoftDeleted = 1115,
|
||||||
CipherRestored = 1116,
|
CipherRestored = 1116,
|
||||||
CipherClientToggledCardNumberVisible = 1117,
|
CipherClientToggledCardNumberVisible = 1117,
|
||||||
CipherClientToggledTOTPSeedVisible = 1118,
|
|
||||||
|
|
||||||
// Collection
|
// Collection
|
||||||
CollectionCreated = 1300,
|
CollectionCreated = 1300,
|
||||||
@@ -88,7 +87,7 @@ pub enum EventType {
|
|||||||
OrganizationUserInvited = 1500,
|
OrganizationUserInvited = 1500,
|
||||||
OrganizationUserConfirmed = 1501,
|
OrganizationUserConfirmed = 1501,
|
||||||
OrganizationUserUpdated = 1502,
|
OrganizationUserUpdated = 1502,
|
||||||
OrganizationUserRemoved = 1503,
|
OrganizationUserRemoved = 1503, // Organization user data was deleted
|
||||||
OrganizationUserUpdatedGroups = 1504,
|
OrganizationUserUpdatedGroups = 1504,
|
||||||
// OrganizationUserUnlinkedSso = 1505, // Not supported
|
// OrganizationUserUnlinkedSso = 1505, // Not supported
|
||||||
OrganizationUserResetPasswordEnroll = 1506,
|
OrganizationUserResetPasswordEnroll = 1506,
|
||||||
@@ -100,8 +99,8 @@ pub enum EventType {
|
|||||||
OrganizationUserRestored = 1512,
|
OrganizationUserRestored = 1512,
|
||||||
OrganizationUserApprovedAuthRequest = 1513,
|
OrganizationUserApprovedAuthRequest = 1513,
|
||||||
OrganizationUserRejectedAuthRequest = 1514,
|
OrganizationUserRejectedAuthRequest = 1514,
|
||||||
OrganizationUserDeleted = 1515,
|
OrganizationUserDeleted = 1515, // Both user and organization user data were deleted
|
||||||
OrganizationUserLeft = 1516,
|
OrganizationUserLeft = 1516, // User voluntarily left the organization
|
||||||
|
|
||||||
// Organization
|
// Organization
|
||||||
OrganizationUpdated = 1600,
|
OrganizationUpdated = 1600,
|
||||||
@@ -188,7 +187,7 @@ impl Event {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Database methods
|
/// Database methods
|
||||||
/// https://github.com/bitwarden/server/blob/8a22c0479e987e756ce7412c48a732f9002f0a2d/src/Core/Services/Implementations/EventService.cs
|
/// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Services/Implementations/EventService.cs
|
||||||
impl Event {
|
impl Event {
|
||||||
pub const PAGE_SIZE: i64 = 30;
|
pub const PAGE_SIZE: i64 = 30;
|
||||||
|
|
||||||
|
|||||||
@@ -68,16 +68,11 @@ impl Group {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn to_json(&self) -> Value {
|
pub fn to_json(&self) -> Value {
|
||||||
use crate::util::format_date;
|
|
||||||
|
|
||||||
json!({
|
json!({
|
||||||
"id": self.uuid,
|
"id": self.uuid,
|
||||||
"organizationId": self.organizations_uuid,
|
"organizationId": self.organizations_uuid,
|
||||||
"name": self.name,
|
"name": self.name,
|
||||||
"accessAll": self.access_all,
|
|
||||||
"externalId": self.external_id,
|
"externalId": self.external_id,
|
||||||
"creationDate": format_date(&self.creation_date),
|
|
||||||
"revisionDate": format_date(&self.revision_date),
|
|
||||||
"object": "group"
|
"object": "group"
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ pub use self::attachment::{Attachment, AttachmentId};
|
|||||||
pub use self::auth_request::{AuthRequest, AuthRequestId};
|
pub use self::auth_request::{AuthRequest, AuthRequestId};
|
||||||
pub use self::cipher::{Cipher, CipherId, RepromptType};
|
pub use self::cipher::{Cipher, CipherId, RepromptType};
|
||||||
pub use self::collection::{Collection, CollectionCipher, CollectionId, CollectionUser};
|
pub use self::collection::{Collection, CollectionCipher, CollectionId, CollectionUser};
|
||||||
pub use self::device::{Device, DeviceId, DeviceType};
|
pub use self::device::{Device, DeviceId, DeviceType, PushId};
|
||||||
pub use self::emergency_access::{EmergencyAccess, EmergencyAccessId, EmergencyAccessStatus, EmergencyAccessType};
|
pub use self::emergency_access::{EmergencyAccess, EmergencyAccessId, EmergencyAccessStatus, EmergencyAccessType};
|
||||||
pub use self::event::{Event, EventType};
|
pub use self::event::{Event, EventType};
|
||||||
pub use self::favorite::Favorite;
|
pub use self::favorite::Favorite;
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ db_object! {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/abfdf6f5cb0f1f1504dbaaaa0e04ce9cb60faf19/src/Core/AdminConsole/Enums/PolicyType.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Enums/PolicyType.cs
|
||||||
#[derive(Copy, Clone, Eq, PartialEq, num_derive::FromPrimitive)]
|
#[derive(Copy, Clone, Eq, PartialEq, num_derive::FromPrimitive)]
|
||||||
pub enum OrgPolicyType {
|
pub enum OrgPolicyType {
|
||||||
TwoFactorAuthentication = 0,
|
TwoFactorAuthentication = 0,
|
||||||
@@ -41,7 +41,7 @@ pub enum OrgPolicyType {
|
|||||||
RemoveUnlockWithPin = 14,
|
RemoveUnlockWithPin = 14,
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/5cbdee137921a19b1f722920f0fa3cd45af2ef0f/src/Core/Models/Data/Organizations/Policies/SendOptionsPolicyData.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Models/Data/Organizations/Policies/SendOptionsPolicyData.cs#L5
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct SendOptionsPolicyData {
|
pub struct SendOptionsPolicyData {
|
||||||
@@ -49,7 +49,7 @@ pub struct SendOptionsPolicyData {
|
|||||||
pub disable_hide_email: bool,
|
pub disable_hide_email: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/5cbdee137921a19b1f722920f0fa3cd45af2ef0f/src/Core/Models/Data/Organizations/Policies/ResetPasswordDataModel.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Models/Data/Organizations/Policies/ResetPasswordDataModel.cs
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct ResetPasswordDataModel {
|
pub struct ResetPasswordDataModel {
|
||||||
@@ -83,14 +83,24 @@ impl OrgPolicy {
|
|||||||
|
|
||||||
pub fn to_json(&self) -> Value {
|
pub fn to_json(&self) -> Value {
|
||||||
let data_json: Value = serde_json::from_str(&self.data).unwrap_or(Value::Null);
|
let data_json: Value = serde_json::from_str(&self.data).unwrap_or(Value::Null);
|
||||||
json!({
|
let mut policy = json!({
|
||||||
"id": self.uuid,
|
"id": self.uuid,
|
||||||
"organizationId": self.org_uuid,
|
"organizationId": self.org_uuid,
|
||||||
"type": self.atype,
|
"type": self.atype,
|
||||||
"data": data_json,
|
"data": data_json,
|
||||||
"enabled": self.enabled,
|
"enabled": self.enabled,
|
||||||
"object": "policy",
|
"object": "policy",
|
||||||
})
|
});
|
||||||
|
|
||||||
|
// Upstream adds this key/value
|
||||||
|
// Allow enabling Single Org policy when the organization has claimed domains.
|
||||||
|
// See: (https://github.com/bitwarden/server/pull/5565)
|
||||||
|
// We return the same to prevent possible issues
|
||||||
|
if self.atype == 8i32 {
|
||||||
|
policy["canToggleState"] = json!(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
policy
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ db_object! {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/b86a04cef9f1e1b82cf18e49fc94e017c641130c/src/Core/Enums/OrganizationUserStatusType.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Core/AdminConsole/Enums/OrganizationUserStatusType.cs
|
||||||
#[derive(PartialEq)]
|
#[derive(PartialEq)]
|
||||||
pub enum MembershipStatus {
|
pub enum MembershipStatus {
|
||||||
Revoked = -1,
|
Revoked = -1,
|
||||||
@@ -177,7 +177,7 @@ impl Organization {
|
|||||||
public_key,
|
public_key,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// https://github.com/bitwarden/server/blob/13d1e74d6960cf0d042620b72d85bf583a4236f7/src/Api/Models/Response/Organizations/OrganizationResponseModel.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/AdminConsole/Models/Response/Organizations/OrganizationResponseModel.cs
|
||||||
pub fn to_json(&self) -> Value {
|
pub fn to_json(&self) -> Value {
|
||||||
json!({
|
json!({
|
||||||
"id": self.uuid,
|
"id": self.uuid,
|
||||||
@@ -203,7 +203,6 @@ impl Organization {
|
|||||||
"useResetPassword": CONFIG.mail_enabled(),
|
"useResetPassword": CONFIG.mail_enabled(),
|
||||||
"allowAdminAccessToAllCollectionItems": true,
|
"allowAdminAccessToAllCollectionItems": true,
|
||||||
"limitCollectionCreation": true,
|
"limitCollectionCreation": true,
|
||||||
"limitCollectionCreationDeletion": true,
|
|
||||||
"limitCollectionDeletion": true,
|
"limitCollectionDeletion": true,
|
||||||
|
|
||||||
"businessName": self.name,
|
"businessName": self.name,
|
||||||
@@ -424,7 +423,7 @@ impl Membership {
|
|||||||
"manageScim": false // Not supported (Not AGPLv3 Licensed)
|
"manageScim": false // Not supported (Not AGPLv3 Licensed)
|
||||||
});
|
});
|
||||||
|
|
||||||
// https://github.com/bitwarden/server/blob/13d1e74d6960cf0d042620b72d85bf583a4236f7/src/Api/Models/Response/ProfileOrganizationResponseModel.cs
|
// https://github.com/bitwarden/server/blob/9ebe16587175b1c0e9208f84397bb75d0d595510/src/Api/AdminConsole/Models/Response/ProfileOrganizationResponseModel.cs
|
||||||
json!({
|
json!({
|
||||||
"id": self.org_uuid,
|
"id": self.org_uuid,
|
||||||
"identifier": null, // Not supported
|
"identifier": null, // Not supported
|
||||||
@@ -451,6 +450,8 @@ impl Membership {
|
|||||||
"usePasswordManager": true,
|
"usePasswordManager": true,
|
||||||
"useCustomPermissions": true,
|
"useCustomPermissions": true,
|
||||||
"useActivateAutofillPolicy": false,
|
"useActivateAutofillPolicy": false,
|
||||||
|
"useAdminSponsoredFamilies": false,
|
||||||
|
"useRiskInsights": false, // Not supported (Not AGPLv3 Licensed)
|
||||||
|
|
||||||
"organizationUserId": self.uuid,
|
"organizationUserId": self.uuid,
|
||||||
"providerId": null,
|
"providerId": null,
|
||||||
@@ -458,7 +459,6 @@ impl Membership {
|
|||||||
"providerType": null,
|
"providerType": null,
|
||||||
"familySponsorshipFriendlyName": null,
|
"familySponsorshipFriendlyName": null,
|
||||||
"familySponsorshipAvailable": false,
|
"familySponsorshipAvailable": false,
|
||||||
"planProductType": 3,
|
|
||||||
"productTierType": 3, // Enterprise tier
|
"productTierType": 3, // Enterprise tier
|
||||||
"keyConnectorEnabled": false,
|
"keyConnectorEnabled": false,
|
||||||
"keyConnectorUrl": null,
|
"keyConnectorUrl": null,
|
||||||
@@ -467,10 +467,11 @@ impl Membership {
|
|||||||
"familySponsorshipToDelete": null,
|
"familySponsorshipToDelete": null,
|
||||||
"accessSecretsManager": false,
|
"accessSecretsManager": false,
|
||||||
"limitCollectionCreation": self.atype < MembershipType::Manager, // If less then a manager return true, to limit collection creations
|
"limitCollectionCreation": self.atype < MembershipType::Manager, // If less then a manager return true, to limit collection creations
|
||||||
"limitCollectionCreationDeletion": true,
|
|
||||||
"limitCollectionDeletion": true,
|
"limitCollectionDeletion": true,
|
||||||
|
"limitItemDeletion": false,
|
||||||
"allowAdminAccessToAllCollectionItems": true,
|
"allowAdminAccessToAllCollectionItems": true,
|
||||||
"userIsManagedByOrganization": false, // Means not managed via the Members UI, like SSO
|
"userIsManagedByOrganization": false, // Means not managed via the Members UI, like SSO
|
||||||
|
"userIsClaimedByOrganization": false, // The new key instead of the obsolete userIsManagedByOrganization
|
||||||
|
|
||||||
"permissions": permissions,
|
"permissions": permissions,
|
||||||
|
|
||||||
@@ -616,6 +617,8 @@ impl Membership {
|
|||||||
"permissions": permissions,
|
"permissions": permissions,
|
||||||
|
|
||||||
"ssoBound": false, // Not supported
|
"ssoBound": false, // Not supported
|
||||||
|
"managedByOrganization": false, // This key is obsolete replaced by claimedByOrganization
|
||||||
|
"claimedByOrganization": false, // Means not managed via the Members UI, like SSO
|
||||||
"usesKeyConnector": false, // Not supported
|
"usesKeyConnector": false, // Not supported
|
||||||
"accessSecretsManager": false, // Not supported (Not AGPLv3 Licensed)
|
"accessSecretsManager": false, // Not supported (Not AGPLv3 Licensed)
|
||||||
|
|
||||||
@@ -863,6 +866,21 @@ impl Membership {
|
|||||||
}}
|
}}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get all users which are either owner or admin, or a manager which can manage/access all
|
||||||
|
pub async fn find_confirmed_and_manage_all_by_org(org_uuid: &OrganizationId, conn: &mut DbConn) -> Vec<Self> {
|
||||||
|
db_run! { conn: {
|
||||||
|
users_organizations::table
|
||||||
|
.filter(users_organizations::org_uuid.eq(org_uuid))
|
||||||
|
.filter(users_organizations::status.eq(MembershipStatus::Confirmed as i32))
|
||||||
|
.filter(
|
||||||
|
users_organizations::atype.eq_any(vec![MembershipType::Owner as i32, MembershipType::Admin as i32])
|
||||||
|
.or(users_organizations::atype.eq(MembershipType::Manager as i32).and(users_organizations::access_all.eq(true)))
|
||||||
|
)
|
||||||
|
.load::<MembershipDb>(conn)
|
||||||
|
.unwrap_or_default().from_db()
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn count_by_org(org_uuid: &OrganizationId, conn: &mut DbConn) -> i64 {
|
pub async fn count_by_org(org_uuid: &OrganizationId, conn: &mut DbConn) -> i64 {
|
||||||
db_run! { conn: {
|
db_run! { conn: {
|
||||||
users_organizations::table
|
users_organizations::table
|
||||||
|
|||||||
@@ -249,7 +249,6 @@ impl User {
|
|||||||
"emailVerified": !CONFIG.mail_enabled() || self.verified_at.is_some(),
|
"emailVerified": !CONFIG.mail_enabled() || self.verified_at.is_some(),
|
||||||
"premium": true,
|
"premium": true,
|
||||||
"premiumFromOrganization": false,
|
"premiumFromOrganization": false,
|
||||||
"masterPasswordHint": self.password_hint,
|
|
||||||
"culture": "en-US",
|
"culture": "en-US",
|
||||||
"twoFactorEnabled": twofactor_enabled,
|
"twoFactorEnabled": twofactor_enabled,
|
||||||
"key": self.akey,
|
"key": self.akey,
|
||||||
|
|||||||
+26
-2
@@ -59,6 +59,8 @@ use yubico::yubicoerror::YubicoError as YubiErr;
|
|||||||
#[derive(Serialize)]
|
#[derive(Serialize)]
|
||||||
pub struct Empty {}
|
pub struct Empty {}
|
||||||
|
|
||||||
|
pub struct Compact {}
|
||||||
|
|
||||||
// Error struct
|
// Error struct
|
||||||
// Contains a String error message, meant for the user and an enum variant, with an error of different types.
|
// Contains a String error message, meant for the user and an enum variant, with an error of different types.
|
||||||
//
|
//
|
||||||
@@ -69,6 +71,7 @@ make_error! {
|
|||||||
Empty(Empty): _no_source, _serialize,
|
Empty(Empty): _no_source, _serialize,
|
||||||
// Used to represent err! calls
|
// Used to represent err! calls
|
||||||
Simple(String): _no_source, _api_error,
|
Simple(String): _no_source, _api_error,
|
||||||
|
Compact(Compact): _no_source, _api_error_small,
|
||||||
|
|
||||||
// Used in our custom http client to handle non-global IPs and blocked domains
|
// Used in our custom http client to handle non-global IPs and blocked domains
|
||||||
CustomHttpClient(CustomHttpClientError): _has_source, _api_error,
|
CustomHttpClient(CustomHttpClientError): _has_source, _api_error,
|
||||||
@@ -132,6 +135,12 @@ impl Error {
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[must_use]
|
||||||
|
pub fn with_kind(mut self, kind: ErrorKind) -> Self {
|
||||||
|
self.error = kind;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub const fn with_code(mut self, code: u16) -> Self {
|
pub const fn with_code(mut self, code: u16) -> Self {
|
||||||
self.error_code = code;
|
self.error_code = code;
|
||||||
@@ -200,6 +209,18 @@ fn _api_error(_: &impl std::any::Any, msg: &str) -> String {
|
|||||||
_serialize(&json, "")
|
_serialize(&json, "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn _api_error_small(_: &impl std::any::Any, msg: &str) -> String {
|
||||||
|
let json = json!({
|
||||||
|
"message": msg,
|
||||||
|
"validationErrors": null,
|
||||||
|
"exceptionMessage": null,
|
||||||
|
"exceptionStackTrace": null,
|
||||||
|
"innerExceptionMessage": null,
|
||||||
|
"object": "error"
|
||||||
|
});
|
||||||
|
_serialize(&json, "")
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Rocket responder impl
|
// Rocket responder impl
|
||||||
//
|
//
|
||||||
@@ -212,8 +233,7 @@ use rocket::response::{self, Responder, Response};
|
|||||||
impl Responder<'_, 'static> for Error {
|
impl Responder<'_, 'static> for Error {
|
||||||
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
|
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
|
||||||
match self.error {
|
match self.error {
|
||||||
ErrorKind::Empty(_) => {} // Don't print the error in this situation
|
ErrorKind::Empty(_) | ErrorKind::Simple(_) | ErrorKind::Compact(_) => {} // Don't print the error in this situation
|
||||||
ErrorKind::Simple(_) => {} // Don't print the error in this situation
|
|
||||||
_ => error!(target: "error", "{self:#?}"),
|
_ => error!(target: "error", "{self:#?}"),
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -228,6 +248,10 @@ impl Responder<'_, 'static> for Error {
|
|||||||
//
|
//
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! err {
|
macro_rules! err {
|
||||||
|
($kind:ident, $msg:expr) => {{
|
||||||
|
error!("{}", $msg);
|
||||||
|
return Err($crate::error::Error::new($msg, $msg).with_kind($crate::error::ErrorKind::$kind($crate::error::$kind {})));
|
||||||
|
}};
|
||||||
($msg:expr) => {{
|
($msg:expr) => {{
|
||||||
error!("{}", $msg);
|
error!("{}", $msg);
|
||||||
return Err($crate::error::Error::new($msg, $msg));
|
return Err($crate::error::Error::new($msg, $msg));
|
||||||
|
|||||||
+14
@@ -570,6 +570,20 @@ pub async fn send_change_email(address: &str, token: &str) -> EmptyResult {
|
|||||||
send_email(address, &subject, body_html, body_text).await
|
send_email(address, &subject, body_html, body_text).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn send_change_email_existing(address: &str, acting_address: &str) -> EmptyResult {
|
||||||
|
let (subject, body_html, body_text) = get_text(
|
||||||
|
"email/change_email_existing",
|
||||||
|
json!({
|
||||||
|
"url": CONFIG.domain(),
|
||||||
|
"img_src": CONFIG._smtp_img_src(),
|
||||||
|
"existing_address": address,
|
||||||
|
"acting_address": acting_address,
|
||||||
|
}),
|
||||||
|
)?;
|
||||||
|
|
||||||
|
send_email(address, &subject, body_html, body_text).await
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn send_test(address: &str) -> EmptyResult {
|
pub async fn send_test(address: &str) -> EmptyResult {
|
||||||
let (subject, body_html, body_text) = get_text(
|
let (subject, body_html, body_text) = get_text(
|
||||||
"email/smtp_test",
|
"email/smtp_test",
|
||||||
|
|||||||
Vendored
+2
-2
@@ -38,8 +38,8 @@ img {
|
|||||||
max-width: 130px;
|
max-width: 130px;
|
||||||
}
|
}
|
||||||
#users-table .vw-actions, #orgs-table .vw-actions {
|
#users-table .vw-actions, #orgs-table .vw-actions {
|
||||||
min-width: 135px;
|
min-width: 155px;
|
||||||
max-width: 140px;
|
max-width: 160px;
|
||||||
}
|
}
|
||||||
#users-table .vw-org-cell {
|
#users-table .vw-org-cell {
|
||||||
max-height: 120px;
|
max-height: 120px;
|
||||||
|
|||||||
+11
-6
@@ -29,7 +29,7 @@ function isValidIp(ip) {
|
|||||||
return ipv4Regex.test(ip) || ipv6Regex.test(ip);
|
return ipv4Regex.test(ip) || ipv6Regex.test(ip);
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkVersions(platform, installed, latest, commit=null) {
|
function checkVersions(platform, installed, latest, commit=null, pre_release=false) {
|
||||||
if (installed === "-" || latest === "-") {
|
if (installed === "-" || latest === "-") {
|
||||||
document.getElementById(`${platform}-failed`).classList.remove("d-none");
|
document.getElementById(`${platform}-failed`).classList.remove("d-none");
|
||||||
return;
|
return;
|
||||||
@@ -37,10 +37,12 @@ function checkVersions(platform, installed, latest, commit=null) {
|
|||||||
|
|
||||||
// Only check basic versions, no commit revisions
|
// Only check basic versions, no commit revisions
|
||||||
if (commit === null || installed.indexOf("-") === -1) {
|
if (commit === null || installed.indexOf("-") === -1) {
|
||||||
if (installed !== latest) {
|
if (platform === "web" && pre_release === true) {
|
||||||
document.getElementById(`${platform}-warning`).classList.remove("d-none");
|
document.getElementById(`${platform}-prerelease`).classList.remove("d-none");
|
||||||
} else {
|
} else if (installed == latest) {
|
||||||
document.getElementById(`${platform}-success`).classList.remove("d-none");
|
document.getElementById(`${platform}-success`).classList.remove("d-none");
|
||||||
|
} else {
|
||||||
|
document.getElementById(`${platform}-warning`).classList.remove("d-none");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Check if this is a branched version.
|
// Check if this is a branched version.
|
||||||
@@ -86,7 +88,7 @@ async function generateSupportString(event, dj) {
|
|||||||
supportString += `* Running within a container: ${dj.running_within_container} (Base: ${dj.container_base_image})\n`;
|
supportString += `* Running within a container: ${dj.running_within_container} (Base: ${dj.container_base_image})\n`;
|
||||||
supportString += `* Database type: ${dj.db_type}\n`;
|
supportString += `* Database type: ${dj.db_type}\n`;
|
||||||
supportString += `* Database version: ${dj.db_version}\n`;
|
supportString += `* Database version: ${dj.db_version}\n`;
|
||||||
supportString += `* Environment settings overridden!: ${dj.overrides !== ""}\n`;
|
supportString += `* Uses config.json: ${dj.overrides !== ""}\n`;
|
||||||
supportString += `* Uses a reverse proxy: ${dj.ip_header_exists}\n`;
|
supportString += `* Uses a reverse proxy: ${dj.ip_header_exists}\n`;
|
||||||
if (dj.ip_header_exists) {
|
if (dj.ip_header_exists) {
|
||||||
supportString += `* IP Header check: ${dj.ip_header_match} (${dj.ip_header_name})\n`;
|
supportString += `* IP Header check: ${dj.ip_header_match} (${dj.ip_header_name})\n`;
|
||||||
@@ -94,6 +96,9 @@ async function generateSupportString(event, dj) {
|
|||||||
supportString += `* Internet access: ${dj.has_http_access}\n`;
|
supportString += `* Internet access: ${dj.has_http_access}\n`;
|
||||||
supportString += `* Internet access via a proxy: ${dj.uses_proxy}\n`;
|
supportString += `* Internet access via a proxy: ${dj.uses_proxy}\n`;
|
||||||
supportString += `* DNS Check: ${dnsCheck}\n`;
|
supportString += `* DNS Check: ${dnsCheck}\n`;
|
||||||
|
if (dj.tz_env !== "") {
|
||||||
|
supportString += `* TZ environment: ${dj.tz_env}\n`;
|
||||||
|
}
|
||||||
supportString += `* Browser/Server Time Check: ${timeCheck}\n`;
|
supportString += `* Browser/Server Time Check: ${timeCheck}\n`;
|
||||||
supportString += `* Server/NTP Time Check: ${ntpTimeCheck}\n`;
|
supportString += `* Server/NTP Time Check: ${ntpTimeCheck}\n`;
|
||||||
supportString += `* Domain Configuration Check: ${domainCheck}\n`;
|
supportString += `* Domain Configuration Check: ${domainCheck}\n`;
|
||||||
@@ -206,7 +211,7 @@ function initVersionCheck(dj) {
|
|||||||
if (!dj.running_within_container) {
|
if (!dj.running_within_container) {
|
||||||
const webInstalled = dj.web_vault_version;
|
const webInstalled = dj.web_vault_version;
|
||||||
const webLatest = dj.latest_web_build;
|
const webLatest = dj.latest_web_build;
|
||||||
checkVersions("web", webInstalled, webLatest);
|
checkVersions("web", webInstalled, webLatest, null, dj.web_vault_pre_release);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+9
-5
@@ -1,5 +1,5 @@
|
|||||||
/*!
|
/*!
|
||||||
* Bootstrap v5.3.4 (https://getbootstrap.com/)
|
* Bootstrap v5.3.6 (https://getbootstrap.com/)
|
||||||
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||||
*/
|
*/
|
||||||
@@ -647,7 +647,7 @@
|
|||||||
* Constants
|
* Constants
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const VERSION = '5.3.4';
|
const VERSION = '5.3.6';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class definition
|
* Class definition
|
||||||
@@ -673,6 +673,8 @@
|
|||||||
this[propertyName] = null;
|
this[propertyName] = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Private
|
||||||
_queueCallback(callback, element, isAnimated = true) {
|
_queueCallback(callback, element, isAnimated = true) {
|
||||||
executeAfterTransition(callback, element, isAnimated);
|
executeAfterTransition(callback, element, isAnimated);
|
||||||
}
|
}
|
||||||
@@ -1604,11 +1606,11 @@
|
|||||||
this._element.style[dimension] = '';
|
this._element.style[dimension] = '';
|
||||||
this._queueCallback(complete, this._element, true);
|
this._queueCallback(complete, this._element, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Private
|
||||||
_isShown(element = this._element) {
|
_isShown(element = this._element) {
|
||||||
return element.classList.contains(CLASS_NAME_SHOW$7);
|
return element.classList.contains(CLASS_NAME_SHOW$7);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Private
|
|
||||||
_configAfterMerge(config) {
|
_configAfterMerge(config) {
|
||||||
config.toggle = Boolean(config.toggle); // Coerce string values
|
config.toggle = Boolean(config.toggle); // Coerce string values
|
||||||
config.parent = getElement(config.parent);
|
config.parent = getElement(config.parent);
|
||||||
@@ -3688,6 +3690,9 @@
|
|||||||
this._element.setAttribute('aria-expanded', 'false');
|
this._element.setAttribute('aria-expanded', 'false');
|
||||||
Manipulator.removeDataAttribute(this._menu, 'popper');
|
Manipulator.removeDataAttribute(this._menu, 'popper');
|
||||||
EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);
|
EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);
|
||||||
|
|
||||||
|
// Explicitly return focus to the trigger element
|
||||||
|
this._element.focus();
|
||||||
}
|
}
|
||||||
_getConfig(config) {
|
_getConfig(config) {
|
||||||
config = super._getConfig(config);
|
config = super._getConfig(config);
|
||||||
@@ -6209,7 +6214,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Private
|
// Private
|
||||||
|
|
||||||
_maybeScheduleHide() {
|
_maybeScheduleHide() {
|
||||||
if (!this._config.autohide) {
|
if (!this._config.autohide) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
Vendored
+13
-32
@@ -1,6 +1,6 @@
|
|||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
/*!
|
/*!
|
||||||
* Bootstrap v5.3.4 (https://getbootstrap.com/)
|
* Bootstrap v5.3.6 (https://getbootstrap.com/)
|
||||||
* Copyright 2011-2025 The Bootstrap Authors
|
* Copyright 2011-2025 The Bootstrap Authors
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||||
*/
|
*/
|
||||||
@@ -2156,10 +2156,6 @@ progress {
|
|||||||
display: block;
|
display: block;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.form-control::-moz-placeholder {
|
|
||||||
color: var(--bs-secondary-color);
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.form-control::placeholder {
|
.form-control::placeholder {
|
||||||
color: var(--bs-secondary-color);
|
color: var(--bs-secondary-color);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
@@ -2629,17 +2625,10 @@ textarea.form-control-lg {
|
|||||||
.form-floating > .form-control-plaintext {
|
.form-floating > .form-control-plaintext {
|
||||||
padding: 1rem 0.75rem;
|
padding: 1rem 0.75rem;
|
||||||
}
|
}
|
||||||
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
|
|
||||||
color: transparent;
|
|
||||||
}
|
|
||||||
.form-floating > .form-control::placeholder,
|
.form-floating > .form-control::placeholder,
|
||||||
.form-floating > .form-control-plaintext::placeholder {
|
.form-floating > .form-control-plaintext::placeholder {
|
||||||
color: transparent;
|
color: transparent;
|
||||||
}
|
}
|
||||||
.form-floating > .form-control:not(:-moz-placeholder), .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
|
|
||||||
padding-top: 1.625rem;
|
|
||||||
padding-bottom: 0.625rem;
|
|
||||||
}
|
|
||||||
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
|
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
|
||||||
.form-floating > .form-control-plaintext:focus,
|
.form-floating > .form-control-plaintext:focus,
|
||||||
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
|
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
|
||||||
@@ -2656,9 +2645,6 @@ textarea.form-control-lg {
|
|||||||
padding-bottom: 0.625rem;
|
padding-bottom: 0.625rem;
|
||||||
padding-left: 0.75rem;
|
padding-left: 0.75rem;
|
||||||
}
|
}
|
||||||
.form-floating > .form-control:not(:-moz-placeholder) ~ label {
|
|
||||||
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
||||||
}
|
|
||||||
.form-floating > .form-control:focus ~ label,
|
.form-floating > .form-control:focus ~ label,
|
||||||
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
||||||
.form-floating > .form-control-plaintext ~ label,
|
.form-floating > .form-control-plaintext ~ label,
|
||||||
@@ -2668,15 +2654,6 @@ textarea.form-control-lg {
|
|||||||
.form-floating > .form-control:-webkit-autofill ~ label {
|
.form-floating > .form-control:-webkit-autofill ~ label {
|
||||||
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
||||||
}
|
}
|
||||||
.form-floating > textarea:not(:-moz-placeholder) ~ label::after {
|
|
||||||
position: absolute;
|
|
||||||
inset: 1rem 0.375rem;
|
|
||||||
z-index: -1;
|
|
||||||
height: 1.5em;
|
|
||||||
content: "";
|
|
||||||
background-color: var(--bs-body-bg);
|
|
||||||
border-radius: var(--bs-border-radius);
|
|
||||||
}
|
|
||||||
.form-floating > textarea:focus ~ label::after,
|
.form-floating > textarea:focus ~ label::after,
|
||||||
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
|
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -4540,24 +4517,24 @@ textarea.form-control-lg {
|
|||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
}
|
}
|
||||||
.card-group > .card:not(:last-child) .card-img-top,
|
.card-group > .card:not(:last-child) > .card-img-top,
|
||||||
.card-group > .card:not(:last-child) .card-header {
|
.card-group > .card:not(:last-child) > .card-header {
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
}
|
}
|
||||||
.card-group > .card:not(:last-child) .card-img-bottom,
|
.card-group > .card:not(:last-child) > .card-img-bottom,
|
||||||
.card-group > .card:not(:last-child) .card-footer {
|
.card-group > .card:not(:last-child) > .card-footer {
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
}
|
}
|
||||||
.card-group > .card:not(:first-child) {
|
.card-group > .card:not(:first-child) {
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
.card-group > .card:not(:first-child) .card-img-top,
|
.card-group > .card:not(:first-child) > .card-img-top,
|
||||||
.card-group > .card:not(:first-child) .card-header {
|
.card-group > .card:not(:first-child) > .card-header {
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
}
|
}
|
||||||
.card-group > .card:not(:first-child) .card-img-bottom,
|
.card-group > .card:not(:first-child) > .card-img-bottom,
|
||||||
.card-group > .card:not(:first-child) .card-footer {
|
.card-group > .card:not(:first-child) > .card-footer {
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -7179,6 +7156,10 @@ textarea.form-control-lg {
|
|||||||
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
|
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
}
|
}
|
||||||
|
.visually-hidden *,
|
||||||
|
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
|
|
||||||
.stretched-link::after {
|
.stretched-link::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|||||||
Vendored
+105
-16
@@ -4,10 +4,10 @@
|
|||||||
*
|
*
|
||||||
* To rebuild or modify this file with the latest versions of the included
|
* To rebuild or modify this file with the latest versions of the included
|
||||||
* software please visit:
|
* software please visit:
|
||||||
* https://datatables.net/download/#bs5/dt-2.2.2
|
* https://datatables.net/download/#bs5/dt-2.3.1
|
||||||
*
|
*
|
||||||
* Included libraries:
|
* Included libraries:
|
||||||
* DataTables 2.2.2
|
* DataTables 2.3.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
@@ -104,24 +104,14 @@ table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
|
|||||||
content: "\25BC";
|
content: "\25BC";
|
||||||
content: "\25BC"/"";
|
content: "\25BC"/"";
|
||||||
}
|
}
|
||||||
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc,
|
|
||||||
table.dataTable thead > tr > td.dt-orderable-asc,
|
|
||||||
table.dataTable thead > tr > td.dt-orderable-desc,
|
|
||||||
table.dataTable thead > tr > td.dt-ordering-asc,
|
|
||||||
table.dataTable thead > tr > td.dt-ordering-desc {
|
|
||||||
position: relative;
|
|
||||||
padding-right: 30px;
|
|
||||||
}
|
|
||||||
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
|
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
|
||||||
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
|
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
|
||||||
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
|
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
|
||||||
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
|
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
|
||||||
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
|
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
|
||||||
position: absolute;
|
position: relative;
|
||||||
right: 12px;
|
|
||||||
top: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 12px;
|
width: 12px;
|
||||||
|
height: 20px;
|
||||||
}
|
}
|
||||||
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
|
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
|
||||||
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
|
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
|
||||||
@@ -163,6 +153,40 @@ table.dataTable thead > tr > td:active {
|
|||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.dataTable thead > tr > th div.dt-column-header,
|
||||||
|
table.dataTable thead > tr > th div.dt-column-footer,
|
||||||
|
table.dataTable thead > tr > td div.dt-column-header,
|
||||||
|
table.dataTable thead > tr > td div.dt-column-footer,
|
||||||
|
table.dataTable tfoot > tr > th div.dt-column-header,
|
||||||
|
table.dataTable tfoot > tr > th div.dt-column-footer,
|
||||||
|
table.dataTable tfoot > tr > td div.dt-column-header,
|
||||||
|
table.dataTable tfoot > tr > td div.dt-column-footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
table.dataTable thead > tr > th div.dt-column-header span.dt-column-title,
|
||||||
|
table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title,
|
||||||
|
table.dataTable thead > tr > td div.dt-column-header span.dt-column-title,
|
||||||
|
table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title,
|
||||||
|
table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title,
|
||||||
|
table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title,
|
||||||
|
table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title,
|
||||||
|
table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
table.dataTable thead > tr > th div.dt-column-header span.dt-column-title:empty,
|
||||||
|
table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title:empty,
|
||||||
|
table.dataTable thead > tr > td div.dt-column-header span.dt-column-title:empty,
|
||||||
|
table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title:empty,
|
||||||
|
table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title:empty,
|
||||||
|
table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title:empty,
|
||||||
|
table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title:empty,
|
||||||
|
table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title:empty {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
div.dt-scroll-body > table.dataTable > thead > tr > th,
|
div.dt-scroll-body > table.dataTable > thead > tr > th,
|
||||||
div.dt-scroll-body > table.dataTable > thead > tr > td {
|
div.dt-scroll-body > table.dataTable > thead > tr > td {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -258,10 +282,25 @@ table.dataTable td.dt-type-numeric,
|
|||||||
table.dataTable td.dt-type-date {
|
table.dataTable td.dt-type-date {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
table.dataTable th.dt-type-numeric div.dt-column-header,
|
||||||
|
table.dataTable th.dt-type-numeric div.dt-column-footer, table.dataTable th.dt-type-date div.dt-column-header,
|
||||||
|
table.dataTable th.dt-type-date div.dt-column-footer,
|
||||||
|
table.dataTable td.dt-type-numeric div.dt-column-header,
|
||||||
|
table.dataTable td.dt-type-numeric div.dt-column-footer,
|
||||||
|
table.dataTable td.dt-type-date div.dt-column-header,
|
||||||
|
table.dataTable td.dt-type-date div.dt-column-footer {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
table.dataTable th.dt-left,
|
table.dataTable th.dt-left,
|
||||||
table.dataTable td.dt-left {
|
table.dataTable td.dt-left {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
table.dataTable th.dt-left div.dt-column-header,
|
||||||
|
table.dataTable th.dt-left div.dt-column-footer,
|
||||||
|
table.dataTable td.dt-left div.dt-column-header,
|
||||||
|
table.dataTable td.dt-left div.dt-column-footer {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
table.dataTable th.dt-center,
|
table.dataTable th.dt-center,
|
||||||
table.dataTable td.dt-center {
|
table.dataTable td.dt-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -270,10 +309,22 @@ table.dataTable th.dt-right,
|
|||||||
table.dataTable td.dt-right {
|
table.dataTable td.dt-right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
table.dataTable th.dt-right div.dt-column-header,
|
||||||
|
table.dataTable th.dt-right div.dt-column-footer,
|
||||||
|
table.dataTable td.dt-right div.dt-column-header,
|
||||||
|
table.dataTable td.dt-right div.dt-column-footer {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
table.dataTable th.dt-justify,
|
table.dataTable th.dt-justify,
|
||||||
table.dataTable td.dt-justify {
|
table.dataTable td.dt-justify {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
table.dataTable th.dt-justify div.dt-column-header,
|
||||||
|
table.dataTable th.dt-justify div.dt-column-footer,
|
||||||
|
table.dataTable td.dt-justify div.dt-column-header,
|
||||||
|
table.dataTable td.dt-justify div.dt-column-footer {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
table.dataTable th.dt-nowrap,
|
table.dataTable th.dt-nowrap,
|
||||||
table.dataTable td.dt-nowrap {
|
table.dataTable td.dt-nowrap {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@@ -295,6 +346,16 @@ table.dataTable tfoot th.dt-head-left,
|
|||||||
table.dataTable tfoot td.dt-head-left {
|
table.dataTable tfoot td.dt-head-left {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
table.dataTable thead th.dt-head-left div.dt-column-header,
|
||||||
|
table.dataTable thead th.dt-head-left div.dt-column-footer,
|
||||||
|
table.dataTable thead td.dt-head-left div.dt-column-header,
|
||||||
|
table.dataTable thead td.dt-head-left div.dt-column-footer,
|
||||||
|
table.dataTable tfoot th.dt-head-left div.dt-column-header,
|
||||||
|
table.dataTable tfoot th.dt-head-left div.dt-column-footer,
|
||||||
|
table.dataTable tfoot td.dt-head-left div.dt-column-header,
|
||||||
|
table.dataTable tfoot td.dt-head-left div.dt-column-footer {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
table.dataTable thead th.dt-head-center,
|
table.dataTable thead th.dt-head-center,
|
||||||
table.dataTable thead td.dt-head-center,
|
table.dataTable thead td.dt-head-center,
|
||||||
table.dataTable tfoot th.dt-head-center,
|
table.dataTable tfoot th.dt-head-center,
|
||||||
@@ -307,12 +368,32 @@ table.dataTable tfoot th.dt-head-right,
|
|||||||
table.dataTable tfoot td.dt-head-right {
|
table.dataTable tfoot td.dt-head-right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
table.dataTable thead th.dt-head-right div.dt-column-header,
|
||||||
|
table.dataTable thead th.dt-head-right div.dt-column-footer,
|
||||||
|
table.dataTable thead td.dt-head-right div.dt-column-header,
|
||||||
|
table.dataTable thead td.dt-head-right div.dt-column-footer,
|
||||||
|
table.dataTable tfoot th.dt-head-right div.dt-column-header,
|
||||||
|
table.dataTable tfoot th.dt-head-right div.dt-column-footer,
|
||||||
|
table.dataTable tfoot td.dt-head-right div.dt-column-header,
|
||||||
|
table.dataTable tfoot td.dt-head-right div.dt-column-footer {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
table.dataTable thead th.dt-head-justify,
|
table.dataTable thead th.dt-head-justify,
|
||||||
table.dataTable thead td.dt-head-justify,
|
table.dataTable thead td.dt-head-justify,
|
||||||
table.dataTable tfoot th.dt-head-justify,
|
table.dataTable tfoot th.dt-head-justify,
|
||||||
table.dataTable tfoot td.dt-head-justify {
|
table.dataTable tfoot td.dt-head-justify {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
table.dataTable thead th.dt-head-justify div.dt-column-header,
|
||||||
|
table.dataTable thead th.dt-head-justify div.dt-column-footer,
|
||||||
|
table.dataTable thead td.dt-head-justify div.dt-column-header,
|
||||||
|
table.dataTable thead td.dt-head-justify div.dt-column-footer,
|
||||||
|
table.dataTable tfoot th.dt-head-justify div.dt-column-header,
|
||||||
|
table.dataTable tfoot th.dt-head-justify div.dt-column-footer,
|
||||||
|
table.dataTable tfoot td.dt-head-justify div.dt-column-header,
|
||||||
|
table.dataTable tfoot td.dt-head-justify div.dt-column-footer {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
table.dataTable thead th.dt-head-nowrap,
|
table.dataTable thead th.dt-head-nowrap,
|
||||||
table.dataTable thead td.dt-head-nowrap,
|
table.dataTable thead td.dt-head-nowrap,
|
||||||
table.dataTable tfoot th.dt-head-nowrap,
|
table.dataTable tfoot th.dt-head-nowrap,
|
||||||
@@ -410,6 +491,9 @@ div.dt-container div.dt-layout-table > div {
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
div.dt-container {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
div.dt-container div.dt-length label {
|
div.dt-container div.dt-length label {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@@ -498,14 +582,19 @@ table.dataTable.table-sm > thead > tr td.dt-orderable-asc,
|
|||||||
table.dataTable.table-sm > thead > tr td.dt-orderable-desc,
|
table.dataTable.table-sm > thead > tr td.dt-orderable-desc,
|
||||||
table.dataTable.table-sm > thead > tr td.dt-ordering-asc,
|
table.dataTable.table-sm > thead > tr td.dt-ordering-asc,
|
||||||
table.dataTable.table-sm > thead > tr td.dt-ordering-desc {
|
table.dataTable.table-sm > thead > tr td.dt-ordering-desc {
|
||||||
padding-right: 20px;
|
padding-right: 0.25rem;
|
||||||
}
|
}
|
||||||
table.dataTable.table-sm > thead > tr th.dt-orderable-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-orderable-desc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-desc span.dt-column-order,
|
table.dataTable.table-sm > thead > tr th.dt-orderable-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-orderable-desc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-desc span.dt-column-order,
|
||||||
table.dataTable.table-sm > thead > tr td.dt-orderable-asc span.dt-column-order,
|
table.dataTable.table-sm > thead > tr td.dt-orderable-asc span.dt-column-order,
|
||||||
table.dataTable.table-sm > thead > tr td.dt-orderable-desc span.dt-column-order,
|
table.dataTable.table-sm > thead > tr td.dt-orderable-desc span.dt-column-order,
|
||||||
table.dataTable.table-sm > thead > tr td.dt-ordering-asc span.dt-column-order,
|
table.dataTable.table-sm > thead > tr td.dt-ordering-asc span.dt-column-order,
|
||||||
table.dataTable.table-sm > thead > tr td.dt-ordering-desc span.dt-column-order {
|
table.dataTable.table-sm > thead > tr td.dt-ordering-desc span.dt-column-order {
|
||||||
right: 5px;
|
right: 0.25rem;
|
||||||
|
}
|
||||||
|
table.dataTable.table-sm > thead > tr th.dt-type-date span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-type-numeric span.dt-column-order,
|
||||||
|
table.dataTable.table-sm > thead > tr td.dt-type-date span.dt-column-order,
|
||||||
|
table.dataTable.table-sm > thead > tr td.dt-type-numeric span.dt-column-order {
|
||||||
|
left: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.dt-scroll-head table.table-bordered {
|
div.dt-scroll-head table.table-bordered {
|
||||||
|
|||||||
Vendored
+318
-108
@@ -4,13 +4,13 @@
|
|||||||
*
|
*
|
||||||
* To rebuild or modify this file with the latest versions of the included
|
* To rebuild or modify this file with the latest versions of the included
|
||||||
* software please visit:
|
* software please visit:
|
||||||
* https://datatables.net/download/#bs5/dt-2.2.2
|
* https://datatables.net/download/#bs5/dt-2.3.1
|
||||||
*
|
*
|
||||||
* Included libraries:
|
* Included libraries:
|
||||||
* DataTables 2.2.2
|
* DataTables 2.3.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! DataTables 2.2.2
|
/*! DataTables 2.3.1
|
||||||
* © SpryMedia Ltd - datatables.net/license
|
* © SpryMedia Ltd - datatables.net/license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -101,15 +101,19 @@
|
|||||||
var defaults = DataTable.defaults;
|
var defaults = DataTable.defaults;
|
||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
|
|
||||||
|
// Sanity check
|
||||||
/* Sanity check */
|
|
||||||
if ( this.nodeName.toLowerCase() != 'table' )
|
if ( this.nodeName.toLowerCase() != 'table' )
|
||||||
{
|
{
|
||||||
_fnLog( null, 0, 'Non-table node initialisation ('+this.nodeName+')', 2 );
|
_fnLog( null, 0, 'Non-table node initialisation ('+this.nodeName+')', 2 );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$(this).trigger( 'options.dt', oInit );
|
// Special case for options
|
||||||
|
if (oInit.on && oInit.on.options) {
|
||||||
|
_fnListener($this, 'options', oInit.on.options);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this.trigger( 'options.dt', oInit );
|
||||||
|
|
||||||
/* Backwards compatibility for the defaults */
|
/* Backwards compatibility for the defaults */
|
||||||
_fnCompatOpts( defaults );
|
_fnCompatOpts( defaults );
|
||||||
@@ -248,6 +252,9 @@
|
|||||||
"caption",
|
"caption",
|
||||||
"layout",
|
"layout",
|
||||||
"orderDescReverse",
|
"orderDescReverse",
|
||||||
|
"orderIndicators",
|
||||||
|
"orderHandler",
|
||||||
|
"titleRow",
|
||||||
"typeDetect",
|
"typeDetect",
|
||||||
[ "iCookieDuration", "iStateDuration" ], // backwards compat
|
[ "iCookieDuration", "iStateDuration" ], // backwards compat
|
||||||
[ "oSearch", "oPreviousSearch" ],
|
[ "oSearch", "oPreviousSearch" ],
|
||||||
@@ -276,6 +283,13 @@
|
|||||||
|
|
||||||
oSettings.rowIdFn = _fnGetObjectDataFn( oInit.rowId );
|
oSettings.rowIdFn = _fnGetObjectDataFn( oInit.rowId );
|
||||||
|
|
||||||
|
// Add event listeners
|
||||||
|
if (oInit.on) {
|
||||||
|
Object.keys(oInit.on).forEach(function (key) {
|
||||||
|
_fnListener($this, key, oInit.on[key]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/* Browser support detection */
|
/* Browser support detection */
|
||||||
_fnBrowserDetect( oSettings );
|
_fnBrowserDetect( oSettings );
|
||||||
|
|
||||||
@@ -336,7 +350,7 @@
|
|||||||
/* HTML5 attribute detection - build an mData object automatically if the
|
/* HTML5 attribute detection - build an mData object automatically if the
|
||||||
* attributes are found
|
* attributes are found
|
||||||
*/
|
*/
|
||||||
var rowOne = $this.children('tbody').find('tr').eq(0);
|
var rowOne = $this.children('tbody').find('tr:first-child').eq(0);
|
||||||
|
|
||||||
if ( rowOne.length ) {
|
if ( rowOne.length ) {
|
||||||
var a = function ( cell, name ) {
|
var a = function ( cell, name ) {
|
||||||
@@ -494,6 +508,13 @@
|
|||||||
* @namespace
|
* @namespace
|
||||||
*/
|
*/
|
||||||
DataTable.ext = _ext = {
|
DataTable.ext = _ext = {
|
||||||
|
/**
|
||||||
|
* DataTables build type (expanded by the download builder)
|
||||||
|
*
|
||||||
|
* @type string
|
||||||
|
*/
|
||||||
|
builder: "bs5/dt-2.3.1",
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Buttons. For use with the Buttons extension for DataTables. This is
|
* Buttons. For use with the Buttons extension for DataTables. This is
|
||||||
* defined here so other extensions can define buttons regardless of load
|
* defined here so other extensions can define buttons regardless of load
|
||||||
@@ -505,6 +526,14 @@
|
|||||||
buttons: {},
|
buttons: {},
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ColumnControl buttons and content
|
||||||
|
*
|
||||||
|
* @type object
|
||||||
|
*/
|
||||||
|
ccContent: {},
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Element class names
|
* Element class names
|
||||||
*
|
*
|
||||||
@@ -514,14 +543,6 @@
|
|||||||
classes: {},
|
classes: {},
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DataTables build type (expanded by the download builder)
|
|
||||||
*
|
|
||||||
* @type string
|
|
||||||
*/
|
|
||||||
builder: "bs5/dt-2.2.2",
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Error reporting.
|
* Error reporting.
|
||||||
*
|
*
|
||||||
@@ -1887,6 +1908,26 @@
|
|||||||
init.scrollX = init.scrollX ? '100%' : '';
|
init.scrollX = init.scrollX ? '100%' : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Objects for ordering
|
||||||
|
if ( typeof init.bSort === 'object' ) {
|
||||||
|
init.orderIndicators = init.bSort.indicators !== undefined ? init.bSort.indicators : true;
|
||||||
|
init.orderHandler = init.bSort.handler !== undefined ? init.bSort.handler : true;
|
||||||
|
init.bSort = true;
|
||||||
|
}
|
||||||
|
else if (init.bSort === false) {
|
||||||
|
init.orderIndicators = false;
|
||||||
|
init.orderHandler = false;
|
||||||
|
}
|
||||||
|
else if (init.bSort === true) {
|
||||||
|
init.orderIndicators = true;
|
||||||
|
init.orderHandler = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Which cells are the title cells?
|
||||||
|
if (typeof init.bSortCellsTop === 'boolean') {
|
||||||
|
init.titleRow = init.bSortCellsTop;
|
||||||
|
}
|
||||||
|
|
||||||
// Column search objects are in an array, so it needs to be converted
|
// Column search objects are in an array, so it needs to be converted
|
||||||
// element by element
|
// element by element
|
||||||
var searchCols = init.aoSearchCols;
|
var searchCols = init.aoSearchCols;
|
||||||
@@ -3264,7 +3305,7 @@
|
|||||||
* @param {*} settings DataTables settings
|
* @param {*} settings DataTables settings
|
||||||
* @param {*} source Source layout array
|
* @param {*} source Source layout array
|
||||||
* @param {*} incColumns What columns should be included
|
* @param {*} incColumns What columns should be included
|
||||||
* @returns Layout array
|
* @returns Layout array in column index order
|
||||||
*/
|
*/
|
||||||
function _fnHeaderLayout( settings, source, incColumns )
|
function _fnHeaderLayout( settings, source, incColumns )
|
||||||
{
|
{
|
||||||
@@ -3548,7 +3589,9 @@
|
|||||||
|
|
||||||
_fnDraw( settings );
|
_fnDraw( settings );
|
||||||
|
|
||||||
settings._drawHold = false;
|
settings.api.one('draw', function () {
|
||||||
|
settings._drawHold = false;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -3560,10 +3603,9 @@
|
|||||||
var zero = oLang.sZeroRecords;
|
var zero = oLang.sZeroRecords;
|
||||||
var dataSrc = _fnDataSource( settings );
|
var dataSrc = _fnDataSource( settings );
|
||||||
|
|
||||||
if (
|
// Make use of the fact that settings.json is only set once the initial data has
|
||||||
(settings.iDraw < 1 && dataSrc === 'ssp') ||
|
// been loaded. Show loading when that isn't the case
|
||||||
(settings.iDraw <= 1 && dataSrc === 'ajax')
|
if ((dataSrc === 'ssp' || dataSrc === 'ajax') && ! settings.json) {
|
||||||
) {
|
|
||||||
zero = oLang.sLoadingRecords;
|
zero = oLang.sLoadingRecords;
|
||||||
}
|
}
|
||||||
else if ( oLang.sEmptyTable && settings.fnRecordsTotal() === 0 )
|
else if ( oLang.sEmptyTable && settings.fnRecordsTotal() === 0 )
|
||||||
@@ -3933,6 +3975,7 @@
|
|||||||
var rows = $(thead).children('tr');
|
var rows = $(thead).children('tr');
|
||||||
var row, cell;
|
var row, cell;
|
||||||
var i, k, l, iLen, shifted, column, colspan, rowspan;
|
var i, k, l, iLen, shifted, column, colspan, rowspan;
|
||||||
|
var titleRow = settings.titleRow;
|
||||||
var isHeader = thead && thead.nodeName.toLowerCase() === 'thead';
|
var isHeader = thead && thead.nodeName.toLowerCase() === 'thead';
|
||||||
var layout = [];
|
var layout = [];
|
||||||
var unique;
|
var unique;
|
||||||
@@ -3961,6 +4004,7 @@
|
|||||||
cell.nodeName.toUpperCase() == 'TH'
|
cell.nodeName.toUpperCase() == 'TH'
|
||||||
) {
|
) {
|
||||||
var cols = [];
|
var cols = [];
|
||||||
|
var jqCell = $(cell);
|
||||||
|
|
||||||
// Get the col and rowspan attributes from the DOM and sanitise them
|
// Get the col and rowspan attributes from the DOM and sanitise them
|
||||||
colspan = cell.getAttribute('colspan') * 1;
|
colspan = cell.getAttribute('colspan') * 1;
|
||||||
@@ -3981,7 +4025,7 @@
|
|||||||
if ( write ) {
|
if ( write ) {
|
||||||
if (unique) {
|
if (unique) {
|
||||||
// Allow column options to be set from HTML attributes
|
// Allow column options to be set from HTML attributes
|
||||||
_fnColumnOptions( settings, shifted, $(cell).data() );
|
_fnColumnOptions( settings, shifted, jqCell.data() );
|
||||||
|
|
||||||
// Get the width for the column. This can be defined from the
|
// Get the width for the column. This can be defined from the
|
||||||
// width attribute, style attribute or `columns.width` option
|
// width attribute, style attribute or `columns.width` option
|
||||||
@@ -3998,7 +4042,14 @@
|
|||||||
// Column title handling - can be user set, or read from the DOM
|
// Column title handling - can be user set, or read from the DOM
|
||||||
// This happens before the render, so the original is still in place
|
// This happens before the render, so the original is still in place
|
||||||
if ( columnDef.sTitle !== null && ! columnDef.autoTitle ) {
|
if ( columnDef.sTitle !== null && ! columnDef.autoTitle ) {
|
||||||
cell.innerHTML = columnDef.sTitle;
|
if (
|
||||||
|
(titleRow === true && i === 0) || // top row
|
||||||
|
(titleRow === false && i === rows.length -1) || // bottom row
|
||||||
|
(titleRow === i) || // specific row
|
||||||
|
(titleRow === null)
|
||||||
|
) {
|
||||||
|
cell.innerHTML = columnDef.sTitle;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! columnDef.sTitle && unique) {
|
if (! columnDef.sTitle && unique) {
|
||||||
@@ -4016,12 +4067,12 @@
|
|||||||
// Fall back to the aria-label attribute on the table header if no ariaTitle is
|
// Fall back to the aria-label attribute on the table header if no ariaTitle is
|
||||||
// provided.
|
// provided.
|
||||||
if (! columnDef.ariaTitle) {
|
if (! columnDef.ariaTitle) {
|
||||||
columnDef.ariaTitle = $(cell).attr("aria-label") || columnDef.sTitle;
|
columnDef.ariaTitle = jqCell.attr("aria-label") || columnDef.sTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Column specific class names
|
// Column specific class names
|
||||||
if ( columnDef.className ) {
|
if ( columnDef.className ) {
|
||||||
$(cell).addClass( columnDef.className );
|
jqCell.addClass( columnDef.className );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4033,11 +4084,28 @@
|
|||||||
.appendTo(cell);
|
.appendTo(cell);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( isHeader && $('span.dt-column-order', cell).length === 0) {
|
if (
|
||||||
|
settings.orderIndicators &&
|
||||||
|
isHeader &&
|
||||||
|
jqCell.filter(':not([data-dt-order=disable])').length !== 0 &&
|
||||||
|
jqCell.parent(':not([data-dt-order=disable])').length !== 0 &&
|
||||||
|
$('span.dt-column-order', cell).length === 0
|
||||||
|
) {
|
||||||
$('<span>')
|
$('<span>')
|
||||||
.addClass('dt-column-order')
|
.addClass('dt-column-order')
|
||||||
.appendTo(cell);
|
.appendTo(cell);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We need to wrap the elements in the header in another element to use flexbox
|
||||||
|
// layout for those elements
|
||||||
|
var headerFooter = isHeader ? 'header' : 'footer';
|
||||||
|
|
||||||
|
if ( $('span.dt-column-' + headerFooter, cell).length === 0) {
|
||||||
|
$('<div>')
|
||||||
|
.addClass('dt-column-' + headerFooter)
|
||||||
|
.append(cell.childNodes)
|
||||||
|
.appendTo(cell);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there is col / rowspan, copy the information into the layout grid
|
// If there is col / rowspan, copy the information into the layout grid
|
||||||
@@ -4188,6 +4256,11 @@
|
|||||||
// Allow plug-ins and external processes to modify the data
|
// Allow plug-ins and external processes to modify the data
|
||||||
_fnCallbackFire( oSettings, null, 'preXhr', [oSettings, data, baseAjax], true );
|
_fnCallbackFire( oSettings, null, 'preXhr', [oSettings, data, baseAjax], true );
|
||||||
|
|
||||||
|
// Custom Ajax option to submit the parameters as a JSON string
|
||||||
|
if (baseAjax.submitAs === 'json' && typeof data === 'object') {
|
||||||
|
baseAjax.data = JSON.stringify(data);
|
||||||
|
}
|
||||||
|
|
||||||
if ( typeof ajax === 'function' )
|
if ( typeof ajax === 'function' )
|
||||||
{
|
{
|
||||||
// Is a function - let the caller define what needs to be done
|
// Is a function - let the caller define what needs to be done
|
||||||
@@ -5688,24 +5761,30 @@
|
|||||||
function _fnSortInit( settings ) {
|
function _fnSortInit( settings ) {
|
||||||
var target = settings.nTHead;
|
var target = settings.nTHead;
|
||||||
var headerRows = target.querySelectorAll('tr');
|
var headerRows = target.querySelectorAll('tr');
|
||||||
var legacyTop = settings.bSortCellsTop;
|
var titleRow = settings.titleRow;
|
||||||
var notSelector = ':not([data-dt-order="disable"]):not([data-dt-order="icon-only"])';
|
var notSelector = ':not([data-dt-order="disable"]):not([data-dt-order="icon-only"])';
|
||||||
|
|
||||||
// Legacy support for `orderCellsTop`
|
// Legacy support for `orderCellsTop`
|
||||||
if (legacyTop === true) {
|
if (titleRow === true) {
|
||||||
target = headerRows[0];
|
target = headerRows[0];
|
||||||
}
|
}
|
||||||
else if (legacyTop === false) {
|
else if (titleRow === false) {
|
||||||
target = headerRows[ headerRows.length - 1 ];
|
target = headerRows[ headerRows.length - 1 ];
|
||||||
}
|
}
|
||||||
|
else if (titleRow !== null) {
|
||||||
|
target = headerRows[titleRow];
|
||||||
|
}
|
||||||
|
// else - all rows
|
||||||
|
|
||||||
_fnSortAttachListener(
|
if (settings.orderHandler) {
|
||||||
settings,
|
_fnSortAttachListener(
|
||||||
target,
|
settings,
|
||||||
target === settings.nTHead
|
target,
|
||||||
? 'tr'+notSelector+' th'+notSelector+', tr'+notSelector+' td'+notSelector
|
target === settings.nTHead
|
||||||
: 'th'+notSelector+', td'+notSelector
|
? 'tr'+notSelector+' th'+notSelector+', tr'+notSelector+' td'+notSelector
|
||||||
);
|
: 'th'+notSelector+', td'+notSelector
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Need to resolve the user input array into our internal structure
|
// Need to resolve the user input array into our internal structure
|
||||||
var order = [];
|
var order = [];
|
||||||
@@ -5720,7 +5799,9 @@
|
|||||||
var run = false;
|
var run = false;
|
||||||
var columns = column === undefined
|
var columns = column === undefined
|
||||||
? _fnColumnsFromHeader( e.target )
|
? _fnColumnsFromHeader( e.target )
|
||||||
: [column];
|
: Array.isArray(column)
|
||||||
|
? column
|
||||||
|
: [column];
|
||||||
|
|
||||||
if ( columns.length ) {
|
if ( columns.length ) {
|
||||||
for ( var i=0, ien=columns.length ; i<ien ; i++ ) {
|
for ( var i=0, ien=columns.length ; i<ien ; i++ ) {
|
||||||
@@ -6343,16 +6424,19 @@
|
|||||||
|
|
||||||
// A column name was stored and should be used for restore
|
// A column name was stored and should be used for restore
|
||||||
if (typeof col[0] === 'string') {
|
if (typeof col[0] === 'string') {
|
||||||
|
// Find the name from the current list of column names
|
||||||
var idx = currentNames.indexOf(col[0]);
|
var idx = currentNames.indexOf(col[0]);
|
||||||
|
|
||||||
// Find the name from the current list of column names, or fallback to index 0
|
if (idx < 0) {
|
||||||
set[0] = idx >= 0
|
// If the column was not found ignore it and continue
|
||||||
? idx
|
return;
|
||||||
: 0;
|
}
|
||||||
|
|
||||||
|
set[0] = idx;
|
||||||
}
|
}
|
||||||
else if (set[0] >= columns.length) {
|
else if (set[0] >= columns.length) {
|
||||||
// If a column name, but it is out of bounds, set to 0
|
// If the column index is out of bounds ignore it and continue
|
||||||
set[0] = 0;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
settings.aaSorting.push(set);
|
settings.aaSorting.push(set);
|
||||||
@@ -6765,6 +6849,23 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add one or more listeners to the table
|
||||||
|
*
|
||||||
|
* @param {*} that JQ for the table
|
||||||
|
* @param {*} name Event name
|
||||||
|
* @param {*} src Listener(s)
|
||||||
|
*/
|
||||||
|
function _fnListener(that, name, src) {
|
||||||
|
if (!Array.isArray(src)) {
|
||||||
|
src = [src];
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i=0 ; i<src.length ; i++) {
|
||||||
|
that.on(name + '.dt', src[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -7421,12 +7522,24 @@
|
|||||||
['footer', 'aoFooter'],
|
['footer', 'aoFooter'],
|
||||||
].forEach(function (item) {
|
].forEach(function (item) {
|
||||||
_api_register( 'table().' + item[0] + '.structure()' , function (selector) {
|
_api_register( 'table().' + item[0] + '.structure()' , function (selector) {
|
||||||
var indexes = this.columns(selector).indexes().flatten();
|
var indexes = this.columns(selector).indexes().flatten().toArray();
|
||||||
var ctx = this.context[0];
|
var ctx = this.context[0];
|
||||||
|
var structure = _fnHeaderLayout(ctx, ctx[item[1]], indexes);
|
||||||
return _fnHeaderLayout(ctx, ctx[item[1]], indexes);
|
|
||||||
} );
|
// The structure is in column index order - but from this method we want the return to be
|
||||||
})
|
// in the columns() selector API order. In order to do that we need to map from one form
|
||||||
|
// to the other
|
||||||
|
var orderedIndexes = indexes.slice().sort(function (a, b) {
|
||||||
|
return a - b;
|
||||||
|
});
|
||||||
|
|
||||||
|
return structure.map(function (row) {
|
||||||
|
return indexes.map(function (colIdx) {
|
||||||
|
return row[orderedIndexes.indexOf(colIdx)];
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
_api_registerPlural( 'tables().containers()', 'table().container()' , function () {
|
_api_registerPlural( 'tables().containers()', 'table().container()' , function () {
|
||||||
@@ -7775,7 +7888,7 @@
|
|||||||
{
|
{
|
||||||
var
|
var
|
||||||
out = [], res,
|
out = [], res,
|
||||||
a, i, ien, j, jen,
|
i, ien,
|
||||||
selectorType = typeof selector;
|
selectorType = typeof selector;
|
||||||
|
|
||||||
// Can't just check for isArray here, as an API or jQuery instance might be
|
// Can't just check for isArray here, as an API or jQuery instance might be
|
||||||
@@ -7785,22 +7898,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
for ( i=0, ien=selector.length ; i<ien ; i++ ) {
|
for ( i=0, ien=selector.length ; i<ien ; i++ ) {
|
||||||
// Only split on simple strings - complex expressions will be jQuery selectors
|
res = selectFn( typeof selector[i] === 'string' ? selector[i].trim() : selector[i] );
|
||||||
a = selector[i] && selector[i].split && ! selector[i].match(/[[(:]/) ?
|
|
||||||
selector[i].split(',') :
|
|
||||||
[ selector[i] ];
|
|
||||||
|
|
||||||
for ( j=0, jen=a.length ; j<jen ; j++ ) {
|
// Remove empty items
|
||||||
res = selectFn( typeof a[j] === 'string' ? (a[j]).trim() : a[j] );
|
res = res.filter( function (item) {
|
||||||
|
return item !== null && item !== undefined;
|
||||||
|
});
|
||||||
|
|
||||||
// Remove empty items
|
if ( res && res.length ) {
|
||||||
res = res.filter( function (item) {
|
out = out.concat( res );
|
||||||
return item !== null && item !== undefined;
|
|
||||||
});
|
|
||||||
|
|
||||||
if ( res && res.length ) {
|
|
||||||
out = out.concat( res );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -7829,6 +7935,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
return $.extend( {
|
return $.extend( {
|
||||||
|
columnOrder: 'implied',
|
||||||
search: 'none',
|
search: 'none',
|
||||||
order: 'current',
|
order: 'current',
|
||||||
page: 'all'
|
page: 'all'
|
||||||
@@ -8590,23 +8697,60 @@
|
|||||||
|
|
||||||
var __column_header = function ( settings, column, row ) {
|
var __column_header = function ( settings, column, row ) {
|
||||||
var header = settings.aoHeader;
|
var header = settings.aoHeader;
|
||||||
var target = row !== undefined
|
var titleRow = settings.titleRow;
|
||||||
? row
|
var target = null;
|
||||||
: settings.bSortCellsTop // legacy support
|
|
||||||
? 0
|
if (row !== undefined) {
|
||||||
: header.length - 1;
|
target = row;
|
||||||
|
}
|
||||||
|
else if (titleRow === true) { // legacy orderCellsTop support
|
||||||
|
target = 0;
|
||||||
|
}
|
||||||
|
else if (titleRow === false) {
|
||||||
|
target = header.length - 1;
|
||||||
|
}
|
||||||
|
else if (titleRow !== null) {
|
||||||
|
target = titleRow;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Automatic - find the _last_ unique cell from the top that is not empty (last for
|
||||||
|
// backwards compatibility)
|
||||||
|
for (var i=0 ; i<header.length ; i++) {
|
||||||
|
if (header[i][column].unique && $('span.dt-column-title', header[i][column].cell).text()) {
|
||||||
|
target = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (target === null) {
|
||||||
|
target = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return header[target][column].cell;
|
return header[target][column].cell;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var __column_header_cells = function (header) {
|
||||||
|
var out = [];
|
||||||
|
|
||||||
|
for (var i=0 ; i<header.length ; i++) {
|
||||||
|
for (var j=0 ; j<header[i].length ; j++) {
|
||||||
|
var cell = header[i][j].cell;
|
||||||
|
|
||||||
|
if (!out.includes(cell)) {
|
||||||
|
out.push(cell);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
var __column_selector = function ( settings, selector, opts )
|
var __column_selector = function ( settings, selector, opts )
|
||||||
{
|
{
|
||||||
var
|
var
|
||||||
columns = settings.aoColumns,
|
columns = settings.aoColumns,
|
||||||
names = _pluck( columns, 'sName' ),
|
names, titles,
|
||||||
titles = _pluck( columns, 'sTitle' ),
|
nodes = __column_header_cells(settings.aoHeader);
|
||||||
cells = DataTable.util.get('[].[].cell')(settings.aoHeader),
|
|
||||||
nodes = _unique( _flatten([], cells) );
|
|
||||||
|
|
||||||
var run = function ( s ) {
|
var run = function ( s ) {
|
||||||
var selInt = _intVal( s );
|
var selInt = _intVal( s );
|
||||||
@@ -8678,12 +8822,21 @@
|
|||||||
} );
|
} );
|
||||||
|
|
||||||
case 'name':
|
case 'name':
|
||||||
|
// Don't get names, unless needed, and only get once if it is
|
||||||
|
if (!names) {
|
||||||
|
names = _pluck( columns, 'sName' );
|
||||||
|
}
|
||||||
|
|
||||||
// match by name. `names` is column index complete and in order
|
// match by name. `names` is column index complete and in order
|
||||||
return names.map( function (name, i) {
|
return names.map( function (name, i) {
|
||||||
return name === match[1] ? i : null;
|
return name === match[1] ? i : null;
|
||||||
} );
|
} );
|
||||||
|
|
||||||
case 'title':
|
case 'title':
|
||||||
|
if (!titles) {
|
||||||
|
titles = _pluck( columns, 'sTitle' );
|
||||||
|
}
|
||||||
|
|
||||||
// match by column title
|
// match by column title
|
||||||
return titles.map( function (title, i) {
|
return titles.map( function (title, i) {
|
||||||
return title === match[1] ? i : null;
|
return title === match[1] ? i : null;
|
||||||
@@ -8722,7 +8875,11 @@
|
|||||||
[];
|
[];
|
||||||
};
|
};
|
||||||
|
|
||||||
return _selector_run( 'column', selector, run, settings, opts );
|
var selected = _selector_run( 'column', selector, run, settings, opts );
|
||||||
|
|
||||||
|
return opts.columnOrder && opts.columnOrder === 'index'
|
||||||
|
? selected.sort(function (a, b) { return a - b; })
|
||||||
|
: selected; // implied
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -8846,6 +9003,12 @@
|
|||||||
}, 1 );
|
}, 1 );
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
_api_registerPlural( 'columns().names()', 'column().name()', function () {
|
||||||
|
return this.iterator( 'column', function ( settings, column ) {
|
||||||
|
return settings.aoColumns[column].sName;
|
||||||
|
}, 1 );
|
||||||
|
} );
|
||||||
|
|
||||||
_api_registerPlural( 'columns().nodes()', 'column().nodes()', function () {
|
_api_registerPlural( 'columns().nodes()', 'column().nodes()', function () {
|
||||||
return this.iterator( 'column-rows', function ( settings, column, i, j, rows ) {
|
return this.iterator( 'column-rows', function ( settings, column, i, j, rows ) {
|
||||||
return _pluck_order( settings.aoData, rows, 'anCells', column ) ;
|
return _pluck_order( settings.aoData, rows, 'anCells', column ) ;
|
||||||
@@ -9272,7 +9435,10 @@
|
|||||||
// otherwise a 2D array was passed in
|
// otherwise a 2D array was passed in
|
||||||
|
|
||||||
return this.iterator( 'table', function ( settings ) {
|
return this.iterator( 'table', function ( settings ) {
|
||||||
settings.aaSorting = Array.isArray(order) ? order.slice() : order;
|
var resolved = [];
|
||||||
|
_fnSortResolve(settings, resolved, order);
|
||||||
|
|
||||||
|
settings.aaSorting = resolved;
|
||||||
} );
|
} );
|
||||||
} );
|
} );
|
||||||
|
|
||||||
@@ -9398,7 +9564,7 @@
|
|||||||
var fixed = settings.searchFixed;
|
var fixed = settings.searchFixed;
|
||||||
|
|
||||||
if (! name) {
|
if (! name) {
|
||||||
return Object.keys(fixed)
|
return Object.keys(fixed);
|
||||||
}
|
}
|
||||||
else if (search === undefined) {
|
else if (search === undefined) {
|
||||||
return fixed[name];
|
return fixed[name];
|
||||||
@@ -9465,10 +9631,10 @@
|
|||||||
var fixed = settings.aoColumns[colIdx].searchFixed;
|
var fixed = settings.aoColumns[colIdx].searchFixed;
|
||||||
|
|
||||||
if (! name) {
|
if (! name) {
|
||||||
return Object.keys(fixed)
|
return Object.keys(fixed);
|
||||||
}
|
}
|
||||||
else if (search === undefined) {
|
else if (search === undefined) {
|
||||||
return fixed[name];
|
return fixed[name] || null;
|
||||||
}
|
}
|
||||||
else if (search === null) {
|
else if (search === null) {
|
||||||
delete fixed[name];
|
delete fixed[name];
|
||||||
@@ -9920,14 +10086,9 @@
|
|||||||
jqTable.append( tfoot );
|
jqTable.append( tfoot );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clean up the header
|
// Clean up the header / footer
|
||||||
$(thead).find('span.dt-column-order').remove();
|
cleanHeader(thead, 'header');
|
||||||
$(thead).find('span.dt-column-title').each(function () {
|
cleanHeader(tfoot, 'footer');
|
||||||
var title = $(this).html();
|
|
||||||
$(this).parent().append(title);
|
|
||||||
$(this).remove();
|
|
||||||
});
|
|
||||||
|
|
||||||
settings.colgroup.remove();
|
settings.colgroup.remove();
|
||||||
|
|
||||||
settings.aaSorting = [];
|
settings.aaSorting = [];
|
||||||
@@ -9949,7 +10110,6 @@
|
|||||||
orderClasses.isDesc
|
orderClasses.isDesc
|
||||||
)
|
)
|
||||||
.css('width', '')
|
.css('width', '')
|
||||||
.removeAttr('data-dt-column')
|
|
||||||
.removeAttr('aria-sort');
|
.removeAttr('aria-sort');
|
||||||
|
|
||||||
// Add the TR elements back into the table in their original order
|
// Add the TR elements back into the table in their original order
|
||||||
@@ -10030,6 +10190,19 @@
|
|||||||
: resolved;
|
: resolved;
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
// Needed for header and footer, so pulled into its own function
|
||||||
|
function cleanHeader(node, className) {
|
||||||
|
$(node).find('span.dt-column-order').remove();
|
||||||
|
$(node).find('span.dt-column-title').each(function () {
|
||||||
|
var title = $(this).html();
|
||||||
|
$(this).parent().parent().append(title);
|
||||||
|
$(this).remove();
|
||||||
|
});
|
||||||
|
$(node).find('div.dt-column-' + className).remove();
|
||||||
|
|
||||||
|
$('th, td', node).removeAttr('data-dt-column');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Version string for plug-ins to check compatibility. Allowed format is
|
* Version string for plug-ins to check compatibility. Allowed format is
|
||||||
* `a.b.c-d` where: a:int, b:int, c:int, d:string(dev|beta|alpha). `d` is used
|
* `a.b.c-d` where: a:int, b:int, c:int, d:string(dev|beta|alpha). `d` is used
|
||||||
@@ -10038,7 +10211,7 @@
|
|||||||
* @type string
|
* @type string
|
||||||
* @default Version number
|
* @default Version number
|
||||||
*/
|
*/
|
||||||
DataTable.version = "2.2.2";
|
DataTable.version = "2.3.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Private data store, containing all of the settings objects that are
|
* Private data store, containing all of the settings objects that are
|
||||||
@@ -10645,6 +10818,10 @@
|
|||||||
"bSortCellsTop": null,
|
"bSortCellsTop": null,
|
||||||
|
|
||||||
|
|
||||||
|
/** Specify which row is the title row in the header. Replacement for bSortCellsTop */
|
||||||
|
titleRow: null,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable or disable the addition of the classes `sorting\_1`, `sorting\_2` and
|
* Enable or disable the addition of the classes `sorting\_1`, `sorting\_2` and
|
||||||
* `sorting\_3` to the columns which are currently being sorted on. This is
|
* `sorting\_3` to the columns which are currently being sorted on. This is
|
||||||
@@ -10922,6 +11099,13 @@
|
|||||||
1: "entry"
|
1: "entry"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Page length options
|
||||||
|
*/
|
||||||
|
lengthLabels: {
|
||||||
|
'-1': 'All'
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This string is shown in preference to `zeroRecords` when the table is
|
* This string is shown in preference to `zeroRecords` when the table is
|
||||||
* empty of data (regardless of filtering). Note that this is an optional
|
* empty of data (regardless of filtering). Note that this is an optional
|
||||||
@@ -11192,7 +11376,10 @@
|
|||||||
/**
|
/**
|
||||||
* For server-side processing - use the data from the DOM for the first draw
|
* For server-side processing - use the data from the DOM for the first draw
|
||||||
*/
|
*/
|
||||||
iDeferLoading: null
|
iDeferLoading: null,
|
||||||
|
|
||||||
|
/** Event listeners */
|
||||||
|
on: null
|
||||||
};
|
};
|
||||||
|
|
||||||
_fnHungarianMap( DataTable.defaults );
|
_fnHungarianMap( DataTable.defaults );
|
||||||
@@ -12019,10 +12206,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicate that if multiple rows are in the header and there is more than
|
* Indicate that if multiple rows are in the header and there is more than
|
||||||
* one unique cell per column, if the top one (true) or bottom one (false)
|
* one unique cell per column. Replaced by titleRow
|
||||||
* should be used for sorting / title by DataTables.
|
|
||||||
* Note that this parameter will be set by the initialisation routine. To
|
|
||||||
* set a default use {@link DataTable.defaults}.
|
|
||||||
*/
|
*/
|
||||||
"bSortCellsTop": null,
|
"bSortCellsTop": null,
|
||||||
|
|
||||||
@@ -12147,7 +12331,19 @@
|
|||||||
resizeObserver: null,
|
resizeObserver: null,
|
||||||
|
|
||||||
/** Keep a record of the last size of the container, so we can skip duplicates */
|
/** Keep a record of the last size of the container, so we can skip duplicates */
|
||||||
containerWidth: -1
|
containerWidth: -1,
|
||||||
|
|
||||||
|
/** Reverse the initial order of the data set on desc ordering */
|
||||||
|
orderDescReverse: null,
|
||||||
|
|
||||||
|
/** Show / hide ordering indicators in headers */
|
||||||
|
orderIndicators: true,
|
||||||
|
|
||||||
|
/** Default ordering listener */
|
||||||
|
orderHandler: true,
|
||||||
|
|
||||||
|
/** Title row indicator */
|
||||||
|
titleRow: null
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -12977,7 +13173,7 @@
|
|||||||
cell.addClass(classes.order.none);
|
cell.addClass(classes.order.none);
|
||||||
}
|
}
|
||||||
|
|
||||||
var legacyTop = settings.bSortCellsTop;
|
var titleRow = settings.titleRow;
|
||||||
var headerRows = cell.closest('thead').find('tr');
|
var headerRows = cell.closest('thead').find('tr');
|
||||||
var rowIdx = cell.parent().index();
|
var rowIdx = cell.parent().index();
|
||||||
|
|
||||||
@@ -12987,11 +13183,10 @@
|
|||||||
cell.attr('data-dt-order') === 'disable' ||
|
cell.attr('data-dt-order') === 'disable' ||
|
||||||
cell.parent().attr('data-dt-order') === 'disable' ||
|
cell.parent().attr('data-dt-order') === 'disable' ||
|
||||||
|
|
||||||
// Legacy support for `orderCellsTop`. If it is set, then cells
|
// titleRow support, for defining a specific row in the header
|
||||||
// which are not in the top or bottom row of the header (depending
|
(titleRow === true && rowIdx !== 0) ||
|
||||||
// on the value) do not get the sorting classes applied to them
|
(titleRow === false && rowIdx !== headerRows.length - 1) ||
|
||||||
(legacyTop === true && rowIdx !== 0) ||
|
(typeof titleRow === 'number' && rowIdx !== titleRow)
|
||||||
(legacyTop === false && rowIdx !== headerRows.length - 1)
|
|
||||||
) {
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -13001,7 +13196,7 @@
|
|||||||
// `DT` namespace will allow the event to be removed automatically
|
// `DT` namespace will allow the event to be removed automatically
|
||||||
// on destroy, while the `dt` namespaced event is the one we are
|
// on destroy, while the `dt` namespaced event is the one we are
|
||||||
// listening for
|
// listening for
|
||||||
$(settings.nTable).on( 'order.dt.DT column-visibility.dt.DT', function ( e, ctx ) {
|
$(settings.nTable).on( 'order.dt.DT column-visibility.dt.DT', function ( e, ctx, column ) {
|
||||||
if ( settings !== ctx ) { // need to check this this is the host
|
if ( settings !== ctx ) { // need to check this this is the host
|
||||||
return; // table, not a nested one
|
return; // table, not a nested one
|
||||||
}
|
}
|
||||||
@@ -13012,6 +13207,16 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var orderedColumns = _pluck(sorting, 'col');
|
||||||
|
|
||||||
|
// This handler is only needed on column visibility if the column is part of the
|
||||||
|
// ordering. If it isn't, then we can bail out to save performance. It could be a
|
||||||
|
// separate event handler, but this is a balance between code reuse / size and performance
|
||||||
|
// console.log(e, e.name, column, orderedColumns, orderedColumns.includes(column))
|
||||||
|
if (e.type === 'column-visibility' && ! orderedColumns.includes(column)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var i;
|
var i;
|
||||||
var orderClasses = classes.order;
|
var orderClasses = classes.order;
|
||||||
var columns = ctx.api.columns( cell );
|
var columns = ctx.api.columns( cell );
|
||||||
@@ -13020,8 +13225,8 @@
|
|||||||
var ariaType = '';
|
var ariaType = '';
|
||||||
var indexes = columns.indexes();
|
var indexes = columns.indexes();
|
||||||
var sortDirs = columns.orderable(true).flatten();
|
var sortDirs = columns.orderable(true).flatten();
|
||||||
var orderedColumns = _pluck(sorting, 'col');
|
|
||||||
var tabIndex = settings.iTabIndex;
|
var tabIndex = settings.iTabIndex;
|
||||||
|
var canOrder = ctx.orderHandler && orderable;
|
||||||
|
|
||||||
cell
|
cell
|
||||||
.removeClass(
|
.removeClass(
|
||||||
@@ -13029,8 +13234,8 @@
|
|||||||
orderClasses.isDesc
|
orderClasses.isDesc
|
||||||
)
|
)
|
||||||
.toggleClass( orderClasses.none, ! orderable )
|
.toggleClass( orderClasses.none, ! orderable )
|
||||||
.toggleClass( orderClasses.canAsc, orderable && sortDirs.includes('asc') )
|
.toggleClass( orderClasses.canAsc, canOrder && sortDirs.includes('asc') )
|
||||||
.toggleClass( orderClasses.canDesc, orderable && sortDirs.includes('desc') );
|
.toggleClass( orderClasses.canDesc, canOrder && sortDirs.includes('desc') );
|
||||||
|
|
||||||
// Determine if all of the columns that this cell covers are included in the
|
// Determine if all of the columns that this cell covers are included in the
|
||||||
// current ordering
|
// current ordering
|
||||||
@@ -13789,12 +13994,17 @@
|
|||||||
} );
|
} );
|
||||||
|
|
||||||
for ( i=0 ; i<lengths.length ; i++ ) {
|
for ( i=0 ; i<lengths.length ; i++ ) {
|
||||||
select[0][ i ] = new Option(
|
// Attempt to look up the length from the i18n options
|
||||||
typeof language[i] === 'number' ?
|
var label = settings.api.i18n('lengthLabels.' + lengths[i], null);
|
||||||
|
|
||||||
|
if (label === null) {
|
||||||
|
// If not present, fallback to old style
|
||||||
|
label = typeof language[i] === 'number' ?
|
||||||
settings.fnFormatNumber( language[i] ) :
|
settings.fnFormatNumber( language[i] ) :
|
||||||
language[i],
|
language[i];
|
||||||
lengths[i]
|
}
|
||||||
);
|
|
||||||
|
select[0][ i ] = new Option(label, lengths[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// add for and id to label and input
|
// add for and id to label and input
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
<dt class="col-sm-5">Web Installed
|
<dt class="col-sm-5">Web Installed
|
||||||
<span class="badge bg-success d-none" id="web-success" title="Latest version is installed.">Ok</span>
|
<span class="badge bg-success d-none" id="web-success" title="Latest version is installed.">Ok</span>
|
||||||
<span class="badge bg-warning text-dark d-none" id="web-warning" title="There seems to be an update available.">Update</span>
|
<span class="badge bg-warning text-dark d-none" id="web-warning" title="There seems to be an update available.">Update</span>
|
||||||
|
<span class="badge bg-info text-dark d-none" id="web-prerelease" title="You seem to be using a pre-release version.">Pre-Release</span>
|
||||||
</dt>
|
</dt>
|
||||||
<dd class="col-sm-7">
|
<dd class="col-sm-7">
|
||||||
<span id="web-installed">{{page_data.web_vault_version}}</span>
|
<span id="web-installed">{{page_data.web_vault_version}}</span>
|
||||||
@@ -68,10 +69,14 @@
|
|||||||
<span class="d-block"><b>No</b></span>
|
<span class="d-block"><b>No</b></span>
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="col-sm-5">Environment settings overridden</dt>
|
<dt class="col-sm-5">Uses config.json
|
||||||
|
{{#if page_data.overrides}}
|
||||||
|
<span class="badge bg-info text-dark" title="Environment variables are overwritten by a config.json.">Note</span>
|
||||||
|
{{/if}}
|
||||||
|
</dt>
|
||||||
<dd class="col-sm-7">
|
<dd class="col-sm-7">
|
||||||
{{#if page_data.overrides}}
|
{{#if page_data.overrides}}
|
||||||
<span class="d-block" title="The following settings are overridden: {{page_data.overrides}}"><b>Yes</b></span>
|
<abbr class="d-block" title="The following settings are overridden: {{page_data.overrides}}"><b>Yes</b></abbr>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#unless page_data.overrides}}
|
{{#unless page_data.overrides}}
|
||||||
<span class="d-block"><b>No</b></span>
|
<span class="d-block"><b>No</b></span>
|
||||||
@@ -154,7 +159,11 @@
|
|||||||
<dd class="col-sm-7">
|
<dd class="col-sm-7">
|
||||||
<span id="dns-resolved">{{page_data.dns_resolved}}</span>
|
<span id="dns-resolved">{{page_data.dns_resolved}}</span>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="col-sm-5">Date & Time (Local)</dt>
|
<dt class="col-sm-5">Date & Time (Local)
|
||||||
|
{{#if page_data.tz_env}}
|
||||||
|
<span class="badge bg-success" title="Configured TZ environment variable">{{page_data.tz_env}}</span>
|
||||||
|
{{/if}}
|
||||||
|
</dt>
|
||||||
<dd class="col-sm-7">
|
<dd class="col-sm-7">
|
||||||
<span><b>Server:</b> {{page_data.server_time_local}}</span>
|
<span><b>Server:</b> {{page_data.server_time_local}}</span>
|
||||||
</dd>
|
</dd>
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
<span class="d-block"><strong>Groups:</strong> {{group_count}}</span>
|
<span class="d-block"><strong>Groups:</strong> {{group_count}}</span>
|
||||||
<span class="d-block"><strong>Events:</strong> {{event_count}}</span>
|
<span class="d-block"><strong>Events:</strong> {{event_count}}</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-end px-0 small">
|
<td class="text-end px-1 small">
|
||||||
<button type="button" class="btn btn-sm btn-link p-0 border-0 float-right" vw-delete-organization data-vw-org-uuid="{{id}}" data-vw-org-name="{{name}}" data-vw-billing-email="{{billingEmail}}">Delete Organization</button><br>
|
<button type="button" class="btn btn-sm btn-link p-0 border-0 float-right" vw-delete-organization data-vw-org-uuid="{{id}}" data-vw-org-name="{{name}}" data-vw-billing-email="{{billingEmail}}">Delete Organization</button><br>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-end px-0 small">
|
<td class="text-end px-1 small">
|
||||||
<span data-vw-user-uuid="{{id}}" data-vw-user-email="{{email}}">
|
<span data-vw-user-uuid="{{id}}" data-vw-user-email="{{email}}">
|
||||||
{{#if twoFactorEnabled}}
|
{{#if twoFactorEnabled}}
|
||||||
<button type="button" class="btn btn-sm btn-link p-0 border-0 float-right" vw-remove2fa>Remove all 2FA</button><br>
|
<button type="button" class="btn btn-sm btn-link p-0 border-0 float-right" vw-remove2fa>Remove all 2FA</button><br>
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
Your Email Change
|
||||||
|
<!---------------->
|
||||||
|
A user ({{ acting_address }}) recently tried to change their account to use this email address ({{ existing_address }}). An account already exists with this email ({{ existing_address }}).
|
||||||
|
|
||||||
|
If you did not try to change an email address, contact your administrator.
|
||||||
|
{{> email/email_footer_text }}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
Your Email Change
|
||||||
|
<!---------------->
|
||||||
|
{{> email/email_header }}
|
||||||
|
<table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
||||||
|
<tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
||||||
|
<td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center">
|
||||||
|
A user ({{ acting_address }}) recently tried to change their account to use this email address ({{ existing_address }}). An account already exists with this email ({{ existing_address }}).
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
||||||
|
<td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center">
|
||||||
|
If you did not try to change an email address, contact your administrator.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
{{> email/email_footer }}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
Removed from {{{org_name}}}
|
Your access to {{{org_name}}} has been revoked.
|
||||||
<!---------------->
|
<!---------------->
|
||||||
You have been removed from organization *{{org_name}}* because your account does not have Two-step Login enabled.
|
Your user account has been removed from the *{{org_name}}* organization because you do not have two-step login configured.
|
||||||
|
Before you can re-join this organization you need to set up two-step login on your user account.
|
||||||
|
|
||||||
|
You can enable two-step login in your account settings.
|
||||||
You can enable Two-step Login in your account settings.
|
|
||||||
{{> email/email_footer_text }}
|
{{> email/email_footer_text }}
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
Removed from {{{org_name}}}
|
Your access to {{{org_name}}} has been revoked.
|
||||||
<!---------------->
|
<!---------------->
|
||||||
{{> email/email_header }}
|
{{> email/email_header }}
|
||||||
<table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
<table width="100%" cellpadding="0" cellspacing="0" style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
||||||
<tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
<tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
||||||
<td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center">
|
<td class="content-block" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0 0 10px; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center">
|
||||||
You have been removed from organization <b style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">{{org_name}}</b> because your account does not have Two-step Login enabled.
|
Your user account has been removed from the <b style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">{{org_name}}</b> organization because you do not have two-step login configured.<br>
|
||||||
|
Before you can re-join this organization you need to set up two-step login on your user account.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
<tr style="margin: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: none;">
|
||||||
<td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center">
|
<td class="content-block last" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; padding: 0; -webkit-text-size-adjust: none; text-align: center;" valign="top" align="center">
|
||||||
You can enable Two-step Login in your account settings.
|
You can enable two-step login in your account settings.
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@@ -82,15 +82,19 @@ bit-nav-logo bit-nav-item .bwi-shield {
|
|||||||
{{#if signup_disabled}}
|
{{#if signup_disabled}}
|
||||||
/* From web vault 2025.1.2 and onwards, the signup button is hidden
|
/* From web vault 2025.1.2 and onwards, the signup button is hidden
|
||||||
when signups are disabled as the web vault checks the /api/config endpoint.
|
when signups are disabled as the web vault checks the /api/config endpoint.
|
||||||
Note that the clients tend to aggressively cache this endpoint, so it might
|
Note that the clients tend to cache this endpoint for about 1 hour, so it might
|
||||||
take a while for the change to take effect. To avoid the button appearing
|
take a while for the change to take effect. To avoid the button appearing
|
||||||
when it shouldn't, we'll keep this style in place for a couple of versions */
|
when it shouldn't, we'll keep this style in place for a couple of versions */
|
||||||
{{#if webver "<2025.3.0"}}
|
|
||||||
/* Hide the register link on the login screen */
|
/* Hide the register link on the login screen */
|
||||||
|
{{#if (webver "<2025.3.0")}}
|
||||||
app-login form div + div + div + div + hr,
|
app-login form div + div + div + div + hr,
|
||||||
app-login form div + div + div + div + hr + p {
|
app-login form div + div + div + div + hr + p {
|
||||||
@extend %vw-hide;
|
@extend %vw-hide;
|
||||||
}
|
}
|
||||||
|
{{else}}
|
||||||
|
app-root a[routerlink="/signup"] {
|
||||||
|
@extend %vw-hide;
|
||||||
|
}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|||||||
+14
-3
@@ -752,9 +752,20 @@ pub fn convert_json_key_lcase_first(src_json: Value) -> Value {
|
|||||||
|
|
||||||
/// Parses the experimental client feature flags string into a HashMap.
|
/// Parses the experimental client feature flags string into a HashMap.
|
||||||
pub fn parse_experimental_client_feature_flags(experimental_client_feature_flags: &str) -> HashMap<String, bool> {
|
pub fn parse_experimental_client_feature_flags(experimental_client_feature_flags: &str) -> HashMap<String, bool> {
|
||||||
let feature_states = experimental_client_feature_flags.split(',').map(|f| (f.trim().to_owned(), true)).collect();
|
// These flags could still be configured, but are deprecated and not used anymore
|
||||||
|
// To prevent old installations from starting filter these out and not error out
|
||||||
feature_states
|
const DEPRECATED_FLAGS: &[&str] =
|
||||||
|
&["autofill-overlay", "autofill-v2", "browser-fileless-import", "extension-refresh", "fido2-vault-credentials"];
|
||||||
|
experimental_client_feature_flags
|
||||||
|
.split(',')
|
||||||
|
.filter_map(|f| {
|
||||||
|
let flag = f.trim();
|
||||||
|
if !flag.is_empty() && !DEPRECATED_FLAGS.contains(&flag) {
|
||||||
|
return Some((flag.to_owned(), true));
|
||||||
|
}
|
||||||
|
None
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// TODO: This is extracted from IpAddr::is_global, which is unstable:
|
/// TODO: This is extracted from IpAddr::is_global, which is unstable:
|
||||||
|
|||||||
Reference in New Issue
Block a user