1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
// Copyright 2017-2022 allenbenz <allenbenz@users.noreply.github.com>
// Copyright 2022-2022 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
//! An incomplete wrapper over the WinRT toast api
//!
//! Tested in Windows 10 and 8.1. Untested in Windows 8, might work.
//!
//! Todo:
//!
//! * Add support for Adaptive Content
//! * Add support for Actions
//!
//! Known Issues:
//!
//! * Will not work for Windows 7.
//!
//! Limitations:
//!
//! * Windows 8.1 only supports a single image, the last image (icon, hero, image) will be the one on the toast
/// for xml schema details check out:
///
/// * https://docs.microsoft.com/en-us/uwp/schemas/tiles/toastschema/root-elements
/// * https://docs.microsoft.com/en-us/windows/uwp/controls-and-patterns/tiles-and-notifications-toast-xml-schema
/// * https://docs.microsoft.com/en-us/windows/uwp/controls-and-patterns/tiles-and-notifications-adaptive-interactive-toasts
/// * https://msdn.microsoft.com/library/14a07fce-d631-4bad-ab99-305b703713e6#Sending_toast_notifications_from_desktop_apps
/// for Windows 7 and older support look into Shell_NotifyIcon
/// https://msdn.microsoft.com/en-us/library/windows/desktop/ee330740(v=vs.85).aspx
/// https://softwareengineering.stackexchange.com/questions/222339/using-the-system-tray-notification-area-app-in-windows-7
/// For actions look at https://docs.microsoft.com/en-us/dotnet/api/microsoft.toolkit.uwp.notifications.toastactionscustom?view=win-comm-toolkit-dotnet-7.0
use windows::{
core::IInspectable, Data::Xml::Dom::XmlDocument, Foundation::TypedEventHandler,
UI::Notifications::ToastNotificationManager,
};
use std::fmt::Display;
use std::path::Path;
use std::str::FromStr;
pub use windows::core::{Error, Result, HSTRING};
pub use windows::UI::Notifications::ToastNotification;
pub struct Toast {
duration: String,
title: String,
line1: String,
line2: String,
images: String,
audio: String,
app_id: String,
scenario: String,
on_activated: Option<TypedEventHandler<ToastNotification, IInspectable>>,
}
#[derive(Clone, Copy)]
pub enum Duration {
/// 7 seconds
Short,
/// 25 seconds
Long,
}
#[derive(Debug, Clone, Copy)]
pub enum Sound {
Default,
IM,
Mail,
Reminder,
SMS,
/// Play the loopable sound only once
Single(LoopableSound),
/// Loop the loopable sound for the entire duration of the toast
Loop(LoopableSound),
}
impl TryFrom<&str> for Sound {
type Error = SoundParsingError;
fn try_from(value: &str) -> std::result::Result<Self, Self::Error> {
Self::from_str(value)
}
}
impl FromStr for Sound {
type Err = SoundParsingError;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(match s {
"Default" => Sound::Default,
"IM" => Sound::IM,
"Mail" => Sound::Mail,
"Reminder" => Sound::Reminder,
"SMS" => Sound::SMS,
_ => Sound::Single(LoopableSound::from_str(s)?),
})
}
}
impl Display for Sound {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}",
match &self {
Sound::Default => "Default",
Sound::IM => "IM",
Sound::Mail => "Mail",
Sound::Reminder => "Reminder",
Sound::SMS => "SMS",
Sound::Single(s) | Sound::Loop(s) => return write!(f, "{s}"),
}
)
}
}
/// Sounds suitable for Looping
#[allow(dead_code)]
#[derive(Debug, Clone, Copy)]
pub enum LoopableSound {
Alarm,
Alarm2,
Alarm3,
Alarm4,
Alarm5,
Alarm6,
Alarm7,
Alarm8,
Alarm9,
Alarm10,
Call,
Call2,
Call3,
Call4,
Call5,
Call6,
Call7,
Call8,
Call9,
Call10,
}
#[derive(Debug)]
pub struct SoundParsingError;
impl Display for SoundParsingError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "couldn't parse string as a valid sound")
}
}
impl std::error::Error for SoundParsingError {}
impl TryFrom<&str> for LoopableSound {
type Error = SoundParsingError;
fn try_from(value: &str) -> std::result::Result<Self, Self::Error> {
Self::from_str(value)
}
}
impl FromStr for LoopableSound {
type Err = SoundParsingError;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(match s {
"Alarm" => LoopableSound::Alarm,
"Alarm2" => LoopableSound::Alarm2,
"Alarm3" => LoopableSound::Alarm3,
"Alarm4" => LoopableSound::Alarm4,
"Alarm5" => LoopableSound::Alarm5,
"Alarm6" => LoopableSound::Alarm6,
"Alarm7" => LoopableSound::Alarm7,
"Alarm8" => LoopableSound::Alarm8,
"Alarm9" => LoopableSound::Alarm9,
"Alarm10" => LoopableSound::Alarm10,
"Call" => LoopableSound::Call,
"Call2" => LoopableSound::Call2,
"Call3" => LoopableSound::Call3,
"Call4" => LoopableSound::Call4,
"Call5" => LoopableSound::Call5,
"Call6" => LoopableSound::Call6,
"Call7" => LoopableSound::Call7,
"Call8" => LoopableSound::Call8,
"Call9" => LoopableSound::Call9,
"Call10" => LoopableSound::Call10,
_ => return Err(SoundParsingError),
})
}
}
impl Display for LoopableSound {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}",
match self {
LoopableSound::Alarm => "Alarm",
LoopableSound::Alarm2 => "Alarm2",
LoopableSound::Alarm3 => "Alarm3",
LoopableSound::Alarm4 => "Alarm4",
LoopableSound::Alarm5 => "Alarm5",
LoopableSound::Alarm6 => "Alarm6",
LoopableSound::Alarm7 => "Alarm7",
LoopableSound::Alarm8 => "Alarm8",
LoopableSound::Alarm9 => "Alarm9",
LoopableSound::Alarm10 => "Alarm10",
LoopableSound::Call => "Call",
LoopableSound::Call2 => "Call2",
LoopableSound::Call3 => "Call3",
LoopableSound::Call4 => "Call4",
LoopableSound::Call5 => "Call5",
LoopableSound::Call6 => "Call6",
LoopableSound::Call7 => "Call7",
LoopableSound::Call8 => "Call8",
LoopableSound::Call9 => "Call9",
LoopableSound::Call10 => "Call10",
}
)
}
}
#[allow(dead_code)]
#[derive(Clone, Copy)]
pub enum IconCrop {
Square,
Circular,
}
#[allow(dead_code)]
#[derive(Clone, Copy)]
pub enum Scenario {
/// The normal toast behavior.
Default,
/// This will be displayed pre-expanded and stay on the user's screen till dismissed. Audio will loop by default and will use alarm audio.
Alarm,
/// This will be displayed pre-expanded and stay on the user's screen till dismissed..
Reminder,
/// This will be displayed pre-expanded in a special call format and stay on the user's screen till dismissed. Audio will loop by default and will use ringtone audio.
IncomingCall,
}
impl Toast {
/// This can be used if you do not have a AppUserModelID.
///
/// However, the toast will erroniously report its origin as powershell.
pub const POWERSHELL_APP_ID: &'static str = "{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\
\\WindowsPowerShell\\v1.0\\powershell.exe";
/// Constructor for the toast builder.
///
/// app_id is the running application's [AppUserModelID][1].
///
/// [1]: https://msdn.microsoft.com/en-us/library/windows/desktop/dd378459(v=vs.85).aspx
///
/// If the program you are using this in was not installed, use Toast::POWERSHELL_APP_ID for now
#[allow(dead_code)]
pub fn new(app_id: &str) -> Toast {
Toast {
duration: String::new(),
title: String::new(),
line1: String::new(),
line2: String::new(),
images: String::new(),
audio: String::new(),
app_id: app_id.to_string(),
scenario: String::new(),
on_activated: None,
}
}
/// Sets the title of the toast.
///
/// Will be white.
/// Supports Unicode ✓
pub fn title(mut self, content: &str) -> Toast {
self.title = format!(
r#"<text id="1">{}</text>"#,
&quick_xml::escape::escape(content)
);
self
}
/// Add/Sets the first line of text below title.
///
/// Will be grey.
/// Supports Unicode ✓
pub fn text1(mut self, content: &str) -> Toast {
self.line1 = format!(
r#"<text id="2">{}</text>"#,
&quick_xml::escape::escape(content)
);
self
}
/// Add/Sets the second line of text below title.
///
/// Will be grey.
/// Supports Unicode ✓
pub fn text2(mut self, content: &str) -> Toast {
self.line2 = format!(
r#"<text id="3">{}</text>"#,
&quick_xml::escape::escape(content)
);
self
}
/// Set the length of time to show the toast
pub fn duration(mut self, duration: Duration) -> Toast {
self.duration = match duration {
Duration::Long => "duration=\"long\"",
Duration::Short => "duration=\"short\"",
}
.to_owned();
self
}
/// Set the scenario of the toast
///
/// The system keeps the notification on screen until the user acts upon/dismisses it.
/// The system also plays the suitable notification sound as well.
pub fn scenario(mut self, scenario: Scenario) -> Toast {
self.scenario = match scenario {
Scenario::Default => "",
Scenario::Alarm => "scenario=\"alarm\"",
Scenario::Reminder => "scenario=\"reminder\"",
Scenario::IncomingCall => "scenario=\"incomingCall\"",
}
.to_owned();
self
}
/// Set the icon shown in the upper left of the toast
///
/// The default is determined by your app id.
/// If you are using the powershell workaround, it will be the powershell icon
pub fn icon(mut self, source: &Path, crop: IconCrop, alt_text: &str) -> Toast {
if is_newer_than_windows81() {
let crop_type_attr = match crop {
IconCrop::Square => "".to_string(),
IconCrop::Circular => "hint-crop=\"circle\"".to_string(),
};
self.images = format!(
r#"{}<image placement="appLogoOverride" {} src="file:///{}" alt="{}" />"#,
self.images,
crop_type_attr,
quick_xml::escape::escape(&source.display().to_string()),
quick_xml::escape::escape(alt_text)
);
self
} else {
// Win81 rejects the above xml so we fallback to a simpler call
self.image(source, alt_text)
}
}
/// Add/Set a Hero image for the toast.
///
/// This will be above the toast text and the icon.
pub fn hero(mut self, source: &Path, alt_text: &str) -> Toast {
if is_newer_than_windows81() {
self.images = format!(
r#"{}<image placement="Hero" src="file:///{}" alt="{}" />"#,
self.images,
quick_xml::escape::escape(&source.display().to_string()),
quick_xml::escape::escape(alt_text)
);
self
} else {
// win81 rejects the above xml so we fallback to a simpler call
self.image(source, alt_text)
}
}
/// Add an image to the toast
///
/// May be done many times.
/// Will appear below text.
pub fn image(mut self, source: &Path, alt_text: &str) -> Toast {
if !is_newer_than_windows81() {
// win81 cannot have more than 1 image and shows nothing if there is more than that
self.images = "".to_owned();
}
self.images = format!(
r#"{}<image id="1" src="file:///{}" alt="{}" />"#,
self.images,
quick_xml::escape::escape(&source.display().to_string()),
quick_xml::escape::escape(alt_text)
);
self
}
/// Set the sound for the toast or silence it
///
/// Default is [Sound::IM](enum.Sound.html)
pub fn sound(mut self, src: Option<Sound>) -> Toast {
self.audio = match src {
None => "<audio silent=\"true\" />".to_owned(),
Some(Sound::Default) => "".to_owned(),
Some(Sound::Loop(sound)) => format!(
r#"<audio loop="true" src="ms-winsoundevent:Notification.Looping.{}" />"#,
sound
),
Some(Sound::Single(sound)) => format!(
r#"<audio src="ms-winsoundevent:Notification.Looping.{}" />"#,
sound
),
Some(sound) => format!(r#"<audio src="ms-winsoundevent:Notification.{}" />"#, sound),
};
self
}
// HACK: f is static so that we know the function is valid to call.
// this would be nice to remove at some point
pub fn on_activated<F: FnMut() -> Result<()> + Send + 'static>(mut self, mut f: F) -> Self {
self.on_activated = Some(TypedEventHandler::new(move |_, _| f()));
self
}
fn create_template(&self) -> windows::core::Result<ToastNotification> {
//using this to get an instance of XmlDocument
let toast_xml = XmlDocument::new()?;
let template_binding = if is_newer_than_windows81() {
"ToastGeneric"
} else {
// Need to do this or an empty placeholder will be shown if no image is set
if self.images.is_empty() {
"ToastText04"
} else {
"ToastImageAndText04"
}
};
toast_xml.LoadXml(&HSTRING::from(format!(
"<toast {} {}>
<visual>
<binding template=\"{}\">
{}
{}{}{}
</binding>
</visual>
{}
</toast>",
self.duration,
self.scenario,
template_binding,
self.images,
self.title,
self.line1,
self.line2,
self.audio,
)))?;
// Create the toast
ToastNotification::CreateToastNotification(&toast_xml)
}
/// Display the toast on the screen
pub fn show(&self) -> windows::core::Result<()> {
let toast_template = self.create_template()?;
if let Some(handler) = &self.on_activated {
toast_template.Activated(handler)?;
}
let toast_notifier =
ToastNotificationManager::CreateToastNotifierWithId(&HSTRING::from(&self.app_id))?;
// Show the toast.
let result = toast_notifier.Show(&toast_template);
std::thread::sleep(std::time::Duration::from_millis(10));
result
}
}
fn is_newer_than_windows81() -> bool {
let os = windows_version::OsVersion::current();
os.major > 6
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn simple_toast() {
let toast = Toast::new(Toast::POWERSHELL_APP_ID);
toast
.hero(
&Path::new(env!("CARGO_MANIFEST_DIR")).join("resources/test/flower.jpeg"),
"flower",
)
.icon(
&Path::new(env!("CARGO_MANIFEST_DIR")).join("resources/test/chick.jpeg"),
IconCrop::Circular,
"chicken",
)
.title("title")
.text1("line1")
.text2("line2")
.duration(Duration::Short)
//.sound(Some(Sound::Loop(LoopableSound::Call)))
//.sound(Some(Sound::SMS))
.sound(None)
.show()
// silently consume errors
.expect("notification failed");
}
}