mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
Compare commits
1 Commits
fix_multi_
...
gpauth_win
Author | SHA1 | Date | |
---|---|---|---|
|
3175d1083a |
5
Cargo.lock
generated
5
Cargo.lock
generated
@@ -188,6 +188,7 @@ dependencies = [
|
|||||||
"objc2-web-kit",
|
"objc2-web-kit",
|
||||||
"open",
|
"open",
|
||||||
"regex",
|
"regex",
|
||||||
|
"serde_json",
|
||||||
"tauri",
|
"tauri",
|
||||||
"tiny_http",
|
"tiny_http",
|
||||||
"tokio",
|
"tokio",
|
||||||
@@ -195,7 +196,10 @@ dependencies = [
|
|||||||
"uuid",
|
"uuid",
|
||||||
"webbrowser",
|
"webbrowser",
|
||||||
"webkit2gtk",
|
"webkit2gtk",
|
||||||
|
"webview2-com",
|
||||||
"which",
|
"which",
|
||||||
|
"windows 0.58.0",
|
||||||
|
"windows-core 0.58.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1599,7 +1603,6 @@ dependencies = [
|
|||||||
"clap-verbosity-flag",
|
"clap-verbosity-flag",
|
||||||
"dns-lookup",
|
"dns-lookup",
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"gtk",
|
|
||||||
"log",
|
"log",
|
||||||
"log-reload",
|
"log-reload",
|
||||||
"md5",
|
"md5",
|
||||||
|
@@ -28,15 +28,21 @@ regex = { workspace = true, optional = true }
|
|||||||
tokio-util = { workspace = true, optional = true }
|
tokio-util = { workspace = true, optional = true }
|
||||||
html-escape = { version = "0.2.13", optional = true }
|
html-escape = { version = "0.2.13", optional = true }
|
||||||
|
|
||||||
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
[target.'cfg(not(any(target_os="macos", target_os="windows")))'.dependencies]
|
||||||
webkit2gtk = { version = "2", optional = true }
|
webkit2gtk = { version = "2", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os="macos")'.dependencies]
|
||||||
block2 = { version = "0.5", optional = true }
|
block2 = { version = "0.5", optional = true }
|
||||||
objc2 = { version = "0.5", optional = true }
|
objc2 = { version = "0.5", optional = true }
|
||||||
objc2-foundation = { version = "0.2", optional = true }
|
objc2-foundation = { version = "0.2", optional = true }
|
||||||
objc2-web-kit = { version = "0.2", optional = true }
|
objc2-web-kit = { version = "0.2", optional = true }
|
||||||
|
|
||||||
|
[target.'cfg(target_os="windows")'.dependencies]
|
||||||
|
webview2-com = { version = "0.34", optional = true }
|
||||||
|
windows-core = { version = "0.58", optional = true }
|
||||||
|
windows = { version = "0.58", optional = true }
|
||||||
|
serde_json = { workspace = true, optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
browser-auth = [
|
browser-auth = [
|
||||||
"dep:webbrowser",
|
"dep:webbrowser",
|
||||||
@@ -56,4 +62,8 @@ webview-auth = [
|
|||||||
"dep:objc2",
|
"dep:objc2",
|
||||||
"dep:objc2-foundation",
|
"dep:objc2-foundation",
|
||||||
"dep:objc2-web-kit",
|
"dep:objc2-web-kit",
|
||||||
|
"dep:webview2-com",
|
||||||
|
"dep:windows-core",
|
||||||
|
"dep:windows",
|
||||||
|
"dep:serde_json",
|
||||||
]
|
]
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
use std::{env::temp_dir, fs, os::unix::fs::PermissionsExt};
|
use std::{env::temp_dir, fs};
|
||||||
|
|
||||||
use gpapi::{auth::SamlAuthData, GP_CALLBACK_PORT_FILENAME};
|
use gpapi::{auth::SamlAuthData, GP_CALLBACK_PORT_FILENAME};
|
||||||
use log::info;
|
use log::info;
|
||||||
@@ -96,7 +96,11 @@ async fn wait_auth_data() -> anyhow::Result<SamlAuthData> {
|
|||||||
|
|
||||||
// Write the port to a file
|
// Write the port to a file
|
||||||
fs::write(&port_file, port.to_string())?;
|
fs::write(&port_file, port.to_string())?;
|
||||||
fs::set_permissions(&port_file, fs::Permissions::from_mode(0o600))?;
|
#[cfg(unix)]
|
||||||
|
{
|
||||||
|
use os::unix::fs::PermissionsExt;
|
||||||
|
fs::set_permissions(&port_file, fs::Permissions::from_mode(0o600))?;
|
||||||
|
}
|
||||||
|
|
||||||
// Remove the previous log file
|
// Remove the previous log file
|
||||||
let callback_log = temp_dir().join("gpcallback.log");
|
let callback_log = temp_dir().join("gpcallback.log");
|
||||||
|
@@ -1,8 +1,9 @@
|
|||||||
mod auth_messenger;
|
mod auth_messenger;
|
||||||
mod webview_auth;
|
mod webview_auth;
|
||||||
|
|
||||||
#[cfg_attr(not(target_os = "macos"), path = "webview/unix.rs")]
|
#[cfg_attr(not(any(target_os = "macos", target_os = "windows")), path = "webview/unix.rs")]
|
||||||
#[cfg_attr(target_os = "macos", path = "webview/macos.rs")]
|
#[cfg_attr(target_os = "macos", path = "webview/macos.rs")]
|
||||||
|
#[cfg_attr(windows, path = "webview/windows.rs")]
|
||||||
mod platform_impl;
|
mod platform_impl;
|
||||||
|
|
||||||
pub use webview_auth::WebviewAuthenticator;
|
pub use webview_auth::WebviewAuthenticator;
|
||||||
|
@@ -15,7 +15,7 @@ pub(crate) enum AuthDataLocation {
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub(crate) enum AuthError {
|
pub(crate) enum AuthError {
|
||||||
/// Failed to load page due to TLS error
|
/// Failed to load page due to TLS error
|
||||||
#[cfg(not(target_os = "macos"))]
|
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
|
||||||
TlsError,
|
TlsError,
|
||||||
/// 1. Found auth data in headers/body but it's invalid
|
/// 1. Found auth data in headers/body but it's invalid
|
||||||
/// 2. Loaded an empty page, failed to load page. etc.
|
/// 2. Loaded an empty page, failed to load page. etc.
|
||||||
|
@@ -115,7 +115,7 @@ impl<'a> WebviewAuthenticator<'a> {
|
|||||||
match auth_messenger.subscribe().await? {
|
match auth_messenger.subscribe().await? {
|
||||||
AuthEvent::Close => bail!("Authentication cancelled"),
|
AuthEvent::Close => bail!("Authentication cancelled"),
|
||||||
AuthEvent::RaiseWindow => self.raise_window(&auth_window),
|
AuthEvent::RaiseWindow => self.raise_window(&auth_window),
|
||||||
#[cfg(not(target_os = "macos"))]
|
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
|
||||||
AuthEvent::Error(AuthError::TlsError) => bail!(gpapi::error::PortalError::TlsError),
|
AuthEvent::Error(AuthError::TlsError) => bail!(gpapi::error::PortalError::TlsError),
|
||||||
AuthEvent::Error(AuthError::NotFound(location)) => {
|
AuthEvent::Error(AuthError::NotFound(location)) => {
|
||||||
info!(
|
info!(
|
||||||
@@ -261,10 +261,10 @@ impl<'a> WebviewAuthenticator<'a> {
|
|||||||
|
|
||||||
info!("Raising auth window...");
|
info!("Raising auth window...");
|
||||||
|
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(any(target_os = "macos", target_os = "windows"))]
|
||||||
let result = auth_window.show();
|
let result = auth_window.show();
|
||||||
|
|
||||||
#[cfg(not(target_os = "macos"))]
|
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
|
||||||
let result = {
|
let result = {
|
||||||
use gpapi::utils::window::WindowExt;
|
use gpapi::utils::window::WindowExt;
|
||||||
auth_window.raise()
|
auth_window.raise()
|
||||||
|
142
crates/auth/src/webview/windows.rs
Normal file
142
crates/auth/src/webview/windows.rs
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
use log::warn;
|
||||||
|
use tauri::webview::PlatformWebview;
|
||||||
|
use webview2_com::{
|
||||||
|
pwstr_from_str, take_pwstr, ExecuteScriptCompletedHandler,
|
||||||
|
Microsoft::Web::WebView2::Win32::{
|
||||||
|
ICoreWebView2WebResourceResponseView, ICoreWebView2_14, ICoreWebView2_2,
|
||||||
|
COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_ALWAYS_ALLOW,
|
||||||
|
},
|
||||||
|
ServerCertificateErrorDetectedEventHandler, WebResourceResponseReceivedEventHandler,
|
||||||
|
};
|
||||||
|
use windows_core::{Interface, PWSTR};
|
||||||
|
|
||||||
|
use super::{
|
||||||
|
auth_messenger::AuthError,
|
||||||
|
webview_auth::{GetHeader, PlatformWebviewExt},
|
||||||
|
};
|
||||||
|
|
||||||
|
impl PlatformWebviewExt for PlatformWebview {
|
||||||
|
fn ignore_tls_errors(&self) -> anyhow::Result<()> {
|
||||||
|
unsafe {
|
||||||
|
let wv = self.controller().CoreWebView2()?.cast::<ICoreWebView2_14>()?;
|
||||||
|
let handler = ServerCertificateErrorDetectedEventHandler::create(Box::new(|_, e| {
|
||||||
|
if let Some(e) = e {
|
||||||
|
let _ = e.SetAction(COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_ALWAYS_ALLOW);
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}));
|
||||||
|
|
||||||
|
wv.add_ServerCertificateErrorDetected(&handler, &mut Default::default())?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn load_url(&self, url: &str) -> anyhow::Result<()> {
|
||||||
|
let url = pwstr_from_str(url);
|
||||||
|
|
||||||
|
unsafe { self.controller().CoreWebView2()?.Navigate(url)? }
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn load_html(&self, html: &str) -> anyhow::Result<()> {
|
||||||
|
let html = pwstr_from_str(html);
|
||||||
|
|
||||||
|
unsafe { self.controller().CoreWebView2()?.NavigateToString(html)? }
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_html(&self, callback: Box<dyn Fn(anyhow::Result<String>) + 'static>) {
|
||||||
|
unsafe {
|
||||||
|
match self.controller().CoreWebView2() {
|
||||||
|
Ok(wv) => {
|
||||||
|
let js = "document.documentElement.outerHTML";
|
||||||
|
let js = pwstr_from_str(js);
|
||||||
|
|
||||||
|
let handler = ExecuteScriptCompletedHandler::create(Box::new(move |err, html| {
|
||||||
|
if let Err(err) = err {
|
||||||
|
callback(Err(anyhow::anyhow!(err)));
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
// The returned HTML is JSON.stringify'd string, so we need to parse it
|
||||||
|
let res = match serde_json::from_str(&html) {
|
||||||
|
Ok(Some(html)) => Ok(html),
|
||||||
|
Ok(None) => Err(anyhow::anyhow!("No HTML returned")),
|
||||||
|
Err(err) => Err(anyhow::anyhow!(err)),
|
||||||
|
};
|
||||||
|
callback(res);
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}));
|
||||||
|
|
||||||
|
if let Err(err) = wv.ExecuteScript(js, &handler) {
|
||||||
|
warn!("Failed to execute script: {}", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(err) => callback(Err(anyhow::anyhow!(err))),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GetHeader for ICoreWebView2WebResourceResponseView {
|
||||||
|
fn get_header(&self, key: &str) -> Option<String> {
|
||||||
|
unsafe {
|
||||||
|
let headers = self.Headers().ok()?;
|
||||||
|
let key = pwstr_from_str(key);
|
||||||
|
|
||||||
|
let mut contains = Default::default();
|
||||||
|
headers.Contains(key, &mut contains).ok()?;
|
||||||
|
|
||||||
|
if contains.as_bool() {
|
||||||
|
let mut value = PWSTR::null();
|
||||||
|
headers.GetHeader(key, &mut value).ok()?;
|
||||||
|
let value = take_pwstr(value);
|
||||||
|
|
||||||
|
Some(value)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait PlatformWebviewOnResponse {
|
||||||
|
fn on_response(
|
||||||
|
&self,
|
||||||
|
callback: Box<dyn Fn(anyhow::Result<ICoreWebView2WebResourceResponseView, AuthError>) + 'static>,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PlatformWebviewOnResponse for PlatformWebview {
|
||||||
|
fn on_response(
|
||||||
|
&self,
|
||||||
|
callback: Box<dyn Fn(anyhow::Result<ICoreWebView2WebResourceResponseView, AuthError>) + 'static>,
|
||||||
|
) {
|
||||||
|
unsafe {
|
||||||
|
let _ = self
|
||||||
|
.controller()
|
||||||
|
.CoreWebView2()
|
||||||
|
.and_then(|wv| wv.cast::<ICoreWebView2_2>())
|
||||||
|
.map(|wv| {
|
||||||
|
let handler = WebResourceResponseReceivedEventHandler::create(Box::new(move |_, e| {
|
||||||
|
let Some(e) = e else {
|
||||||
|
return Ok(());
|
||||||
|
};
|
||||||
|
|
||||||
|
match e.Response() {
|
||||||
|
Ok(res) => callback(Ok(res)),
|
||||||
|
Err(err) => warn!("Failed to get response: {}", err),
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}));
|
||||||
|
|
||||||
|
let _ = wv.add_WebResourceResponseReceived(&handler, &mut Default::default());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -27,7 +27,7 @@ chacha20poly1305 = { version = "0.10", features = ["std"] }
|
|||||||
redact-engine.workspace = true
|
redact-engine.workspace = true
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
regex.workspace = true
|
regex.workspace = true
|
||||||
uzers.workspace = true
|
|
||||||
serde_urlencoded.workspace = true
|
serde_urlencoded.workspace = true
|
||||||
md5.workspace = true
|
md5.workspace = true
|
||||||
sha256.workspace = true
|
sha256.workspace = true
|
||||||
@@ -39,8 +39,8 @@ clap-verbosity-flag = { workspace = true, optional = true }
|
|||||||
env_logger = { workspace = true, optional = true }
|
env_logger = { workspace = true, optional = true }
|
||||||
log-reload = { version = "0.1", optional = true }
|
log-reload = { version = "0.1", optional = true }
|
||||||
|
|
||||||
[target.'cfg(not(any(target_os="macos", target_os="windows")))'.dependencies]
|
[target.'cfg(target_family="unix")'.dependencies]
|
||||||
gtk = "0.18"
|
uzers.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
tauri = ["dep:tauri"]
|
tauri = ["dep:tauri"]
|
||||||
|
@@ -104,7 +104,7 @@ impl SamlAuthData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let auth_data = decode_to_string(auth_data).map_err(|e| {
|
let auth_data = decode_to_string(auth_data).map_err(|e| {
|
||||||
warn!("Failed to decode SAML auth data: {}", e);
|
warn!("Failed to decode SAML auth data: {}", auth_data);
|
||||||
AuthDataParseError::Invalid(anyhow::anyhow!(e))
|
AuthDataParseError::Invalid(anyhow::anyhow!(e))
|
||||||
})?;
|
})?;
|
||||||
let auth_data = Self::from_html(&auth_data)?;
|
let auth_data = Self::from_html(&auth_data)?;
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
mod login;
|
mod login;
|
||||||
mod parse_gateways;
|
mod parse_gateways;
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
pub mod hip;
|
pub mod hip;
|
||||||
|
|
||||||
pub use login::*;
|
pub use login::*;
|
||||||
|
@@ -4,7 +4,10 @@ pub mod error;
|
|||||||
pub mod gateway;
|
pub mod gateway;
|
||||||
pub mod gp_params;
|
pub mod gp_params;
|
||||||
pub mod portal;
|
pub mod portal;
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
pub mod process;
|
pub mod process;
|
||||||
|
|
||||||
pub mod service;
|
pub mod service;
|
||||||
pub mod utils;
|
pub mod utils;
|
||||||
|
|
||||||
|
@@ -1,8 +1,11 @@
|
|||||||
pub(crate) mod command_traits;
|
pub(crate) mod command_traits;
|
||||||
|
|
||||||
pub(crate) mod gui_helper_launcher;
|
pub(crate) mod gui_helper_launcher;
|
||||||
|
|
||||||
pub mod auth_launcher;
|
pub mod auth_launcher;
|
||||||
pub mod gui_launcher;
|
pub mod gui_launcher;
|
||||||
pub mod hip_launcher;
|
pub mod hip_launcher;
|
||||||
pub mod service_launcher;
|
pub mod service_launcher;
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
pub mod users;
|
pub mod users;
|
||||||
|
@@ -41,6 +41,12 @@ pub fn patch_gui_runtime_env(hidpi: bool) {
|
|||||||
// This is to avoid blank screen on some systems
|
// This is to avoid blank screen on some systems
|
||||||
std::env::set_var("WEBKIT_DISABLE_COMPOSITING_MODE", "1");
|
std::env::set_var("WEBKIT_DISABLE_COMPOSITING_MODE", "1");
|
||||||
|
|
||||||
|
// Workaround for https://github.com/tauri-apps/tao/issues/929
|
||||||
|
let is_wayland = std::env::var("XDG_SESSION_TYPE").unwrap_or_default() == "wayland";
|
||||||
|
if is_wayland {
|
||||||
|
env::set_var("GDK_BACKEND", "x11");
|
||||||
|
}
|
||||||
|
|
||||||
if hidpi {
|
if hidpi {
|
||||||
info!("Setting GDK_SCALE=2 and GDK_DPI_SCALE=0.5");
|
info!("Setting GDK_SCALE=2 and GDK_DPI_SCALE=0.5");
|
||||||
std::env::set_var("GDK_SCALE", "2");
|
std::env::set_var("GDK_SCALE", "2");
|
||||||
|
@@ -9,7 +9,7 @@ pub mod lock_file;
|
|||||||
pub mod openssl;
|
pub mod openssl;
|
||||||
pub mod redact;
|
pub mod redact;
|
||||||
pub mod request;
|
pub mod request;
|
||||||
#[cfg(feature = "tauri")]
|
#[cfg(all(feature = "tauri", not(any(target_os = "macos", target_os = "windows"))))]
|
||||||
pub mod window;
|
pub mod window;
|
||||||
|
|
||||||
mod shutdown_signal;
|
mod shutdown_signal;
|
||||||
|
@@ -6,15 +6,21 @@ pub async fn shutdown_signal() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
let terminate = async {
|
{
|
||||||
signal::unix::signal(signal::unix::SignalKind::terminate())
|
let terminate = async {
|
||||||
.expect("failed to install signal handler")
|
signal::unix::signal(signal::unix::SignalKind::terminate())
|
||||||
.recv()
|
.expect("failed to install signal handler")
|
||||||
.await;
|
.recv()
|
||||||
};
|
.await;
|
||||||
|
};
|
||||||
|
tokio::select! {
|
||||||
|
_ = ctrl_c => {},
|
||||||
|
_ = terminate => {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
tokio::select! {
|
#[cfg(not(unix))]
|
||||||
_ = ctrl_c => {},
|
{
|
||||||
_ = terminate => {},
|
ctrl_c.await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,97 +1,73 @@
|
|||||||
|
use std::{process::ExitStatus, time::Duration};
|
||||||
|
|
||||||
|
use anyhow::bail;
|
||||||
|
use log::info;
|
||||||
use tauri::WebviewWindow;
|
use tauri::WebviewWindow;
|
||||||
|
use tokio::process::Command;
|
||||||
|
|
||||||
pub trait WindowExt {
|
pub trait WindowExt {
|
||||||
fn raise(&self) -> anyhow::Result<()>;
|
fn raise(&self) -> anyhow::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WindowExt for WebviewWindow {
|
impl WindowExt for WebviewWindow {
|
||||||
#[cfg(any(target_os = "macos", target_os = "windows"))]
|
|
||||||
fn raise(&self) -> anyhow::Result<()> {
|
fn raise(&self) -> anyhow::Result<()> {
|
||||||
self.show()?;
|
raise_window(self)
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
|
|
||||||
fn raise(&self) -> anyhow::Result<()> {
|
|
||||||
unix::raise_window(self)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
|
pub fn raise_window(win: &WebviewWindow) -> anyhow::Result<()> {
|
||||||
mod unix {
|
let is_wayland = std::env::var("XDG_SESSION_TYPE").unwrap_or_default() == "wayland";
|
||||||
use std::{process::ExitStatus, time::Duration};
|
|
||||||
|
|
||||||
use anyhow::bail;
|
if is_wayland {
|
||||||
use gtk::{
|
win.hide()?;
|
||||||
glib::Cast,
|
win.show()?;
|
||||||
traits::{EventBoxExt, GtkWindowExt, WidgetExt},
|
} else {
|
||||||
EventBox,
|
if !win.is_visible()? {
|
||||||
};
|
win.show()?;
|
||||||
use log::info;
|
|
||||||
use tauri::WebviewWindow;
|
|
||||||
use tokio::process::Command;
|
|
||||||
|
|
||||||
pub fn raise_window(win: &WebviewWindow) -> anyhow::Result<()> {
|
|
||||||
let is_wayland = std::env::var("XDG_SESSION_TYPE").unwrap_or_default() == "wayland";
|
|
||||||
|
|
||||||
if is_wayland {
|
|
||||||
let gtk_win = win.gtk_window()?;
|
|
||||||
if let Some(header) = gtk_win.titlebar() {
|
|
||||||
let _ = header.downcast::<EventBox>().map(|event_box| {
|
|
||||||
event_box.set_above_child(false);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
gtk_win.hide();
|
|
||||||
gtk_win.show_all();
|
|
||||||
} else {
|
|
||||||
if !win.is_visible()? {
|
|
||||||
win.show()?;
|
|
||||||
}
|
|
||||||
let title = win.title()?;
|
|
||||||
tokio::spawn(async move {
|
|
||||||
if let Err(err) = wmctrl_raise_window(&title).await {
|
|
||||||
info!("Window not raised: {}", err);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
let title = win.title()?;
|
||||||
// Calling window.show() on window object will cause the menu to be shown.
|
tokio::spawn(async move {
|
||||||
// We need to hide it again.
|
if let Err(err) = wmctrl_raise_window(&title).await {
|
||||||
win.hide_menu()?;
|
info!("Window not raised: {}", err);
|
||||||
|
}
|
||||||
Ok(())
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn wmctrl_raise_window(title: &str) -> anyhow::Result<()> {
|
// Calling window.show() on Windows will cause the menu to be shown.
|
||||||
let mut counter = 0;
|
// We need to hide it again.
|
||||||
|
win.hide_menu()?;
|
||||||
|
|
||||||
loop {
|
Ok(())
|
||||||
if let Ok(exit_status) = wmctrl_try_raise_window(title).await {
|
}
|
||||||
if exit_status.success() {
|
|
||||||
info!("Window raised after {} attempts", counter + 1);
|
async fn wmctrl_raise_window(title: &str) -> anyhow::Result<()> {
|
||||||
return Ok(());
|
let mut counter = 0;
|
||||||
}
|
|
||||||
|
loop {
|
||||||
|
if let Ok(exit_status) = wmctrl_try_raise_window(title).await {
|
||||||
|
if exit_status.success() {
|
||||||
|
info!("Window raised after {} attempts", counter + 1);
|
||||||
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
if counter >= 10 {
|
|
||||||
bail!("Failed to raise window: {}", title)
|
|
||||||
}
|
|
||||||
|
|
||||||
counter += 1;
|
|
||||||
tokio::time::sleep(Duration::from_millis(100)).await;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
async fn wmctrl_try_raise_window(title: &str) -> anyhow::Result<ExitStatus> {
|
if counter >= 10 {
|
||||||
let exit_status = Command::new("wmctrl")
|
bail!("Failed to raise window: {}", title)
|
||||||
.arg("-F")
|
}
|
||||||
.arg("-a")
|
|
||||||
.arg(title)
|
|
||||||
.spawn()?
|
|
||||||
.wait()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(exit_status)
|
counter += 1;
|
||||||
|
tokio::time::sleep(Duration::from_millis(100)).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn wmctrl_try_raise_window(title: &str) -> anyhow::Result<ExitStatus> {
|
||||||
|
let exit_status = Command::new("wmctrl")
|
||||||
|
.arg("-F")
|
||||||
|
.arg("-a")
|
||||||
|
.arg(title)
|
||||||
|
.spawn()?
|
||||||
|
.wait()
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(exit_status)
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user