123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- use crate::{
- core::{ClashInfo, ProfileItem, Profiles, VergeConfig},
- states::{ClashState, ProfilesState, VergeState},
- utils::{dirs::app_home_dir, fetch::fetch_profile, sysopt::SysProxyConfig},
- };
- use serde_yaml::Mapping;
- use std::{path::PathBuf, process::Command};
- use tauri::{api, State};
- /// 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() {
- 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() {
- Ok(mut profiles) => profiles.sync_file(),
- Err(_) => Err("failed to get profiles lock".into()),
- }
- }
- /// import the profile from url
- /// and save to `profiles.yaml`
- #[tauri::command]
- pub async fn import_profile(
- url: String,
- with_proxy: bool,
- profiles_state: State<'_, ProfilesState>,
- ) -> Result<(), String> {
- let result = fetch_profile(&url, with_proxy).await?;
- let mut profiles = profiles_state.0.lock().unwrap();
- profiles.import_from_url(url, result)
- }
- /// 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();
- profiles.append_item(name, desc)?;
- Ok(())
- }
- /// Update the profile
- #[tauri::command]
- pub async fn update_profile(
- index: usize,
- with_proxy: bool,
- clash_state: State<'_, ClashState>,
- profiles_state: State<'_, ProfilesState>,
- ) -> Result<(), String> {
- // maybe we can get the url from the web app directly
- let url = match profiles_state.0.lock() {
- 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()),
- };
- let result = fetch_profile(&url, with_proxy).await?;
- 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(())
- }
- }
- Err(_) => Err("failed to get profiles lock".into()),
- }
- }
- /// change the current profile
- #[tauri::command]
- pub fn select_profile(
- index: usize,
- clash_state: State<'_, ClashState>,
- profiles_state: State<'_, ProfilesState>,
- ) -> Result<(), String> {
- let mut profiles = profiles_state.0.lock().unwrap();
- match profiles.put_current(index) {
- Ok(()) => {
- let clash = clash_state.0.lock().unwrap();
- profiles.activate(&clash)
- }
- Err(err) => Err(err),
- }
- }
- /// delete profile item
- #[tauri::command]
- 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();
- profiles.activate(&clash)
- }
- false => Ok(()),
- },
- Err(err) => Err(err),
- }
- }
- /// patch the profile config
- #[tauri::command]
- pub fn patch_profile(
- index: usize,
- profile: ProfileItem,
- profiles_state: State<'_, ProfilesState>,
- ) -> Result<(), String> {
- match profiles_state.0.lock() {
- Ok(mut profiles) => profiles.patch_item(index, profile),
- Err(_) => Err("can not get profiles lock".into()),
- }
- }
- /// run vscode command to edit the profile
- #[tauri::command]
- pub fn view_profile(index: usize, profiles_state: State<'_, ProfilesState>) -> Result<(), String> {
- 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() {
- return Err("the file not found".into());
- }
- // use vscode first
- if let Ok(code) = which::which("code") {
- return match Command::new(code).arg(path).spawn() {
- Ok(_) => Ok(()),
- Err(_) => Err("failed to open file by VScode".into()),
- };
- }
- open_path_cmd(path, "failed to open file by `open`")
- }
- /// 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();
- let mut profiles = profiles_state.0.lock().unwrap();
- match clash.restart_sidecar(&mut profiles) {
- Ok(_) => Ok(()),
- Err(err) => {
- log::error!("{}", err);
- Err(err)
- }
- }
- }
- /// 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() {
- Ok(clash) => Ok(clash.info.clone()),
- 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]
- pub fn patch_clash_config(
- payload: Mapping,
- clash_state: State<'_, ClashState>,
- verge_state: State<'_, VergeState>,
- profiles_state: State<'_, ProfilesState>,
- ) -> Result<(), String> {
- let mut clash = clash_state.0.lock().unwrap();
- let mut verge = verge_state.0.lock().unwrap();
- let mut profiles = profiles_state.0.lock().unwrap();
- clash.patch_config(payload, &mut verge, &mut profiles)
- }
- /// 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()),
- }
- }
- /// get the current proxy config
- /// which may not the same as system proxy
- #[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> {
- 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)
- }
- Ok(config)
- }
- /// patch the verge config
- /// this command only save the config and not responsible for other things
- #[tauri::command]
- pub fn patch_verge_config(
- payload: VergeConfig,
- verge_state: State<'_, VergeState>,
- ) -> Result<(), String> {
- let mut verge = verge_state.0.lock().unwrap();
- verge.patch_config(payload)
- }
- /// kill all sidecars when update app
- #[tauri::command]
- pub fn kill_sidecars() {
- api::process::kill_children();
- }
- /// open app config dir
- #[tauri::command]
- pub fn open_app_dir() -> Result<(), String> {
- let app_dir = app_home_dir();
- open_path_cmd(app_dir, "failed to open app dir")
- }
- /// open logs dir
- #[tauri::command]
- pub fn open_logs_dir() -> Result<(), String> {
- let log_dir = app_home_dir().join("logs");
- open_path_cmd(log_dir, "failed to open logs dir")
- }
- /// get open/explorer command
- fn open_path_cmd(dir: PathBuf, err_str: &str) -> Result<(), String> {
- #[cfg(target_os = "windows")]
- {
- use std::os::windows::process::CommandExt;
- match Command::new("explorer")
- .creation_flags(0x08000000)
- .arg(dir)
- .spawn()
- {
- Ok(_) => Ok(()),
- Err(_) => Err(err_str.into()),
- }
- }
- #[cfg(not(target_os = "windows"))]
- match Command::new("open").arg(dir).spawn() {
- Ok(_) => Ok(()),
- Err(_) => Err(err_str.into()),
- }
- }
|