File size: 14,721 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | use crate::models::DeviceProfile;
use crate::modules::{logger, process};
use chrono::Local;
use rand::{distributions::Alphanumeric, Rng};
use rusqlite::Connection;
use serde_json::Value;
use std::fs;
use std::path::{Path, PathBuf};
use uuid::Uuid;
const DATA_DIR: &str = ".antigravity_tools";
const GLOBAL_BASELINE: &str = "device_original.json";
fn get_data_dir() -> Result<PathBuf, String> {
let home = dirs::home_dir().ok_or("failed_to_get_home_dir")?;
let data_dir = home.join(DATA_DIR);
if !data_dir.exists() {
fs::create_dir_all(&data_dir).map_err(|e| format!("failed_to_create_data_dir: {}", e))?;
}
Ok(data_dir)
}
/// Find storage.json path (prefer custom/portable paths)
pub fn get_storage_path() -> Result<PathBuf, String> {
// 1) --user-data-dir flag
if let Some(user_data_dir) = process::get_user_data_dir_from_process() {
let path = user_data_dir
.join("User")
.join("globalStorage")
.join("storage.json");
if path.exists() {
return Ok(path);
}
}
// 2) Portable mode (based on executable data/user-data)
if let Some(exe_path) = process::get_antigravity_executable_path() {
if let Some(parent) = exe_path.parent() {
let portable = parent
.join("data")
.join("user-data")
.join("User")
.join("globalStorage")
.join("storage.json");
if portable.exists() {
return Ok(portable);
}
}
}
// 3) Standard installation location
#[cfg(target_os = "macos")]
{
let home = dirs::home_dir().ok_or("failed_to_get_home_dir")?;
let path =
home.join("Library/Application Support/Antigravity/User/globalStorage/storage.json");
if path.exists() {
return Ok(path);
}
}
#[cfg(target_os = "windows")]
{
let appdata =
std::env::var("APPDATA").map_err(|_| "failed_to_get_appdata_env".to_string())?;
let path = PathBuf::from(appdata).join("Antigravity\\User\\globalStorage\\storage.json");
if path.exists() {
return Ok(path);
}
}
#[cfg(target_os = "linux")]
{
let home = dirs::home_dir().ok_or("failed_to_get_home_dir")?;
let path = home.join(".config/Antigravity/User/globalStorage/storage.json");
if path.exists() {
return Ok(path);
}
}
Err("storage_json_not_found".to_string())
}
/// Get directory of storage.json
pub fn get_storage_dir() -> Result<PathBuf, String> {
let path = get_storage_path()?;
path.parent()
.map(|p| p.to_path_buf())
.ok_or_else(|| "failed_to_get_storage_parent_dir".to_string())
}
/// Get state.vscdb path (same directory as storage.json)
pub fn get_state_db_path() -> Result<PathBuf, String> {
let dir = get_storage_dir()?;
Ok(dir.join("state.vscdb"))
}
/// Backup storage.json, returns backup file path
#[allow(dead_code)]
pub fn backup_storage(storage_path: &Path) -> Result<PathBuf, String> {
if !storage_path.exists() {
return Err(format!("storage_json_missing: {:?}", storage_path));
}
let dir = storage_path
.parent()
.ok_or_else(|| "failed_to_get_storage_parent_dir".to_string())?;
let backup_path = dir.join(format!(
"storage.json.backup_{}",
Local::now().format("%Y%m%d_%H%M%S")
));
fs::copy(storage_path, &backup_path).map_err(|e| format!("backup_failed: {}", e))?;
Ok(backup_path)
}
/// Read current device profile from storage.json
#[allow(dead_code)]
pub fn read_profile(storage_path: &Path) -> Result<DeviceProfile, String> {
let content =
fs::read_to_string(storage_path).map_err(|e| format!("read_failed ({:?}): {}", storage_path, e))?;
let json: Value =
serde_json::from_str(&content).map_err(|e| format!("parse_failed ({:?}): {}", storage_path, e))?;
// Supports nested telemetry or flat telemetry.xxx
let get_field = |key: &str| -> Option<String> {
if let Some(obj) = json.get("telemetry").and_then(|v| v.as_object()) {
if let Some(v) = obj.get(key).and_then(|v| v.as_str()) {
return Some(v.to_string());
}
}
if let Some(v) = json
.get(format!("telemetry.{key}"))
.and_then(|v| v.as_str())
{
return Some(v.to_string());
}
None
};
Ok(DeviceProfile {
machine_id: get_field("machineId").ok_or("missing_machine_id")?,
mac_machine_id: get_field("macMachineId").ok_or("missing_mac_machine_id")?,
dev_device_id: get_field("devDeviceId").ok_or("missing_dev_device_id")?,
sqm_id: get_field("sqmId").ok_or("missing_sqm_id")?,
})
}
/// Write device profile to storage.json
pub fn write_profile(storage_path: &Path, profile: &DeviceProfile) -> Result<(), String> {
if !storage_path.exists() {
return Err(format!("storage_json_missing: {:?}", storage_path));
}
let content =
fs::read_to_string(storage_path).map_err(|e| format!("read_failed: {}", e))?;
let mut json: Value =
serde_json::from_str(&content).map_err(|e| format!("parse_failed: {}", e))?;
// Ensure telemetry is an object
if !json.get("telemetry").map_or(false, |v| v.is_object()) {
if json.as_object_mut().is_some() {
json["telemetry"] = serde_json::json!({});
} else {
return Err("json_top_level_not_object".to_string());
}
}
if let Some(telemetry) = json.get_mut("telemetry").and_then(|v| v.as_object_mut()) {
telemetry.insert(
"machineId".to_string(),
Value::String(profile.machine_id.clone()),
);
telemetry.insert(
"macMachineId".to_string(),
Value::String(profile.mac_machine_id.clone()),
);
telemetry.insert(
"devDeviceId".to_string(),
Value::String(profile.dev_device_id.clone()),
);
telemetry.insert("sqmId".to_string(), Value::String(profile.sqm_id.clone()));
} else {
return Err("telemetry_not_object".to_string());
}
// Write flat keys as well, compatible with old formats
if let Some(map) = json.as_object_mut() {
map.insert(
"telemetry.machineId".to_string(),
Value::String(profile.machine_id.clone()),
);
map.insert(
"telemetry.macMachineId".to_string(),
Value::String(profile.mac_machine_id.clone()),
);
map.insert(
"telemetry.devDeviceId".to_string(),
Value::String(profile.dev_device_id.clone()),
);
map.insert(
"telemetry.sqmId".to_string(),
Value::String(profile.sqm_id.clone()),
);
}
// Sync storage.serviceMachineId (match with devDeviceId), place at root level
if let Some(map) = json.as_object_mut() {
map.insert(
"storage.serviceMachineId".to_string(),
Value::String(profile.dev_device_id.clone()),
);
}
let updated = serde_json::to_string_pretty(&json)
.map_err(|e| format!("serialize_failed: {}", e))?;
fs::write(storage_path, updated).map_err(|e| format!("write_failed ({:?}): {}", storage_path, e))?;
logger::log_info(&format!("device_profile_written to {:?}", storage_path));
// Sync ItemTable.storage.serviceMachineId in state.vscdb
let _ = sync_state_service_machine_id_value(&profile.dev_device_id);
Ok(())
}
/// Only sync serviceMachineId, don't change other fields
#[allow(dead_code)]
pub fn sync_service_machine_id(storage_path: &Path, service_id: &str) -> Result<(), String> {
let content =
fs::read_to_string(storage_path).map_err(|e| format!("read_failed: {}", e))?;
let mut json: Value =
serde_json::from_str(&content).map_err(|e| format!("parse_failed: {}", e))?;
if let Some(map) = json.as_object_mut() {
map.insert(
"storage.serviceMachineId".to_string(),
Value::String(service_id.to_string()),
);
}
let updated = serde_json::to_string_pretty(&json)
.map_err(|e| format!("serialize_failed: {}", e))?;
fs::write(storage_path, updated).map_err(|e| format!("write_failed: {}", e))?;
logger::log_info("service_machine_id_synced");
let _ = sync_state_service_machine_id_value(service_id);
Ok(())
}
/// Read serviceMachineId from storage.json (fallback to devDeviceId), sync back if missing and sync state.vscdb
#[allow(dead_code)]
pub fn sync_service_machine_id_from_storage(storage_path: &Path) -> Result<(), String> {
if !storage_path.exists() {
return Err("storage_json_missing".to_string());
}
let content = fs::read_to_string(storage_path).map_err(|e| format!("read_failed: {}", e))?;
let mut json: Value = serde_json::from_str(&content).map_err(|e| format!("parse_failed: {}", e))?;
let service_id = json
.get("storage.serviceMachineId")
.and_then(|v| v.as_str())
.map(|s| s.to_string())
.or_else(|| {
json.get("telemetry")
.and_then(|t| t.get("devDeviceId"))
.and_then(|v| v.as_str())
.map(|s| s.to_string())
})
.or_else(|| {
json.get("telemetry.devDeviceId")
.and_then(|v| v.as_str())
.map(|s| s.to_string())
})
.ok_or("missing_ids_in_storage")?;
let mut dirty = false;
if json
.get("storage.serviceMachineId")
.and_then(|v| v.as_str())
.is_none()
{
if let Some(map) = json.as_object_mut() {
map.insert("storage.serviceMachineId".to_string(), Value::String(service_id.clone()));
dirty = true;
}
}
if dirty {
let updated = serde_json::to_string_pretty(&json).map_err(|e| format!("serialize_failed: {}", e))?;
fs::write(storage_path, updated).map_err(|e| format!("write_failed: {}", e))?;
logger::log_info("service_machine_id_added");
}
sync_state_service_machine_id_value(&service_id)
}
fn sync_state_service_machine_id_value(service_id: &str) -> Result<(), String> {
let db_path = get_state_db_path()?;
if !db_path.exists() {
logger::log_warn(&format!(
"state_db_missing: {:?}",
db_path
));
return Ok(());
}
let conn = Connection::open(&db_path).map_err(|e| format!("db_open_failed: {}", e))?;
conn.execute(
"CREATE TABLE IF NOT EXISTS ItemTable (key TEXT PRIMARY KEY, value TEXT);",
[],
)
.map_err(|e| format!("failed_to_create_item_table: {}", e))?;
conn.execute(
"INSERT OR REPLACE INTO ItemTable (key, value) VALUES ('storage.serviceMachineId', ?1);",
[service_id],
)
.map_err(|e| format!("failed_to_write_to_db: {}", e))?;
logger::log_info("service_machine_id_synced_to_db");
Ok(())
}
/// Load/Save global original profile (shared across all accounts)
pub fn load_global_original() -> Option<DeviceProfile> {
if let Ok(dir) = get_data_dir() {
let path = dir.join(GLOBAL_BASELINE);
if path.exists() {
if let Ok(content) = fs::read_to_string(&path) {
if let Ok(profile) = serde_json::from_str::<DeviceProfile>(&content) {
return Some(profile);
}
}
}
}
None
}
pub fn save_global_original(profile: &DeviceProfile) -> Result<(), String> {
let dir = get_data_dir()?;
let path = dir.join(GLOBAL_BASELINE);
if path.exists() {
return Ok(()); // already exists, don't overwrite
}
let content =
serde_json::to_string_pretty(profile).map_err(|e| format!("serialize_failed: {}", e))?;
fs::write(&path, content).map_err(|e| format!("write_failed: {}", e))
}
/// List storage.json backups in current directory (descending by time)
#[allow(dead_code)]
pub fn list_backups(storage_path: &Path) -> Result<Vec<PathBuf>, String> {
let dir = storage_path
.parent()
.ok_or_else(|| "failed_to_get_storage_parent_dir".to_string())?;
let mut backups = Vec::new();
if let Ok(entries) = fs::read_dir(dir) {
for entry in entries.flatten() {
let path = entry.path();
if let Some(name) = path.file_name().and_then(|n| n.to_str()) {
if name.starts_with("storage.json.backup_") {
backups.push(path);
}
}
}
}
// Sort by modification time (new to old)
backups.sort_by(|a, b| {
let ma = fs::metadata(a).and_then(|m| m.modified()).ok();
let mb = fs::metadata(b).and_then(|m| m.modified()).ok();
mb.cmp(&ma)
});
Ok(backups)
}
/// Restore backup to storage.json. If use_oldest=true, use oldest backup, else use latest.
#[allow(dead_code)]
pub fn restore_backup(storage_path: &Path, use_oldest: bool) -> Result<PathBuf, String> {
let backups = list_backups(storage_path)?;
if backups.is_empty() {
return Err("no_backups_found".to_string());
}
let target = if use_oldest {
backups.last().unwrap().clone()
} else {
backups.first().unwrap().clone()
};
// backup current first
let _ = backup_storage(storage_path)?;
fs::copy(&target, storage_path).map_err(|e| format!("restore_failed: {}", e))?;
logger::log_info(&format!("storage_json_restored: {:?}", target));
Ok(target)
}
/// Generate a new set of device fingerprints (Cursor/VSCode style)
pub fn generate_profile() -> DeviceProfile {
DeviceProfile {
machine_id: format!("auth0|user_{}", random_hex(32)),
mac_machine_id: new_standard_machine_id(),
dev_device_id: Uuid::new_v4().to_string(),
sqm_id: format!("{{{}}}", Uuid::new_v4().to_string().to_uppercase()),
}
}
fn random_hex(length: usize) -> String {
rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(length)
.map(char::from)
.collect::<String>()
.to_lowercase()
}
fn new_standard_machine_id() -> String {
// xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx (y in 8..b)
let mut rng = rand::thread_rng();
let mut id = String::with_capacity(36);
for ch in "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".chars() {
if ch == '-' || ch == '4' {
id.push(ch);
} else if ch == 'x' {
id.push_str(&format!("{:x}", rng.gen_range(0..16)));
} else if ch == 'y' {
id.push_str(&format!("{:x}", rng.gen_range(8..12)));
}
}
id
}
|