generated from nhcarrigan/template
a8f98406e1
### Explanation _No response_ ### Issue _No response_ ### Attestations - [ ] I have read and agree to the [Code of Conduct](https://docs.nhcarrigan.com/community/coc/) - [ ] I have read and agree to the [Community Guidelines](https://docs.nhcarrigan.com/community/guide/). - [ ] My contribution complies with the [Contributor Covenant](https://docs.nhcarrigan.com/dev/covenant/). ### Dependencies - [ ] I have pinned the dependencies to a specific patch version. ### Style - [ ] I have run the linter and resolved any errors. - [ ] My pull request uses an appropriate title, matching the conventional commit standards. - [ ] My scope of feat/fix/chore/etc. correctly matches the nature of changes in my pull request. ### Tests - [ ] My contribution adds new code, and I have added tests to cover it. - [ ] My contribution modifies existing code, and I have updated the tests to reflect these changes. - [ ] All new and existing tests pass locally with my changes. - [ ] Code coverage remains at or above the configured threshold. ### Documentation _No response_ ### Versioning _No response_ Reviewed-on: #44 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
74 lines
2.4 KiB
Rust
74 lines
2.4 KiB
Rust
use std::process::Command;
|
|
use std::io::Write;
|
|
use tempfile::NamedTempFile;
|
|
use tauri::command;
|
|
|
|
#[command]
|
|
pub async fn send_vbs_notification(title: String, body: String) -> Result<(), String> {
|
|
// Create a VBScript that shows a Windows notification
|
|
let vbs_content = format!(
|
|
r#"
|
|
Set objShell = CreateObject("WScript.Shell")
|
|
objShell.Popup "{}" & vbCrLf & vbCrLf & "{}", 5, "{}", 64
|
|
"#,
|
|
body.replace("\"", "\"\"").replace("\n", "\" & vbCrLf & \""),
|
|
title.replace("\"", "\"\""),
|
|
title.replace("\"", "\"\"")
|
|
);
|
|
|
|
// Create a temporary VBS file
|
|
let mut temp_file = NamedTempFile::new()
|
|
.map_err(|e| format!("Failed to create temp file: {}", e))?;
|
|
|
|
temp_file
|
|
.write_all(vbs_content.as_bytes())
|
|
.map_err(|e| format!("Failed to write VBS content: {}", e))?;
|
|
|
|
let temp_path = temp_file.path().to_string_lossy().to_string();
|
|
|
|
// Convert WSL path to Windows path
|
|
let windows_path = if temp_path.starts_with("/mnt/") {
|
|
// Convert /mnt/c/... to C:\...
|
|
let path_parts: Vec<&str> = temp_path.split('/').collect();
|
|
if path_parts.len() > 2 {
|
|
let drive_letter = path_parts[2].to_uppercase();
|
|
let rest_of_path = path_parts[3..].join("\\");
|
|
format!("{}:\\{}", drive_letter, rest_of_path)
|
|
} else {
|
|
temp_path.clone()
|
|
}
|
|
} else if temp_path.starts_with("/tmp/") {
|
|
// WSL temp files might be in a different location
|
|
// Try to use wslpath to convert
|
|
let output = Command::new("wslpath")
|
|
.arg("-w")
|
|
.arg(&temp_path)
|
|
.output();
|
|
|
|
if let Ok(result) = output {
|
|
if result.status.success() {
|
|
String::from_utf8_lossy(&result.stdout).trim().to_string()
|
|
} else {
|
|
temp_path.clone()
|
|
}
|
|
} else {
|
|
temp_path.clone()
|
|
}
|
|
} else {
|
|
temp_path.clone()
|
|
};
|
|
|
|
// Execute the VBScript using wscript.exe
|
|
let output = Command::new("/mnt/c/Windows/System32/wscript.exe")
|
|
.arg("//NoLogo")
|
|
.arg(&windows_path)
|
|
.output()
|
|
.map_err(|e| format!("Failed to execute VBScript: {}", e))?;
|
|
|
|
if !output.status.success() {
|
|
let error = String::from_utf8_lossy(&output.stderr);
|
|
return Err(format!("VBScript execution failed: {}", error));
|
|
}
|
|
|
|
Ok(())
|
|
} |