Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-05 02:28:00 +01:00
d70864ac73
For now only folder notifications are sent (create, rename, delete). The notifications are only tested between two web-vault sessions in different browsers, mobile apps and browser extensions are untested. The websocket server is exposed in port 3012, while the rocket server is exposed in another port (8000 by default). To make notifications work, both should be accessible in the same port, which requires a reverse proxy. My testing is done with Caddy server, and the following config: ``` localhost { # The negotiation endpoint is also proxied to Rocket proxy /notifications/hub/negotiate 0.0.0.0:8000 { transparent } # Notifications redirected to the websockets server proxy /notifications/hub 0.0.0.0:3012 { websocket } # Proxy the Root directory to Rocket proxy / 0.0.0.0:8000 { transparent } } ``` This exposes the service in port 2015.
53 Zeilen
1,3 KiB
Rust
53 Zeilen
1,3 KiB
Rust
pub(crate) mod core;
|
|
mod icons;
|
|
mod identity;
|
|
mod web;
|
|
mod notifications;
|
|
|
|
pub use self::core::routes as core_routes;
|
|
pub use self::icons::routes as icons_routes;
|
|
pub use self::identity::routes as identity_routes;
|
|
pub use self::web::routes as web_routes;
|
|
pub use self::notifications::routes as notifications_routes;
|
|
pub use self::notifications::{start_notification_server, WebSocketUsers, UpdateType};
|
|
|
|
use rocket::response::status::BadRequest;
|
|
use rocket_contrib::Json;
|
|
|
|
// Type aliases for API methods results
|
|
type ApiResult<T> = Result<T, BadRequest<Json>>;
|
|
type JsonResult = ApiResult<Json>;
|
|
type EmptyResult = ApiResult<()>;
|
|
|
|
use util;
|
|
type JsonUpcase<T> = Json<util::UpCase<T>>;
|
|
|
|
// Common structs representing JSON data received
|
|
#[derive(Deserialize)]
|
|
#[allow(non_snake_case)]
|
|
struct PasswordData {
|
|
MasterPasswordHash: String
|
|
}
|
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
|
#[serde(untagged)]
|
|
enum NumberOrString {
|
|
Number(i32),
|
|
String(String),
|
|
}
|
|
|
|
impl NumberOrString {
|
|
fn into_string(self) -> String {
|
|
match self {
|
|
NumberOrString::Number(n) => n.to_string(),
|
|
NumberOrString::String(s) => s
|
|
}
|
|
}
|
|
|
|
fn into_i32(self) -> Option<i32> {
|
|
match self {
|
|
NumberOrString::Number(n) => Some(n),
|
|
NumberOrString::String(s) => s.parse().ok()
|
|
}
|
|
}
|
|
}
|