2024-09-17 18:32:16 +00:00
|
|
|
use std::collections::HashMap;
|
2024-09-16 20:51:27 +00:00
|
|
|
use zbus::{message::Body, Result};
|
|
|
|
use zvariant::OwnedValue;
|
|
|
|
|
2024-09-17 18:32:16 +00:00
|
|
|
// A notificaion object
|
2024-09-16 20:51:27 +00:00
|
|
|
pub struct Notification {
|
2024-09-17 18:32:16 +00:00
|
|
|
// The application that sent the notification
|
|
|
|
app_name: String,
|
|
|
|
// (Optional) ID of an existing notification to be updated, replaced by this
|
|
|
|
replace_id: u32,
|
|
|
|
// See icon specifications: https://specifications.freedesktop.org/notification-spec/latest/icons-and-images.html
|
|
|
|
icon: String,
|
|
|
|
// Notification title
|
|
|
|
summary: String,
|
|
|
|
// Notification content/body
|
|
|
|
body: String,
|
|
|
|
// Action requests that can be sent back to the client - "Reply," "Mark as Read," "Play/Pause/Next," "Snooze/Dismiss," etc.
|
|
|
|
actions: Vec<String>,
|
|
|
|
// Extra useful data - notif type, urgency, sound file, icon data, etc.
|
|
|
|
hints: HashMap<String, OwnedValue>,
|
|
|
|
// Seconds till this notif expires. Optional
|
|
|
|
expir_timeout: i32,
|
2024-09-16 20:51:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Notification {
|
2024-09-17 18:32:16 +00:00
|
|
|
// Obtain urgency
|
2024-09-16 20:51:27 +00:00
|
|
|
pub fn urgency(&self) -> String {
|
|
|
|
match self.hints.get("urgency") {
|
|
|
|
Some(value) => {
|
|
|
|
// Attempt to convert OwnedValue to u8
|
|
|
|
match u8::try_from(value) {
|
|
|
|
Ok(0) => "Low".to_string(),
|
|
|
|
Ok(1) => "Normal".to_string(),
|
|
|
|
Ok(2) => "Critical".to_string(),
|
2024-09-17 06:47:05 +00:00
|
|
|
_ => "Other".to_string(), // There are no accepted values other that these 3
|
2024-09-16 20:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
2024-09-17 06:47:05 +00:00
|
|
|
None => "Unknown".to_string(), // This possibly never occurs, or something might be wrong
|
2024-09-16 20:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
2024-09-17 11:23:57 +00:00
|
|
|
|
2024-09-17 18:32:16 +00:00
|
|
|
// Key:Val pairs of actions
|
|
|
|
pub fn actions(&self) -> Vec<(String, String)> {
|
|
|
|
let mut actions: Vec<(String, String)> = vec![];
|
|
|
|
let acts = &self.actions;
|
|
|
|
let act_len = acts.len();
|
|
|
|
let mut i = 0;
|
|
|
|
while i < act_len {
|
|
|
|
// Action ID, used by the sender to id the clicked action
|
|
|
|
let action_id = &acts[i];
|
|
|
|
// Localised human-readable string that describes the label
|
|
|
|
let action_label = &acts[i + 1];
|
|
|
|
// Pair of (id: label)
|
|
|
|
let action_pair = (action_id.to_owned(), action_label.to_owned());
|
|
|
|
// Add it to the Vec
|
|
|
|
actions.push(action_pair);
|
|
|
|
i += 2;
|
|
|
|
}
|
|
|
|
actions
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default action
|
|
|
|
pub fn default_action(&self) -> Option<(String, String)> {
|
|
|
|
if self.actions().is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(self.actions()[0].clone())
|
2024-09-17 11:23:57 +00:00
|
|
|
}
|
|
|
|
}
|
2024-09-16 20:51:27 +00:00
|
|
|
}
|
|
|
|
|
2024-09-17 18:32:16 +00:00
|
|
|
// Convert the DBus message body into Notification
|
2024-09-16 20:51:27 +00:00
|
|
|
pub fn to_notif(msg_body: &Body) -> Result<Notification> {
|
2024-09-17 18:32:16 +00:00
|
|
|
// Deserialized body into a tuple
|
2024-09-16 20:51:27 +00:00
|
|
|
let (app_name, replace_id, icon, summary, body, actions, hints, expir_timeout) =
|
2024-09-17 18:32:16 +00:00
|
|
|
msg_body.deserialize()?;
|
|
|
|
// Make a Notification object from the obtained tuple
|
2024-09-16 20:51:27 +00:00
|
|
|
Ok(Notification {
|
|
|
|
app_name,
|
|
|
|
replace_id,
|
|
|
|
icon,
|
|
|
|
summary,
|
|
|
|
body,
|
|
|
|
actions,
|
|
|
|
hints,
|
|
|
|
expir_timeout,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn print_notif(notif: &Notification) {
|
|
|
|
println!("App Name: {0}", notif.app_name);
|
|
|
|
println!("Replace ID: {0}", notif.replace_id);
|
|
|
|
println!("Icon: {0}", notif.icon);
|
|
|
|
println!("Summary: {0}", notif.summary);
|
|
|
|
println!("Body: {0}", notif.body);
|
2024-09-17 18:32:16 +00:00
|
|
|
// println!("Actions: {0:?}", notif.actions);
|
|
|
|
println!("Actions:");
|
|
|
|
if notif.actions().is_empty() {
|
|
|
|
println!("\tNone");
|
|
|
|
} else {
|
|
|
|
for actn in notif.actions() {
|
|
|
|
println!("\t{}: {},", actn.0, actn.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(action) = notif.default_action() {
|
|
|
|
println!("Default action:\t{}:{}", action.0, action.1);
|
|
|
|
}
|
2024-09-16 20:51:27 +00:00
|
|
|
println!("Hints:");
|
|
|
|
for (key, value) in ¬if.hints {
|
2024-09-17 18:32:16 +00:00
|
|
|
println!("\t{key}: {value:?}");
|
2024-09-16 20:51:27 +00:00
|
|
|
}
|
2024-09-17 18:32:16 +00:00
|
|
|
println!("Urgency:{}", notif.urgency());
|
2024-09-16 21:28:58 +00:00
|
|
|
println!("Expiration Timeout: {0} seconds", notif.expir_timeout);
|
2024-09-16 20:51:27 +00:00
|
|
|
}
|