feat: 🎸 finish ubuntu support

This commit is contained in:
IWANABETHATGUY 2022-03-08 13:47:18 +08:00
parent 3afbb56640
commit 5565086054
No known key found for this signature in database
GPG key ID: 5A2D3121B5F40BD2
2 changed files with 46 additions and 0 deletions

View file

@ -22,6 +22,7 @@ function resolveClash() {
"win32-x64": "clash-windows-386",
"darwin-x64": "clash-darwin-amd64",
"darwin-arm64": "clash-darwin-arm64",
"linux-x64": "clash-linux-amd64"
};
const name = map[`${platform}-${arch}`];
@ -46,6 +47,7 @@ async function resolveSidecar() {
const sidecarDir = path.join(cwd, "src-tauri", "sidecar");
const host = execSync("rustc -vV | grep host").toString().slice(6).trim();
console.log('fuck', host)
const ext = process.platform === "win32" ? ".exe" : "";
const sidecarFile = `clash-${host}${ext}`;
const sidecarPath = path.join(sidecarDir, sidecarFile);

View file

@ -93,6 +93,40 @@ impl SysProxyConfig {
})
}
#[cfg(target_os = "linux")]
/// Get the macos system proxy config
pub fn get_sys() -> io::Result<Self> {
let http_proxy = std::env::var("http_proxy").unwrap_or("".to_string());
let https_proxy = std::env::var("https_proxy").unwrap_or("".to_string());
let sock_proxy = std::env::var("all_proxy").unwrap_or("".to_string());
let bypass = std::env::var("no_proxy").unwrap_or(DEFAULT_BYPASS.to_string());
// let http = macproxy::get_proxy(&["-getwebproxy", MACOS_SERVICE])?;
// let https = macproxy::get_proxy(&["-getsecurewebproxy", MACOS_SERVICE])?;
// let sock = macproxy::get_proxy(&["-getsocksfirewallproxy", MACOS_SERVICE])?;
let mut enable = false;
let mut server = "".into();
if !sock_proxy.is_empty() {
enable = true;
server = sock_proxy;
}
if !https_proxy.is_empty() {
enable = true;
server = https_proxy;
}
if !http_proxy.is_empty() || !enable {
enable = true;
server = http_proxy;
}
Ok(SysProxyConfig {
enable,
server,
bypass: bypass.into(),
})
}
#[cfg(target_os = "windows")]
/// Set the windows system proxy config
pub fn set_sys(&self) -> io::Result<()> {
@ -120,6 +154,16 @@ impl SysProxyConfig {
macproxy::set_proxy("-setsecurewebproxy", MACOS_SERVICE, enable, server)?;
macproxy::set_proxy("-setsocksfirewallproxy", MACOS_SERVICE, enable, server)
}
#[cfg(target_os = "linux")]
pub fn set_sys(&self) -> io::Result<()> {
let enable = self.enable;
let server = self.server.as_str();
std::env::set_var("http_proxy", server);
std::env::set_var("https_proxy", server);
std::env::set_var("all_proxy", server);
Ok(())
}
}
#[cfg(target_os = "macos")]