mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-08-04 10:18:42 +02:00
407 lines
12 KiB
Rust
407 lines
12 KiB
Rust
use lazy_static::lazy_static;
|
|
use reqwest::Client;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::collections::HashMap;
|
|
use tokio::sync::{Mutex, RwLock};
|
|
use tokio::task::JoinHandle;
|
|
|
|
use crate::cloud_auth::{CloudAuthManager, CLOUD_API_URL, CLOUD_AUTH};
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct ProfileLockInfo {
|
|
#[serde(rename = "profileId")]
|
|
pub profile_id: String,
|
|
#[serde(rename = "lockedBy")]
|
|
pub locked_by: String,
|
|
#[serde(rename = "lockedByEmail")]
|
|
pub locked_by_email: String,
|
|
#[serde(rename = "lockedAt")]
|
|
pub locked_at: String,
|
|
#[serde(rename = "expiresAt", default)]
|
|
pub expires_at: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
#[allow(dead_code)]
|
|
struct AcquireLockResponse {
|
|
success: bool,
|
|
#[serde(rename = "lockedBy")]
|
|
locked_by: Option<String>,
|
|
#[serde(rename = "lockedByEmail")]
|
|
locked_by_email: Option<String>,
|
|
}
|
|
|
|
pub struct ProfileLockManager {
|
|
locks: RwLock<HashMap<String, ProfileLockInfo>>,
|
|
heartbeat_handle: Mutex<Option<JoinHandle<()>>>,
|
|
connected: Mutex<bool>,
|
|
}
|
|
|
|
lazy_static! {
|
|
pub static ref PROFILE_LOCK: ProfileLockManager = ProfileLockManager::new();
|
|
}
|
|
|
|
// Keep backward compatibility alias
|
|
pub use PROFILE_LOCK as TEAM_LOCK;
|
|
|
|
impl ProfileLockManager {
|
|
fn new() -> Self {
|
|
Self {
|
|
locks: RwLock::new(HashMap::new()),
|
|
heartbeat_handle: Mutex::new(None),
|
|
connected: Mutex::new(false),
|
|
}
|
|
}
|
|
|
|
pub async fn connect(&self) {
|
|
log::info!("Connecting profile lock manager");
|
|
|
|
{
|
|
let mut c = self.connected.lock().await;
|
|
*c = true;
|
|
}
|
|
|
|
if let Err(e) = self.fetch_locks().await {
|
|
log::warn!("Failed to fetch initial profile locks: {e}");
|
|
}
|
|
|
|
self.start_heartbeat_loop().await;
|
|
}
|
|
|
|
pub async fn disconnect(&self) {
|
|
log::info!("Disconnecting profile lock manager");
|
|
|
|
{
|
|
let mut handle = self.heartbeat_handle.lock().await;
|
|
if let Some(h) = handle.take() {
|
|
h.abort();
|
|
}
|
|
}
|
|
|
|
{
|
|
let mut locks = self.locks.write().await;
|
|
locks.clear();
|
|
}
|
|
|
|
{
|
|
let mut c = self.connected.lock().await;
|
|
*c = false;
|
|
}
|
|
}
|
|
|
|
pub async fn is_connected(&self) -> bool {
|
|
*self.connected.lock().await
|
|
}
|
|
|
|
pub async fn acquire_lock(&self, profile_id: &str) -> Result<(), String> {
|
|
let client = Client::new();
|
|
let access_token = CloudAuthManager::load_access_token()?
|
|
.ok_or_else(|| crate::backend_error("PROFILE_LOCK_UNAVAILABLE"))?;
|
|
|
|
let url = format!("{CLOUD_API_URL}/api/profile-locks/{profile_id}");
|
|
let response = client
|
|
.post(&url)
|
|
.header("Authorization", format!("Bearer {access_token}"))
|
|
.send()
|
|
.await
|
|
.map_err(|e| {
|
|
log::warn!("Failed to acquire profile lock for {profile_id}: {e}");
|
|
crate::backend_error("PROFILE_LOCK_UNAVAILABLE")
|
|
})?;
|
|
|
|
if !response.status().is_success() {
|
|
let status = response.status();
|
|
let body = response.text().await.unwrap_or_default();
|
|
log::warn!("Profile lock acquisition for {profile_id} failed ({status}): {body}");
|
|
return Err(crate::backend_error("PROFILE_LOCK_UNAVAILABLE"));
|
|
}
|
|
|
|
let result: AcquireLockResponse = response.json().await.map_err(|e| {
|
|
log::warn!("Could not parse the profile lock response for {profile_id}: {e}");
|
|
crate::backend_error("PROFILE_LOCK_UNAVAILABLE")
|
|
})?;
|
|
|
|
if !result.success {
|
|
return Err(lock_conflict_error(
|
|
profile_id,
|
|
result.locked_by.as_deref(),
|
|
result.locked_by_email.as_deref(),
|
|
));
|
|
}
|
|
|
|
// Update local cache
|
|
if let Some(user) = CLOUD_AUTH.get_user().await {
|
|
let mut locks = self.locks.write().await;
|
|
locks.insert(
|
|
profile_id.to_string(),
|
|
ProfileLockInfo {
|
|
profile_id: profile_id.to_string(),
|
|
locked_by: user.user.id.clone(),
|
|
locked_by_email: user.user.email.clone(),
|
|
locked_at: chrono::Utc::now().to_rfc3339(),
|
|
expires_at: None,
|
|
},
|
|
);
|
|
}
|
|
|
|
let _ = crate::events::emit(
|
|
"profile-lock-changed",
|
|
serde_json::json!({ "profileId": profile_id, "action": "acquired" }),
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn release_lock(&self, profile_id: &str) -> Result<(), String> {
|
|
let client = Client::new();
|
|
let access_token =
|
|
CloudAuthManager::load_access_token()?.ok_or_else(|| "Not logged in".to_string())?;
|
|
|
|
let url = format!("{CLOUD_API_URL}/api/profile-locks/{profile_id}");
|
|
let _ = client
|
|
.delete(&url)
|
|
.header("Authorization", format!("Bearer {access_token}"))
|
|
.send()
|
|
.await;
|
|
|
|
{
|
|
let mut locks = self.locks.write().await;
|
|
locks.remove(profile_id);
|
|
}
|
|
|
|
let _ = crate::events::emit(
|
|
"profile-lock-changed",
|
|
serde_json::json!({ "profileId": profile_id, "action": "released" }),
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn get_locks(&self) -> Vec<ProfileLockInfo> {
|
|
let locks = self.locks.read().await;
|
|
locks.values().cloned().collect()
|
|
}
|
|
|
|
pub async fn get_lock_status(&self, profile_id: &str) -> Option<ProfileLockInfo> {
|
|
let locks = self.locks.read().await;
|
|
locks.get(profile_id).cloned()
|
|
}
|
|
|
|
pub async fn is_locked_by_another(&self, profile_id: &str) -> bool {
|
|
let locks = self.locks.read().await;
|
|
if let Some(lock) = locks.get(profile_id) {
|
|
if let Some(user) = CLOUD_AUTH.get_user().await {
|
|
return lock.locked_by != user.user.id;
|
|
}
|
|
}
|
|
false
|
|
}
|
|
|
|
async fn fetch_locks(&self) -> Result<(), String> {
|
|
let client = Client::new();
|
|
let access_token =
|
|
CloudAuthManager::load_access_token()?.ok_or_else(|| "Not logged in".to_string())?;
|
|
|
|
let url = format!("{CLOUD_API_URL}/api/profile-locks");
|
|
let response = client
|
|
.get(&url)
|
|
.header("Authorization", format!("Bearer {access_token}"))
|
|
.send()
|
|
.await
|
|
.map_err(|e| format!("Failed to fetch locks: {e}"))?;
|
|
|
|
if !response.status().is_success() {
|
|
return Err("Failed to fetch locks".to_string());
|
|
}
|
|
|
|
let lock_list: Vec<ProfileLockInfo> = response
|
|
.json()
|
|
.await
|
|
.map_err(|e| format!("Failed to parse locks: {e}"))?;
|
|
|
|
let mut locks = self.locks.write().await;
|
|
locks.clear();
|
|
for lock in lock_list {
|
|
locks.insert(lock.profile_id.clone(), lock);
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn start_heartbeat_loop(&self) {
|
|
let mut handle = self.heartbeat_handle.lock().await;
|
|
if let Some(h) = handle.take() {
|
|
h.abort();
|
|
}
|
|
|
|
let h = tokio::spawn(async move {
|
|
loop {
|
|
tokio::time::sleep(std::time::Duration::from_secs(30)).await;
|
|
|
|
if !PROFILE_LOCK.is_connected().await {
|
|
break;
|
|
}
|
|
|
|
// Send heartbeat for each held lock
|
|
let held_locks: Vec<String> = {
|
|
let locks = PROFILE_LOCK.locks.read().await;
|
|
if let Some(user) = CLOUD_AUTH.get_user().await {
|
|
locks
|
|
.values()
|
|
.filter(|l| l.locked_by == user.user.id)
|
|
.map(|l| l.profile_id.clone())
|
|
.collect()
|
|
} else {
|
|
vec![]
|
|
}
|
|
};
|
|
|
|
for profile_id in held_locks {
|
|
let client = Client::new();
|
|
if let Ok(Some(token)) = CloudAuthManager::load_access_token() {
|
|
let url = format!("{CLOUD_API_URL}/api/profile-locks/{profile_id}/heartbeat");
|
|
let _ = client
|
|
.post(&url)
|
|
.header("Authorization", format!("Bearer {token}"))
|
|
.send()
|
|
.await;
|
|
}
|
|
}
|
|
|
|
// Refresh lock state from server
|
|
if let Err(e) = PROFILE_LOCK.fetch_locks().await {
|
|
log::debug!("Failed to refresh profile locks: {e}");
|
|
}
|
|
}
|
|
});
|
|
|
|
*handle = Some(h);
|
|
}
|
|
}
|
|
|
|
/// Separator the backend puts between a user id and a non-desktop holder's
|
|
/// sub-identity. Mirrors `HOLDER_SEPARATOR` in donutbrowser-infra's
|
|
/// `profile-locks.service.ts`.
|
|
///
|
|
/// A remote VM session takes the lock under `<user id>:vm:<session id>` so it
|
|
/// contends with this desktop instead of silently sharing its lock. That makes
|
|
/// the holder string the one place a client can tell "a teammate has this open"
|
|
/// apart from "this is my own profile, running on the fleet" — two refusals that
|
|
/// need completely different words.
|
|
const VM_HOLDER_SEPARATOR: &str = ":vm:";
|
|
|
|
/// The `{"code":…}` for a lock this caller could not take.
|
|
fn lock_conflict_error(
|
|
profile_id: &str,
|
|
holder: Option<&str>,
|
|
holder_email: Option<&str>,
|
|
) -> String {
|
|
if holder.is_some_and(|id| id.contains(VM_HOLDER_SEPARATOR)) {
|
|
// The user's own remote session. Saying "in use by you@example.com" here,
|
|
// which is what the raw backend message did, reads as a bug.
|
|
log::info!("Profile {profile_id} is held by a remote session");
|
|
return crate::backend_error("PROFILE_RUNNING_REMOTELY");
|
|
}
|
|
match holder_email {
|
|
Some(email) if !email.is_empty() => serde_json::json!({
|
|
"code": "PROFILE_LOCKED_BY_MEMBER",
|
|
"params": { "email": email }
|
|
})
|
|
.to_string(),
|
|
_ => crate::backend_error("PROFILE_LOCKED_ELSEWHERE"),
|
|
}
|
|
}
|
|
|
|
/// Acquire profile lock if profile is sync-enabled and user has a paid subscription.
|
|
pub async fn acquire_team_lock_if_needed(
|
|
profile: &crate::profile::BrowserProfile,
|
|
) -> Result<(), String> {
|
|
if !profile.is_sync_enabled() {
|
|
return Ok(());
|
|
}
|
|
if !CLOUD_AUTH.has_active_paid_subscription().await {
|
|
return Ok(());
|
|
}
|
|
|
|
// Ensure lock manager is connected
|
|
if !PROFILE_LOCK.is_connected().await {
|
|
PROFILE_LOCK.connect().await;
|
|
}
|
|
|
|
if PROFILE_LOCK
|
|
.is_locked_by_another(&profile.id.to_string())
|
|
.await
|
|
{
|
|
let held = PROFILE_LOCK.get_lock_status(&profile.id.to_string()).await;
|
|
return Err(lock_conflict_error(
|
|
&profile.id.to_string(),
|
|
held.as_ref().map(|lock| lock.locked_by.as_str()),
|
|
held.as_ref().map(|lock| lock.locked_by_email.as_str()),
|
|
));
|
|
}
|
|
|
|
PROFILE_LOCK.acquire_lock(&profile.id.to_string()).await
|
|
}
|
|
|
|
/// Release profile lock if profile is sync-enabled and user has a paid subscription.
|
|
pub async fn release_team_lock_if_needed(profile: &crate::profile::BrowserProfile) {
|
|
if !profile.is_sync_enabled() {
|
|
return;
|
|
}
|
|
if !CLOUD_AUTH.has_active_paid_subscription().await {
|
|
return;
|
|
}
|
|
|
|
if let Err(e) = PROFILE_LOCK.release_lock(&profile.id.to_string()).await {
|
|
log::warn!("Failed to release profile lock for {}: {e}", profile.id);
|
|
}
|
|
}
|
|
|
|
// --- Tauri commands ---
|
|
|
|
#[tauri::command]
|
|
pub async fn get_team_locks() -> Result<Vec<ProfileLockInfo>, String> {
|
|
Ok(PROFILE_LOCK.get_locks().await)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn get_team_lock_status(profile_id: String) -> Result<Option<ProfileLockInfo>, String> {
|
|
Ok(PROFILE_LOCK.get_lock_status(&profile_id).await)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn a_users_own_remote_session_is_not_reported_as_a_teammate() {
|
|
// The holder for a fleet session is `<user id>:vm:<session id>` and the row
|
|
// carries the OWNER's email, so the previous message read "Profile is in use
|
|
// by you@example.com" — the user's own address, about their own profile.
|
|
let err = lock_conflict_error(
|
|
"p1",
|
|
Some("11111111-2222-3333-4444-555555555555:vm:run-remote:p1:abc"),
|
|
Some("owner@example.com"),
|
|
);
|
|
assert_eq!(err, r#"{"code":"PROFILE_RUNNING_REMOTELY"}"#);
|
|
assert!(!err.contains("owner@example.com"));
|
|
}
|
|
|
|
#[test]
|
|
fn a_teammates_lock_names_them_through_a_translatable_code() {
|
|
let err = lock_conflict_error("p1", Some("other-user-id"), Some("mate@example.com"));
|
|
let json: serde_json::Value = serde_json::from_str(&err).expect("a code envelope");
|
|
assert_eq!(json["code"], "PROFILE_LOCKED_BY_MEMBER");
|
|
assert_eq!(json["params"]["email"], "mate@example.com");
|
|
}
|
|
|
|
#[test]
|
|
fn a_lock_with_no_identifiable_holder_still_produces_a_code() {
|
|
// Raw English here is what reaches a Russian user untranslated.
|
|
for holder in [None, Some("")] {
|
|
let err = lock_conflict_error("p1", holder, None);
|
|
assert_eq!(err, r#"{"code":"PROFILE_LOCKED_ELSEWHERE"}"#);
|
|
}
|
|
}
|
|
}
|