mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 05:43:44 +08:00
127 lines
3.3 KiB
Rust
127 lines
3.3 KiB
Rust
use crate::core::handle;
|
|
use anyhow::Result;
|
|
use once_cell::sync::OnceCell;
|
|
use std::path::PathBuf;
|
|
use tauri::{
|
|
api::path::{data_dir, resource_dir},
|
|
Env,
|
|
};
|
|
|
|
#[cfg(not(feature = "verge-dev"))]
|
|
pub static APP_ID: &str = "io.github.clash-verge-rev.clash-verge-rev";
|
|
#[cfg(feature = "verge-dev")]
|
|
pub static APP_ID: &str = "io.github.clash-verge-rev.clash-verge-rev.dev";
|
|
|
|
pub static PORTABLE_FLAG: OnceCell<bool> = OnceCell::new();
|
|
|
|
static CLASH_CONFIG: &str = "config.yaml";
|
|
static VERGE_CONFIG: &str = "verge.yaml";
|
|
static PROFILE_YAML: &str = "profiles.yaml";
|
|
|
|
/// init portable flag
|
|
pub fn init_portable_flag() -> Result<()> {
|
|
use tauri::utils::platform::current_exe;
|
|
|
|
let app_exe = current_exe()?;
|
|
if let Some(dir) = app_exe.parent() {
|
|
let dir = PathBuf::from(dir).join(".config/PORTABLE");
|
|
|
|
if dir.exists() {
|
|
PORTABLE_FLAG.get_or_init(|| true);
|
|
}
|
|
}
|
|
PORTABLE_FLAG.get_or_init(|| false);
|
|
Ok(())
|
|
}
|
|
|
|
/// get the verge app home dir
|
|
pub fn app_home_dir() -> Result<PathBuf> {
|
|
use tauri::utils::platform::current_exe;
|
|
|
|
let flag = PORTABLE_FLAG.get().unwrap_or(&false);
|
|
if *flag {
|
|
let app_exe = current_exe()?;
|
|
let app_exe = dunce::canonicalize(app_exe)?;
|
|
let app_dir = app_exe
|
|
.parent()
|
|
.ok_or(anyhow::anyhow!("failed to get the portable app dir"))?;
|
|
return Ok(PathBuf::from(app_dir).join(".config").join(APP_ID));
|
|
}
|
|
|
|
Ok(data_dir()
|
|
.ok_or(anyhow::anyhow!("failed to get app home dir"))?
|
|
.join(APP_ID))
|
|
}
|
|
|
|
/// get the resources dir
|
|
pub fn app_resources_dir() -> Result<PathBuf> {
|
|
let handle = handle::Handle::global();
|
|
let app_handle = handle.app_handle.lock();
|
|
if let Some(app_handle) = app_handle.as_ref() {
|
|
let res_dir = resource_dir(app_handle.package_info(), &Env::default())
|
|
.ok_or(anyhow::anyhow!("failed to get the resource dir"))?
|
|
.join("resources");
|
|
return Ok(res_dir);
|
|
};
|
|
Err(anyhow::anyhow!("failed to get the resource dir"))
|
|
}
|
|
|
|
/// profiles dir
|
|
pub fn app_profiles_dir() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join("profiles"))
|
|
}
|
|
|
|
/// logs dir
|
|
pub fn app_logs_dir() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join("logs"))
|
|
}
|
|
|
|
pub fn clash_path() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join(CLASH_CONFIG))
|
|
}
|
|
|
|
pub fn verge_path() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join(VERGE_CONFIG))
|
|
}
|
|
|
|
pub fn profiles_path() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join(PROFILE_YAML))
|
|
}
|
|
|
|
pub fn clash_pid_path() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join("clash.pid"))
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
pub fn service_dir() -> Result<PathBuf> {
|
|
Ok(app_home_dir()?.join("service"))
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
pub fn service_path() -> Result<PathBuf> {
|
|
Ok(service_dir()?.join("clash-verge-service.exe"))
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
pub fn service_log_file() -> Result<PathBuf> {
|
|
use chrono::Local;
|
|
|
|
let log_dir = app_logs_dir()?.join("service");
|
|
|
|
let local_time = Local::now().format("%Y-%m-%d-%H%M").to_string();
|
|
let log_file = format!("{}.log", local_time);
|
|
let log_file = log_dir.join(log_file);
|
|
|
|
let _ = std::fs::create_dir_all(&log_dir);
|
|
|
|
Ok(log_file)
|
|
}
|
|
|
|
pub fn path_to_str(path: &PathBuf) -> Result<&str> {
|
|
let path_str = path
|
|
.as_os_str()
|
|
.to_str()
|
|
.ok_or(anyhow::anyhow!("failed to get path from {:?}", path))?;
|
|
Ok(path_str)
|
|
}
|