From 3b3109cb5f18716517ab7b5e5aba827d1d72b7df Mon Sep 17 00:00:00 2001 From: iam54r1n4 Date: Fri, 20 Jan 2023 15:23:35 -0800 Subject: [PATCH] Comment extract_url_and_profile_name_from_deep_link function --- src-tauri/src/utils/help.rs | 46 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src-tauri/src/utils/help.rs b/src-tauri/src/utils/help.rs index 0d90e77..291d6a0 100644 --- a/src-tauri/src/utils/help.rs +++ b/src-tauri/src/utils/help.rs @@ -109,31 +109,31 @@ pub fn open_file(path: PathBuf) -> Result<()> { pub enum ExtractDeeplinkError{ InvalidInput } -pub fn extract_url_and_profile_name_from_deep_link(deep_link:&String) -> Result<(String,String),ExtractDeeplinkError>{ - // Sample: clash://install-config?url=https://mysite.com/all.yml&name=profilename - let (url,profile) = { - let pruned = deep_link.split("url=").collect::>(); - if pruned.len() < 2 { - return Err(ExtractDeeplinkError::InvalidInput) - } - let url_and_profile_name = pruned[1].split("&").collect::>(); - if url_and_profile_name.len() < 2{ - return Err(ExtractDeeplinkError::InvalidInput) - } - let url = url_and_profile_name[0].to_string(); - let profile_name = { - let splitted: Vec<_> = url_and_profile_name[1].split("=").collect(); - if splitted.len() < 2 { - return Err(ExtractDeeplinkError::InvalidInput) - } - splitted[1].to_string() - }; +// pub fn extract_url_and_profile_name_from_deep_link(deep_link:&String) -> Result<(String,String),ExtractDeeplinkError>{ +// // Sample: clash://install-config?url=https://mysite.com/all.yml&name=profilename +// let (url,profile) = { +// let pruned = deep_link.split("url=").collect::>(); +// if pruned.len() < 2 { +// return Err(ExtractDeeplinkError::InvalidInput) +// } +// let url_and_profile_name = pruned[1].split("&").collect::>(); +// if url_and_profile_name.len() < 2{ +// return Err(ExtractDeeplinkError::InvalidInput) +// } +// let url = url_and_profile_name[0].to_string(); +// let profile_name = { +// let splitted: Vec<_> = url_and_profile_name[1].split("=").collect(); +// if splitted.len() < 2 { +// return Err(ExtractDeeplinkError::InvalidInput) +// } +// splitted[1].to_string() +// }; - (url,profile_name) - }; +// (url,profile_name) +// }; - return Ok((url,profile)); -} +// return Ok((url,profile)); +// } pub fn convert_deeplink_to_url_for_import_profile(deep_link:&String) -> Result{ // Sample: clash://install-config?url=https://mysite.com/all.yml&name=profilename