clash-verge/src-tauri/src/cmds.rs

308 lines
8.3 KiB
Rust
Raw Normal View History

2022-01-07 18:29:20 +03:00
use crate::{
core::{ClashInfo, ProfileItem, Profiles, VergeConfig},
2022-01-07 18:29:20 +03:00
states::{ClashState, ProfilesState, VergeState},
2022-01-20 21:31:44 +03:00
utils::{dirs::app_home_dir, fetch::fetch_profile, sysopt::SysProxyConfig},
2022-01-07 18:29:20 +03:00
};
use serde_yaml::Mapping;
2022-01-16 21:16:17 +03:00
use std::process::Command;
2022-02-16 21:10:25 +03:00
use tauri::{api, State};
2022-01-07 18:29:20 +03:00
/// get all profiles from `profiles.yaml`
/// do not acquire the lock of ProfileLock
#[tauri::command]
pub fn get_profiles(profiles_state: State<'_, ProfilesState>) -> Result<Profiles, String> {
match profiles_state.0.lock() {
2022-01-07 18:29:20 +03:00
Ok(profiles) => Ok(profiles.clone()),
Err(_) => Err("failed to get profiles lock".into()),
}
}
/// synchronize data irregularly
#[tauri::command]
pub fn sync_profiles(profiles_state: State<'_, ProfilesState>) -> Result<(), String> {
match profiles_state.0.lock() {
2022-01-07 18:29:20 +03:00
Ok(mut profiles) => profiles.sync_file(),
Err(_) => Err("failed to get profiles lock".into()),
}
}
2022-01-16 17:57:42 +03:00
/// import the profile from url
2022-01-07 18:29:20 +03:00
/// and save to `profiles.yaml`
#[tauri::command]
2022-01-16 17:57:42 +03:00
pub async fn import_profile(
url: String,
with_proxy: bool,
profiles_state: State<'_, ProfilesState>,
2022-01-16 17:57:42 +03:00
) -> Result<(), String> {
2022-02-18 19:09:36 +03:00
let result = fetch_profile(&url, with_proxy).await?;
let mut profiles = profiles_state.0.lock().unwrap();
profiles.import_from_url(url, result)
2022-01-07 18:29:20 +03:00
}
2022-02-07 12:26:05 +03:00
/// new a profile
/// append a temp profile item file to the `profiles` dir
/// view the temp profile file by using vscode or other editor
#[tauri::command]
pub async fn new_profile(
name: String,
desc: String,
profiles_state: State<'_, ProfilesState>,
) -> Result<(), String> {
let mut profiles = profiles_state.0.lock().unwrap();
2022-02-14 19:21:34 +03:00
profiles.append_item(name, desc)?;
Ok(())
2022-02-07 12:26:05 +03:00
}
2022-01-07 18:29:20 +03:00
/// Update the profile
#[tauri::command]
pub async fn update_profile(
index: usize,
2022-01-16 17:57:42 +03:00
with_proxy: bool,
clash_state: State<'_, ClashState>,
profiles_state: State<'_, ProfilesState>,
2022-01-07 18:29:20 +03:00
) -> Result<(), String> {
// maybe we can get the url from the web app directly
let url = match profiles_state.0.lock() {
2022-01-07 18:29:20 +03:00
Ok(mut profile) => {
let items = profile.items.take().unwrap_or(vec![]);
if index >= items.len() {
return Err("the index out of bound".into());
}
let url = match &items[index].url {
Some(u) => u.clone(),
None => return Err("failed to update profile for `invalid url`".into()),
};
profile.items = Some(items);
url
}
Err(_) => return Err("failed to get profiles lock".into()),
};
2022-02-18 19:09:36 +03:00
let result = fetch_profile(&url, with_proxy).await?;
2022-01-07 18:29:20 +03:00
2022-02-18 19:09:36 +03:00
match profiles_state.0.lock() {
Ok(mut profiles) => {
profiles.update_item(index, result)?;
// reactivate the profile
let current = profiles.current.clone().unwrap_or(0);
if current == index {
let clash = clash_state.0.lock().unwrap();
profiles.activate(&clash)
} else {
Ok(())
2022-01-07 18:29:20 +03:00
}
2022-02-18 19:09:36 +03:00
}
Err(_) => Err("failed to get profiles lock".into()),
2022-01-07 18:29:20 +03:00
}
}
/// change the current profile
#[tauri::command]
pub fn select_profile(
index: usize,
clash_state: State<'_, ClashState>,
profiles_state: State<'_, ProfilesState>,
2022-01-07 18:29:20 +03:00
) -> Result<(), String> {
let mut profiles = profiles_state.0.lock().unwrap();
2022-01-07 18:29:20 +03:00
match profiles.put_current(index) {
Ok(()) => {
let clash = clash_state.0.lock().unwrap();
2022-01-20 21:31:44 +03:00
profiles.activate(&clash)
2022-01-07 18:29:20 +03:00
}
Err(err) => Err(err),
}
}
/// delete profile item
#[tauri::command]
2022-01-08 09:21:12 +03:00
pub fn delete_profile(
index: usize,
clash_state: State<'_, ClashState>,
profiles_state: State<'_, ProfilesState>,
) -> Result<(), String> {
let mut profiles = profiles_state.0.lock().unwrap();
match profiles.delete_item(index) {
Ok(change) => match change {
true => {
let clash = clash_state.0.lock().unwrap();
2022-01-20 21:31:44 +03:00
profiles.activate(&clash)
2022-01-08 09:21:12 +03:00
}
false => Ok(()),
},
Err(err) => Err(err),
2022-01-07 18:29:20 +03:00
}
}
/// patch the profile config
#[tauri::command]
pub fn patch_profile(
index: usize,
profile: ProfileItem,
profiles_state: State<'_, ProfilesState>,
2022-01-07 18:29:20 +03:00
) -> Result<(), String> {
match profiles_state.0.lock() {
2022-01-07 18:29:20 +03:00
Ok(mut profiles) => profiles.patch_item(index, profile),
Err(_) => Err("can not get profiles lock".into()),
}
}
2022-01-16 21:16:17 +03:00
/// run vscode command to edit the profile
#[tauri::command]
2022-01-19 18:58:34 +03:00
pub fn view_profile(index: usize, profiles_state: State<'_, ProfilesState>) -> Result<(), String> {
2022-01-16 21:16:17 +03:00
let mut profiles = profiles_state.0.lock().unwrap();
let items = profiles.items.take().unwrap_or(vec![]);
if index >= items.len() {
profiles.items = Some(items);
return Err("the index out of bound".into());
}
let file = items[index].file.clone().unwrap_or("".into());
profiles.items = Some(items);
let path = app_home_dir().join("profiles").join(file);
if !path.exists() {
2022-02-07 11:45:20 +03:00
return Err("the file not found".into());
2022-01-16 21:16:17 +03:00
}
2022-02-07 11:45:20 +03:00
// use vscode first
if let Ok(code) = which::which("code") {
2022-02-15 21:43:52 +03:00
return match Command::new(code).arg(path).spawn() {
2022-01-16 21:16:17 +03:00
Ok(_) => Ok(()),
Err(_) => Err("failed to open file by VScode".into()),
2022-02-07 11:45:20 +03:00
};
2022-01-16 21:16:17 +03:00
}
2022-02-07 11:45:20 +03:00
2022-02-15 22:21:34 +03:00
match open_command().arg(path).spawn() {
Ok(_) => Ok(()),
Err(_) => Err("failed to open file by `open`".into()),
2022-02-07 11:45:20 +03:00
}
2022-01-16 21:16:17 +03:00
}
2022-01-07 18:29:20 +03:00
/// restart the sidecar
#[tauri::command]
pub fn restart_sidecar(
clash_state: State<'_, ClashState>,
profiles_state: State<'_, ProfilesState>,
) -> Result<(), String> {
let mut clash = clash_state.0.lock().unwrap();
2022-01-20 21:31:44 +03:00
let mut profiles = profiles_state.0.lock().unwrap();
2022-01-20 21:31:44 +03:00
match clash.restart_sidecar(&mut profiles) {
Ok(_) => Ok(()),
Err(err) => {
log::error!("{}", err);
Err(err)
}
2022-01-07 18:29:20 +03:00
}
}
/// get the clash core info from the state
/// the caller can also get the infomation by clash's api
#[tauri::command]
pub fn get_clash_info(clash_state: State<'_, ClashState>) -> Result<ClashInfo, String> {
match clash_state.0.lock() {
2022-01-20 21:31:44 +03:00
Ok(clash) => Ok(clash.info.clone()),
2022-01-07 18:29:20 +03:00
Err(_) => Err("failed to get clash lock".into()),
}
}
/// update the clash core config
/// after putting the change to the clash core
/// then we should save the latest config
#[tauri::command]
2022-01-20 21:31:44 +03:00
pub fn patch_clash_config(
payload: Mapping,
clash_state: State<'_, ClashState>,
verge_state: State<'_, VergeState>,
2022-01-20 21:31:44 +03:00
profiles_state: State<'_, ProfilesState>,
) -> Result<(), String> {
let mut clash = clash_state.0.lock().unwrap();
let mut verge = verge_state.0.lock().unwrap();
2022-01-20 21:31:44 +03:00
let mut profiles = profiles_state.0.lock().unwrap();
clash.patch_config(payload, &mut verge, &mut profiles)
2022-01-07 18:29:20 +03:00
}
/// get the system proxy
#[tauri::command]
pub fn get_sys_proxy() -> Result<SysProxyConfig, String> {
match SysProxyConfig::get_sys() {
Ok(value) => Ok(value),
Err(err) => Err(err.to_string()),
}
}
2022-01-10 21:24:43 +03:00
/// get the current proxy config
/// which may not the same as system proxy
2022-01-07 18:29:20 +03:00
#[tauri::command]
pub fn get_cur_proxy(verge_state: State<'_, VergeState>) -> Result<Option<SysProxyConfig>, String> {
match verge_state.0.lock() {
Ok(verge) => Ok(verge.cur_sysproxy.clone()),
Err(_) => Err("failed to get verge lock".into()),
}
}
/// get the verge config
#[tauri::command]
pub fn get_verge_config(verge_state: State<'_, VergeState>) -> Result<VergeConfig, String> {
2022-02-13 20:26:24 +03:00
let verge = verge_state.0.lock().unwrap();
let mut config = verge.config.clone();
if config.system_proxy_bypass.is_none() && verge.cur_sysproxy.is_some() {
config.system_proxy_bypass = Some(verge.cur_sysproxy.clone().unwrap().bypass)
2022-01-07 18:29:20 +03:00
}
2022-02-13 20:26:24 +03:00
Ok(config)
2022-01-07 18:29:20 +03:00
}
/// patch the verge config
/// this command only save the config and not responsible for other things
#[tauri::command]
pub async fn patch_verge_config(
payload: VergeConfig,
verge_state: State<'_, VergeState>,
) -> Result<(), String> {
let mut verge = verge_state.0.lock().unwrap();
2022-01-10 21:24:43 +03:00
verge.patch_config(payload)
2022-01-07 18:29:20 +03:00
}
2022-02-15 22:21:34 +03:00
2022-02-16 21:10:25 +03:00
/// kill all sidecars when update app
#[tauri::command]
pub fn kill_sidecars() {
api::process::kill_children();
}
2022-02-15 22:21:34 +03:00
/// open app config dir
#[tauri::command]
pub fn open_app_dir() -> Result<(), String> {
let app_dir = app_home_dir();
match open_command().arg(app_dir).spawn() {
Ok(_) => Ok(()),
Err(_) => Err("failed to open logs dir".into()),
}
}
/// open logs dir
#[tauri::command]
pub fn open_logs_dir() -> Result<(), String> {
let log_dir = app_home_dir().join("logs");
match open_command().arg(log_dir).spawn() {
Ok(_) => Ok(()),
Err(_) => Err("failed to open logs dir".into()),
}
}
/// get open/explorer command
fn open_command() -> Command {
let open = if cfg!(target_os = "windows") {
"explorer"
} else {
"open"
};
Command::new(open)
}