mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-25 13:45:03 +08:00
6098fa7536
* feat: WebDAV backup/restore - Add WebDAV test/backup/restore commands and settings\n- Fix ja i18n missing keys; decode PROPFIND href as UTF-8\n- Stabilize Windows prompt auto-import tests via CC_SWITCH_TEST_HOME * chore: format and minor cleanups * fix: update build config * feat(webdav): unify sync UX and hardening fixes * fix(webdav): harden sync flow and stabilize sync UX/tests * fix(webdav): add resource limits to skills.zip extraction Prevent zip bomb / resource exhaustion by enforcing: - MAX_EXTRACT_ENTRIES (10,000 files) - MAX_EXTRACT_BYTES (512 MB cumulative) * refactor(webdav): drop deviceId and display deviceName only --------- Co-authored-by: small-lovely-cat <77799160+small-lovely-cat@users.noreply.github.com> Co-authored-by: saladday <1203511142@qq.com>
121 lines
3.7 KiB
Rust
121 lines
3.7 KiB
Rust
#![allow(non_snake_case)]
|
|
|
|
use serde_json::{json, Value};
|
|
use std::path::PathBuf;
|
|
use tauri::State;
|
|
use tauri_plugin_dialog::DialogExt;
|
|
|
|
use crate::commands::sync_support::{
|
|
post_sync_warning_from_result, run_post_import_sync, success_payload_with_warning,
|
|
};
|
|
use crate::error::AppError;
|
|
use crate::services::provider::ProviderService;
|
|
use crate::store::AppState;
|
|
|
|
// ─── File import/export ──────────────────────────────────────
|
|
|
|
/// 导出数据库为 SQL 备份
|
|
#[tauri::command]
|
|
pub async fn export_config_to_file(
|
|
#[allow(non_snake_case)] filePath: String,
|
|
state: State<'_, AppState>,
|
|
) -> Result<Value, String> {
|
|
let db = state.db.clone();
|
|
tauri::async_runtime::spawn_blocking(move || {
|
|
let target_path = PathBuf::from(&filePath);
|
|
db.export_sql(&target_path)?;
|
|
Ok::<_, AppError>(json!({
|
|
"success": true,
|
|
"message": "SQL exported successfully",
|
|
"filePath": filePath
|
|
}))
|
|
})
|
|
.await
|
|
.map_err(|e| format!("导出配置失败: {e}"))?
|
|
.map_err(|e: AppError| e.to_string())
|
|
}
|
|
|
|
/// 从 SQL 备份导入数据库
|
|
#[tauri::command]
|
|
pub async fn import_config_from_file(
|
|
#[allow(non_snake_case)] filePath: String,
|
|
state: State<'_, AppState>,
|
|
) -> Result<Value, String> {
|
|
let db = state.db.clone();
|
|
let db_for_sync = db.clone();
|
|
tauri::async_runtime::spawn_blocking(move || {
|
|
let path_buf = PathBuf::from(&filePath);
|
|
let backup_id = db.import_sql(&path_buf)?;
|
|
let warning = post_sync_warning_from_result(Ok(run_post_import_sync(db_for_sync)));
|
|
if let Some(msg) = warning.as_ref() {
|
|
log::warn!("[Import] post-import sync warning: {msg}");
|
|
}
|
|
Ok::<_, AppError>(success_payload_with_warning(backup_id, warning))
|
|
})
|
|
.await
|
|
.map_err(|e| format!("导入配置失败: {e}"))?
|
|
.map_err(|e: AppError| e.to_string())
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn sync_current_providers_live(state: State<'_, AppState>) -> Result<Value, String> {
|
|
let db = state.db.clone();
|
|
tauri::async_runtime::spawn_blocking(move || {
|
|
let app_state = AppState::new(db);
|
|
ProviderService::sync_current_to_live(&app_state)?;
|
|
Ok::<_, AppError>(json!({
|
|
"success": true,
|
|
"message": "Live configuration synchronized"
|
|
}))
|
|
})
|
|
.await
|
|
.map_err(|e| format!("同步当前供应商失败: {e}"))?
|
|
.map_err(|e: AppError| e.to_string())
|
|
}
|
|
|
|
// ─── File dialogs ────────────────────────────────────────────
|
|
|
|
/// 保存文件对话框
|
|
#[tauri::command]
|
|
pub async fn save_file_dialog<R: tauri::Runtime>(
|
|
app: tauri::AppHandle<R>,
|
|
#[allow(non_snake_case)] defaultName: String,
|
|
) -> Result<Option<String>, String> {
|
|
let dialog = app.dialog();
|
|
let result = dialog
|
|
.file()
|
|
.add_filter("SQL", &["sql"])
|
|
.set_file_name(&defaultName)
|
|
.blocking_save_file();
|
|
|
|
Ok(result.map(|p| p.to_string()))
|
|
}
|
|
|
|
/// 打开文件对话框
|
|
#[tauri::command]
|
|
pub async fn open_file_dialog<R: tauri::Runtime>(
|
|
app: tauri::AppHandle<R>,
|
|
) -> Result<Option<String>, String> {
|
|
let dialog = app.dialog();
|
|
let result = dialog
|
|
.file()
|
|
.add_filter("SQL", &["sql"])
|
|
.blocking_pick_file();
|
|
|
|
Ok(result.map(|p| p.to_string()))
|
|
}
|
|
|
|
/// 打开 ZIP 文件选择对话框
|
|
#[tauri::command]
|
|
pub async fn open_zip_file_dialog<R: tauri::Runtime>(
|
|
app: tauri::AppHandle<R>,
|
|
) -> Result<Option<String>, String> {
|
|
let dialog = app.dialog();
|
|
let result = dialog
|
|
.file()
|
|
.add_filter("ZIP", &["zip"])
|
|
.blocking_pick_file();
|
|
|
|
Ok(result.map(|p| p.to_string()))
|
|
}
|