File size: 33,878 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 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 | use crate::models::{Account, AppConfig, QuotaData};
use crate::modules;
use tauri::{Emitter, Manager};
use tauri_plugin_opener::OpenerExt;
// 导出 proxy 命令
pub mod proxy;
// 导出 autostart 命令
pub mod autostart;
// 导出 cloudflared 命令
pub mod cloudflared;
// 导出 security 命令 (IP 监控)
pub mod security;
// 导出 proxy_pool 命令
pub mod proxy_pool;
// 导出 user_token 命令
pub mod user_token;
/// 列出所有账号
#[tauri::command]
pub async fn list_accounts() -> Result<Vec<Account>, String> {
modules::list_accounts()
}
/// 添加账号
#[tauri::command]
pub async fn add_account(
app: tauri::AppHandle,
_email: String,
refresh_token: String,
) -> Result<Account, String> {
let service = modules::account_service::AccountService::new(
crate::modules::integration::SystemManager::Desktop(app.clone()),
);
let mut account = service.add_account(&refresh_token).await?;
// 自动刷新配额
let _ = internal_refresh_account_quota(&app, &mut account).await;
// 重载账号池
let _ = crate::commands::proxy::reload_proxy_accounts(
app.state::<crate::commands::proxy::ProxyServiceState>(),
)
.await;
Ok(account)
}
/// 删除账号
/// 删除账号
#[tauri::command]
pub async fn delete_account(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
account_id: String,
) -> Result<(), String> {
let service = modules::account_service::AccountService::new(
crate::modules::integration::SystemManager::Desktop(app.clone()),
);
service.delete_account(&account_id)?;
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(())
}
/// 批量删除账号
#[tauri::command]
pub async fn delete_accounts(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
account_ids: Vec<String>,
) -> Result<(), String> {
modules::logger::log_info(&format!(
"收到批量删除请求,共 {} 个账号",
account_ids.len()
));
modules::account::delete_accounts(&account_ids).map_err(|e| {
modules::logger::log_error(&format!("批量删除失败: {}", e));
e
})?;
// 强制同步托盘
crate::modules::tray::update_tray_menus(&app);
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(())
}
/// 重新排序账号列表
/// 根据传入的账号ID数组顺序更新账号排列
#[tauri::command]
pub async fn reorder_accounts(
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
account_ids: Vec<String>,
) -> Result<(), String> {
modules::logger::log_info(&format!(
"收到账号重排序请求,共 {} 个账号",
account_ids.len()
));
modules::account::reorder_accounts(&account_ids).map_err(|e| {
modules::logger::log_error(&format!("账号重排序失败: {}", e));
e
})?;
// Reload pool to reflect new order if running
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(())
}
/// 切换账号
#[tauri::command]
pub async fn switch_account(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
account_id: String,
) -> Result<(), String> {
let service = modules::account_service::AccountService::new(
crate::modules::integration::SystemManager::Desktop(app.clone()),
);
service.switch_account(&account_id).await?;
// 同步托盘
crate::modules::tray::update_tray_menus(&app);
// [FIX #820] Notify proxy to clear stale session bindings and reload accounts
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(())
}
/// 获取当前账号
#[tauri::command]
pub async fn get_current_account() -> Result<Option<Account>, String> {
// println!("🚀 Backend Command: get_current_account called"); // Commented out to reduce noise for frequent calls, relies on frontend log for frequency
// Actually user WANTS to see it.
modules::logger::log_info("Backend Command: get_current_account called");
let account_id = modules::get_current_account_id()?;
if let Some(id) = account_id {
// modules::logger::log_info(&format!(" Found current account ID: {}", id));
modules::load_account(&id).map(Some)
} else {
modules::logger::log_info(" No current account set");
Ok(None)
}
}
/// 导出账号(包含 refresh_token)
use crate::models::AccountExportResponse;
#[tauri::command]
pub async fn export_accounts(account_ids: Vec<String>) -> Result<AccountExportResponse, String> {
modules::account::export_accounts_by_ids(&account_ids)
}
/// 内部辅助功能:在添加或导入账号后自动刷新一次额度
async fn internal_refresh_account_quota(
app: &tauri::AppHandle,
account: &mut Account,
) -> Result<QuotaData, String> {
modules::logger::log_info(&format!("自动触发刷新配额: {}", account.email));
// 使用带重试的查询 (Shared logic)
match modules::account::fetch_quota_with_retry(account).await {
Ok(quota) => {
// 更新账号配额
let _ = modules::update_account_quota(&account.id, quota.clone());
// 更新托盘菜单
crate::modules::tray::update_tray_menus(app);
Ok(quota)
}
Err(e) => {
modules::logger::log_warn(&format!("自动刷新配额失败 ({}): {}", account.email, e));
Err(e.to_string())
}
}
}
/// 查询账号配额
#[tauri::command]
pub async fn fetch_account_quota(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
account_id: String,
) -> crate::error::AppResult<QuotaData> {
modules::logger::log_info(&format!("手动刷新配额请求: {}", account_id));
let mut account =
modules::load_account(&account_id).map_err(crate::error::AppError::Account)?;
// 使用带重试的查询 (Shared logic)
let quota = modules::account::fetch_quota_with_retry(&mut account).await?;
// 4. 更新账号配额
modules::update_account_quota(&account_id, quota.clone())
.map_err(crate::error::AppError::Account)?;
crate::modules::tray::update_tray_menus(&app);
// 5. 同步到运行中的反代服务(如果已启动)
let instance_lock = proxy_state.instance.read().await;
if let Some(instance) = instance_lock.as_ref() {
let _ = instance.token_manager.reload_account(&account_id).await;
}
Ok(quota)
}
pub use modules::account::RefreshStats;
/// 刷新所有账号配额 (内部实现)
pub async fn refresh_all_quotas_internal(
proxy_state: &crate::commands::proxy::ProxyServiceState,
app_handle: Option<tauri::AppHandle>,
) -> Result<RefreshStats, String> {
let stats = modules::account::refresh_all_quotas_logic().await?;
// 同步到运行中的反代服务(如果已启动)
let instance_lock = proxy_state.instance.read().await;
if let Some(instance) = instance_lock.as_ref() {
let _ = instance.token_manager.reload_all_accounts().await;
}
// 发送全局刷新事件给 UI (如果需要)
if let Some(handle) = app_handle {
use tauri::Emitter;
let _ = handle.emit("accounts://refreshed", ());
}
Ok(stats)
}
/// 刷新所有账号配额 (Tauri Command)
#[tauri::command]
pub async fn refresh_all_quotas(
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
app_handle: tauri::AppHandle,
) -> Result<RefreshStats, String> {
refresh_all_quotas_internal(&proxy_state, Some(app_handle)).await
}
/// 获取设备指纹(当前 storage.json + 账号绑定)
#[tauri::command]
pub async fn get_device_profiles(
account_id: String,
) -> Result<modules::account::DeviceProfiles, String> {
modules::get_device_profiles(&account_id)
}
/// 绑定设备指纹(capture: 采集当前;generate: 生成新指纹),并写入 storage.json
#[tauri::command]
pub async fn bind_device_profile(
account_id: String,
mode: String,
) -> Result<crate::models::DeviceProfile, String> {
modules::bind_device_profile(&account_id, &mode)
}
/// 预览生成一个指纹(不落盘)
#[tauri::command]
pub async fn preview_generate_profile() -> Result<crate::models::DeviceProfile, String> {
Ok(crate::modules::device::generate_profile())
}
/// 使用给定指纹直接绑定
#[tauri::command]
pub async fn bind_device_profile_with_profile(
account_id: String,
profile: crate::models::DeviceProfile,
) -> Result<crate::models::DeviceProfile, String> {
modules::bind_device_profile_with_profile(&account_id, profile, Some("generated".to_string()))
}
/// 将账号已绑定的指纹应用到 storage.json
#[tauri::command]
pub async fn apply_device_profile(
account_id: String,
) -> Result<crate::models::DeviceProfile, String> {
modules::apply_device_profile(&account_id)
}
/// 恢复最早的 storage.json 备份(近似“原始”状态)
#[tauri::command]
pub async fn restore_original_device() -> Result<String, String> {
modules::restore_original_device()
}
/// 列出指纹版本
#[tauri::command]
pub async fn list_device_versions(
account_id: String,
) -> Result<modules::account::DeviceProfiles, String> {
modules::list_device_versions(&account_id)
}
/// 按版本恢复指纹
#[tauri::command]
pub async fn restore_device_version(
account_id: String,
version_id: String,
) -> Result<crate::models::DeviceProfile, String> {
modules::restore_device_version(&account_id, &version_id)
}
/// 删除历史指纹(baseline 不可删)
#[tauri::command]
pub async fn delete_device_version(account_id: String, version_id: String) -> Result<(), String> {
modules::delete_device_version(&account_id, &version_id)
}
/// 打开设备存储目录
#[tauri::command]
pub async fn open_device_folder(app: tauri::AppHandle) -> Result<(), String> {
let dir = modules::device::get_storage_dir()?;
let dir_str = dir
.to_str()
.ok_or("无法解析存储目录路径为字符串")?
.to_string();
app.opener()
.open_path(dir_str, None::<&str>)
.map_err(|e| format!("打开目录失败: {}", e))
}
/// 加载配置
#[tauri::command]
pub async fn load_config() -> Result<AppConfig, String> {
modules::load_app_config()
}
/// 保存配置
#[tauri::command]
pub async fn save_config(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
config: AppConfig,
) -> Result<(), String> {
modules::save_app_config(&config)?;
// 通知托盘配置已更新
let _ = app.emit("config://updated", ());
// 热更新正在运行的服务
let instance_lock = proxy_state.instance.read().await;
if let Some(instance) = instance_lock.as_ref() {
// 更新模型映射
instance.axum_server.update_mapping(&config.proxy).await;
// 更新上游代理
instance
.axum_server
.update_proxy(config.proxy.upstream_proxy.clone())
.await;
// 更新安全策略 (auth)
instance.axum_server.update_security(&config.proxy).await;
// 更新 z.ai 配置
instance.axum_server.update_zai(&config.proxy).await;
// 更新实验性配置
instance
.axum_server
.update_experimental(&config.proxy)
.await;
// 更新调试日志配置
instance
.axum_server
.update_debug_logging(&config.proxy)
.await;
// [NEW] 更新 User-Agent 配置
instance.axum_server.update_user_agent(&config.proxy).await;
// 更新 Thinking Budget 配置
crate::proxy::update_thinking_budget_config(config.proxy.thinking_budget.clone());
// [NEW] 更新全局系统提示词配置
crate::proxy::update_global_system_prompt_config(config.proxy.global_system_prompt.clone());
// [NEW] 更新全局图像思维模式配置
crate::proxy::update_image_thinking_mode(config.proxy.image_thinking_mode.clone());
// 更新代理池配置
instance
.axum_server
.update_proxy_pool(config.proxy.proxy_pool.clone())
.await;
// 更新熔断配置
instance
.token_manager
.update_circuit_breaker_config(config.circuit_breaker.clone())
.await;
tracing::debug!("已同步热更新反代服务配置");
}
Ok(())
}
// --- OAuth 命令 ---
#[tauri::command]
pub async fn start_oauth_login(app_handle: tauri::AppHandle, oauth_client_key: Option<String>) -> Result<Account, String> {
modules::logger::log_info("开始 OAuth 授权流程...");
let service = modules::account_service::AccountService::new(
crate::modules::integration::SystemManager::Desktop(app_handle.clone()),
);
let mut account = service.start_oauth_login(oauth_client_key).await?;
// 自动触发刷新额度
let _ = internal_refresh_account_quota(&app_handle, &mut account).await;
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(
app_handle.state::<crate::commands::proxy::ProxyServiceState>(),
)
.await;
Ok(account)
}
/// 完成 OAuth 授权(不自动打开浏览器)
#[tauri::command]
pub async fn complete_oauth_login(app_handle: tauri::AppHandle) -> Result<Account, String> {
modules::logger::log_info("完成 OAuth 授权流程 (manual)...");
let service = modules::account_service::AccountService::new(
crate::modules::integration::SystemManager::Desktop(app_handle.clone()),
);
let mut account = service.complete_oauth_login().await?;
// 自动触发刷新额度
let _ = internal_refresh_account_quota(&app_handle, &mut account).await;
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(
app_handle.state::<crate::commands::proxy::ProxyServiceState>(),
)
.await;
Ok(account)
}
/// 预生成 OAuth 授权链接 (不打开浏览器)
#[tauri::command]
pub async fn prepare_oauth_url(app_handle: tauri::AppHandle, oauth_client_key: Option<String>) -> Result<String, String> {
let service = modules::account_service::AccountService::new(
crate::modules::integration::SystemManager::Desktop(app_handle.clone()),
);
service.prepare_oauth_url(oauth_client_key).await
}
#[tauri::command]
pub async fn cancel_oauth_login() -> Result<(), String> {
modules::oauth_server::cancel_oauth_flow();
Ok(())
}
/// 手动提交 OAuth Code (用于 Docker/远程环境无法自动回调时)
#[tauri::command]
pub async fn submit_oauth_code(code: String, state: Option<String>) -> Result<(), String> {
modules::logger::log_info("收到手动提交 OAuth Code 请求");
modules::oauth_server::submit_oauth_code(code, state).await
}
#[tauri::command]
pub async fn list_oauth_clients() -> Result<Vec<crate::modules::oauth::OAuthClientDescriptor>, String> {
crate::modules::oauth::list_oauth_clients()
}
#[tauri::command]
pub async fn get_active_oauth_client() -> Result<String, String> {
crate::modules::oauth::get_active_oauth_client_key()
}
#[tauri::command]
pub async fn set_active_oauth_client(client_key: String) -> Result<(), String> {
crate::modules::oauth::set_active_oauth_client_key(&client_key)
}
// --- 导入命令 ---
#[tauri::command]
pub async fn import_v1_accounts(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
) -> Result<Vec<Account>, String> {
let accounts = modules::migration::import_from_v1().await?;
// 对导入的账号尝试刷新一波
for mut account in accounts.clone() {
let _ = internal_refresh_account_quota(&app, &mut account).await;
}
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(accounts)
}
#[tauri::command]
pub async fn import_from_db(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
) -> Result<Account, String> {
// 同步函数包装为 async
let mut account = modules::migration::import_from_db().await?;
// 既然是从数据库导入(即 IDE 当前账号),自动将其设为 Manager 的当前账号
let account_id = account.id.clone();
modules::account::set_current_account_id(&account_id)?;
// 自动触发刷新额度
let _ = internal_refresh_account_quota(&app, &mut account).await;
// 刷新托盘图标展示
crate::modules::tray::update_tray_menus(&app);
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(account)
}
#[tauri::command]
#[allow(dead_code)]
pub async fn import_custom_db(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
path: String,
) -> Result<Account, String> {
// 调用重构后的自定义导入函数
let mut account = modules::migration::import_from_custom_db_path(path).await?;
// 自动设为当前账号
let account_id = account.id.clone();
modules::account::set_current_account_id(&account_id)?;
// 自动触发刷新额度
let _ = internal_refresh_account_quota(&app, &mut account).await;
// 刷新托盘图标展示
crate::modules::tray::update_tray_menus(&app);
// Reload token pool
let _ = crate::commands::proxy::reload_proxy_accounts(proxy_state).await;
Ok(account)
}
#[tauri::command]
pub async fn sync_account_from_db(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
) -> Result<Option<Account>, String> {
// 1. 获取 DB 中的 Refresh Token
let db_refresh_token = match modules::migration::get_refresh_token_from_db() {
Ok(token) => token,
Err(e) => {
modules::logger::log_info(&format!("自动同步跳过: {}", e));
return Ok(None);
}
};
// 2. 获取 Manager 当前账号
let curr_account = modules::account::get_current_account()?;
// 3. 对比:如果 Refresh Token 相同,说明账号没变,无需导入
if let Some(acc) = curr_account {
if acc.token.refresh_token == db_refresh_token {
// 账号未变,由于已经是周期性任务,我们可以选择性刷新一下配额,或者直接返回
// 这里为了节省 API 流量,直接返回
return Ok(None);
}
modules::logger::log_info(&format!(
"检测到账号切换 ({} -> DB新账号),正在同步...",
acc.email
));
} else {
modules::logger::log_info("检测到新登录账号,正在自动同步...");
}
// 4. 执行完整导入
let account = import_from_db(app, proxy_state).await?;
Ok(Some(account))
}
fn validate_path(path: &str) -> Result<(), String> {
if path.contains("..") {
return Err("非法路径: 不允许目录遍历".to_string());
}
// 检查是否指向系统敏感路径 (基础黑名单)
let lower_path = path.to_lowercase();
let sensitive_prefixes = [
"/etc/",
"/var/spool/cron",
"/root/",
"/proc/",
"/sys/",
"/dev/",
"c:\\windows",
"c:\\users\\administrator",
"c:\\pagefile.sys",
];
for prefix in sensitive_prefixes {
if lower_path.starts_with(prefix) {
return Err(format!("安全拒绝: 禁止访问系统敏感路径 ({})", prefix));
}
}
Ok(())
}
/// 保存文本文件 (绕过前端 Scope 限制)
#[tauri::command]
pub async fn save_text_file(path: String, content: String) -> Result<(), String> {
validate_path(&path)?;
std::fs::write(&path, content).map_err(|e| format!("写入文件失败: {}", e))
}
/// 读取文本文件 (绕过前端 Scope 限制)
#[tauri::command]
pub async fn read_text_file(path: String) -> Result<String, String> {
validate_path(&path)?;
std::fs::read_to_string(&path).map_err(|e| format!("读取文件失败: {}", e))
}
/// 清理日志缓存
#[tauri::command]
pub async fn clear_log_cache() -> Result<(), String> {
modules::logger::clear_logs()
}
/// 清理 Antigravity 应用缓存
/// 用于解决登录失败、版本验证错误等问题
#[tauri::command]
pub async fn clear_antigravity_cache() -> Result<modules::cache::ClearResult, String> {
modules::cache::clear_antigravity_cache(None)
}
/// 获取 Antigravity 缓存路径列表(用于预览)
#[tauri::command]
pub async fn get_antigravity_cache_paths() -> Result<Vec<String>, String> {
Ok(modules::cache::get_existing_cache_paths()
.into_iter()
.map(|p| p.to_string_lossy().to_string())
.collect())
}
/// 打开数据目录
#[tauri::command]
pub async fn open_data_folder() -> Result<(), String> {
let path = modules::account::get_data_dir()?;
#[cfg(target_os = "macos")]
{
std::process::Command::new("open")
.arg(path)
.spawn()
.map_err(|e| format!("打开文件夹失败: {}", e))?;
}
#[cfg(target_os = "windows")]
{
use crate::utils::command::CommandExtWrapper;
std::process::Command::new("explorer")
.creation_flags_windows()
.arg(path)
.spawn()
.map_err(|e| format!("打开文件夹失败: {}", e))?;
}
#[cfg(target_os = "linux")]
{
std::process::Command::new("xdg-open")
.arg(path)
.spawn()
.map_err(|e| format!("打开文件夹失败: {}", e))?;
}
Ok(())
}
/// 获取数据目录绝对路径
#[tauri::command]
pub async fn get_data_dir_path() -> Result<String, String> {
let path = modules::account::get_data_dir()?;
Ok(path.to_string_lossy().to_string())
}
/// 显示主窗口
#[tauri::command]
pub async fn show_main_window(window: tauri::Window) -> Result<(), String> {
window.show().map_err(|e| e.to_string())
}
/// 设置窗口主题(用于同步 Windows 标题栏按钮颜色)
#[tauri::command]
pub async fn set_window_theme(window: tauri::Window, theme: String) -> Result<(), String> {
use tauri::Theme;
let tauri_theme = match theme.as_str() {
"dark" => Some(Theme::Dark),
"light" => Some(Theme::Light),
_ => None, // system default
};
window.set_theme(tauri_theme).map_err(|e| e.to_string())
}
/// 获取 Antigravity 可执行文件路径
#[tauri::command]
pub async fn get_antigravity_path(bypass_config: Option<bool>) -> Result<String, String> {
// 1. 优先从配置查询 (除非明确要求绕过)
if bypass_config != Some(true) {
if let Ok(config) = crate::modules::config::load_app_config() {
if let Some(path) = config.antigravity_executable {
if std::path::Path::new(&path).exists() {
return Ok(path);
}
}
}
}
// 2. 执行实时探测
match crate::modules::process::get_antigravity_executable_path() {
Some(path) => Ok(path.to_string_lossy().to_string()),
None => Err("未找到 Antigravity 安装路径".to_string()),
}
}
/// 获取 Antigravity 启动参数
#[tauri::command]
pub async fn get_antigravity_args() -> Result<Vec<String>, String> {
match crate::modules::process::get_args_from_running_process() {
Some(args) => Ok(args),
None => Err("未找到正在运行的 Antigravity 进程".to_string()),
}
}
/// 检测更新响应结构
pub use crate::modules::update_checker::UpdateInfo;
/// 检测 GitHub releases 更新
#[tauri::command]
pub async fn check_for_updates() -> Result<UpdateInfo, String> {
modules::logger::log_info("收到前端触发的更新检查请求");
crate::modules::update_checker::check_for_updates().await
}
#[tauri::command]
pub async fn should_check_updates() -> Result<bool, String> {
let settings = crate::modules::update_checker::load_update_settings()?;
Ok(crate::modules::update_checker::should_check_for_updates(
&settings,
))
}
#[tauri::command]
pub async fn update_last_check_time() -> Result<(), String> {
crate::modules::update_checker::update_last_check_time()
}
/// 检测是否通过 Homebrew Cask 安装
#[tauri::command]
pub async fn check_homebrew_installation() -> Result<bool, String> {
Ok(crate::modules::update_checker::is_homebrew_installed())
}
/// 通过 Homebrew Cask 升级应用
#[tauri::command]
pub async fn brew_upgrade_cask() -> Result<String, String> {
modules::logger::log_info("收到前端触发的 Homebrew 升级请求");
crate::modules::update_checker::brew_upgrade_cask().await
}
/// 获取更新设置
#[tauri::command]
pub async fn get_update_settings() -> Result<crate::modules::update_checker::UpdateSettings, String>
{
crate::modules::update_checker::load_update_settings()
}
/// 保存更新设置
#[tauri::command]
pub async fn save_update_settings(
settings: crate::modules::update_checker::UpdateSettings,
) -> Result<(), String> {
crate::modules::update_checker::save_update_settings(&settings)
}
/// 切换账号的反代禁用状态
#[tauri::command]
pub async fn toggle_proxy_status(
app: tauri::AppHandle,
proxy_state: tauri::State<'_, crate::commands::proxy::ProxyServiceState>,
account_id: String,
enable: bool,
reason: Option<String>,
) -> Result<(), String> {
modules::logger::log_info(&format!(
"切换账号反代状态: {} -> {}",
account_id,
if enable { "启用" } else { "禁用" }
));
// 1. 读取账号文件
let data_dir = modules::account::get_data_dir()?;
let account_path = data_dir
.join("accounts")
.join(format!("{}.json", account_id));
if !account_path.exists() {
return Err(format!("账号文件不存在: {}", account_id));
}
let content =
std::fs::read_to_string(&account_path).map_err(|e| format!("读取账号文件失败: {}", e))?;
let mut account_json: serde_json::Value =
serde_json::from_str(&content).map_err(|e| format!("解析账号文件失败: {}", e))?;
// 2. 更新 proxy_disabled 字段
if enable {
// 启用反代
account_json["proxy_disabled"] = serde_json::Value::Bool(false);
account_json["proxy_disabled_reason"] = serde_json::Value::Null;
account_json["proxy_disabled_at"] = serde_json::Value::Null;
} else {
// 禁用反代
let now = chrono::Utc::now().timestamp();
account_json["proxy_disabled"] = serde_json::Value::Bool(true);
account_json["proxy_disabled_at"] = serde_json::Value::Number(now.into());
account_json["proxy_disabled_reason"] =
serde_json::Value::String(reason.unwrap_or_else(|| "用户手动禁用".to_string()));
}
// 3. 保存到磁盘
let json_str = serde_json::to_string_pretty(&account_json)
.map_err(|e| format!("序列化账号数据失败: {}", e))?;
std::fs::write(&account_path, json_str).map_err(|e| format!("写入账号文件失败: {}", e))?;
modules::logger::log_info(&format!(
"账号反代状态已更新: {} ({})",
account_id,
if enable { "已启用" } else { "已禁用" }
));
// 4. 如果反代服务正在运行,立刻同步到内存池(避免禁用后仍被选中)
{
let instance_lock = proxy_state.instance.read().await;
if let Some(instance) = instance_lock.as_ref() {
// 如果禁用的是当前固定账号,则自动关闭固定模式(内存 + 配置持久化)
if !enable {
let pref_id = instance.token_manager.get_preferred_account().await;
if pref_id.as_deref() == Some(&account_id) {
instance.token_manager.set_preferred_account(None).await;
if let Ok(mut cfg) = crate::modules::config::load_app_config() {
if cfg.proxy.preferred_account_id.as_deref() == Some(&account_id) {
cfg.proxy.preferred_account_id = None;
let _ = crate::modules::config::save_app_config(&cfg);
}
}
}
}
instance
.token_manager
.reload_account(&account_id)
.await
.map_err(|e| format!("同步账号失败: {}", e))?;
}
}
// 5. 更新托盘菜单
crate::modules::tray::update_tray_menus(&app);
Ok(())
}
/// 预热所有可用账号
#[tauri::command]
pub async fn warm_up_all_accounts() -> Result<String, String> {
modules::quota::warm_up_all_accounts().await
}
/// 预热指定账号
#[tauri::command]
pub async fn warm_up_account(account_id: String) -> Result<String, String> {
modules::quota::warm_up_account(&account_id).await
}
/// 更新账号自定义标签
#[tauri::command]
pub async fn update_account_label(account_id: String, label: String) -> Result<(), String> {
// 验证标签长度(按字符数计算,支持中文)
if label.chars().count() > 15 {
return Err("标签长度不能超过15个字符".to_string());
}
modules::logger::log_info(&format!(
"更新账号标签: {} -> {:?}",
account_id,
if label.is_empty() { "无" } else { &label }
));
// 1. 读取账号文件
let data_dir = modules::account::get_data_dir()?;
let account_path = data_dir
.join("accounts")
.join(format!("{}.json", account_id));
if !account_path.exists() {
return Err(format!("账号文件不存在: {}", account_id));
}
let content =
std::fs::read_to_string(&account_path).map_err(|e| format!("读取账号文件失败: {}", e))?;
let mut account_json: serde_json::Value =
serde_json::from_str(&content).map_err(|e| format!("解析账号文件失败: {}", e))?;
// 2. 更新 custom_label 字段
if label.is_empty() {
account_json["custom_label"] = serde_json::Value::Null;
} else {
account_json["custom_label"] = serde_json::Value::String(label.clone());
}
// 3. 保存到磁盘
let json_str = serde_json::to_string_pretty(&account_json)
.map_err(|e| format!("序列化账号数据失败: {}", e))?;
std::fs::write(&account_path, json_str).map_err(|e| format!("写入账号文件失败: {}", e))?;
modules::logger::log_info(&format!(
"账号标签已更新: {} ({})",
account_id,
if label.is_empty() {
"已清除".to_string()
} else {
label
}
));
Ok(())
}
// ============================================================================
// HTTP API 设置命令
// ============================================================================
/// 获取 HTTP API 设置
#[tauri::command]
pub async fn get_http_api_settings() -> Result<crate::modules::http_api::HttpApiSettings, String> {
crate::modules::http_api::load_settings()
}
/// 保存 HTTP API 设置
#[tauri::command]
pub async fn save_http_api_settings(
settings: crate::modules::http_api::HttpApiSettings,
) -> Result<(), String> {
crate::modules::http_api::save_settings(&settings)
}
// ============================================================================
// Token Statistics Commands
// ============================================================================
pub use crate::modules::token_stats::{AccountTokenStats, TokenStatsAggregated, TokenStatsSummary};
#[tauri::command]
pub async fn get_token_stats_hourly(hours: i64) -> Result<Vec<TokenStatsAggregated>, String> {
crate::modules::token_stats::get_hourly_stats(hours)
}
#[tauri::command]
pub async fn get_token_stats_daily(days: i64) -> Result<Vec<TokenStatsAggregated>, String> {
crate::modules::token_stats::get_daily_stats(days)
}
#[tauri::command]
pub async fn get_token_stats_weekly(weeks: i64) -> Result<Vec<TokenStatsAggregated>, String> {
crate::modules::token_stats::get_weekly_stats(weeks)
}
#[tauri::command]
pub async fn get_token_stats_by_account(hours: i64) -> Result<Vec<AccountTokenStats>, String> {
crate::modules::token_stats::get_account_stats(hours)
}
#[tauri::command]
pub async fn get_token_stats_summary(hours: i64) -> Result<TokenStatsSummary, String> {
crate::modules::token_stats::get_summary_stats(hours)
}
#[tauri::command]
pub async fn get_token_stats_by_model(
hours: i64,
) -> Result<Vec<crate::modules::token_stats::ModelTokenStats>, String> {
crate::modules::token_stats::get_model_stats(hours)
}
#[tauri::command]
pub async fn get_token_stats_model_trend_hourly(
hours: i64,
) -> Result<Vec<crate::modules::token_stats::ModelTrendPoint>, String> {
crate::modules::token_stats::get_model_trend_hourly(hours)
}
#[tauri::command]
pub async fn get_token_stats_model_trend_daily(
days: i64,
) -> Result<Vec<crate::modules::token_stats::ModelTrendPoint>, String> {
crate::modules::token_stats::get_model_trend_daily(days)
}
#[tauri::command]
pub async fn get_token_stats_account_trend_hourly(
hours: i64,
) -> Result<Vec<crate::modules::token_stats::AccountTrendPoint>, String> {
crate::modules::token_stats::get_account_trend_hourly(hours)
}
#[tauri::command]
pub async fn get_token_stats_account_trend_daily(
days: i64,
) -> Result<Vec<crate::modules::token_stats::AccountTrendPoint>, String> {
crate::modules::token_stats::get_account_trend_daily(days)
}
|