buzz-ed/src/main.rs

290 lines
11 KiB
Rust
Raw Normal View History

2017-03-02 07:20:17 +01:00
extern crate xdg;
extern crate toml;
extern crate imap;
2017-03-03 04:27:23 +01:00
extern crate rayon;
2017-03-02 07:20:17 +01:00
extern crate openssl;
extern crate systray;
extern crate mailparse;
extern crate notify_rust;
2017-03-02 07:20:17 +01:00
use openssl::ssl::{SslConnectorBuilder, SslMethod};
2017-03-02 07:20:17 +01:00
use imap::client::Client;
2017-03-03 04:27:23 +01:00
use rayon::prelude::*;
2017-03-02 07:20:17 +01:00
use std::collections::HashSet;
use std::process::Command;
use std::io::prelude::*;
2017-03-03 04:27:23 +01:00
use std::time::Duration;
2017-03-02 07:20:17 +01:00
use std::sync::mpsc;
use std::fs::File;
use std::thread;
struct Account<'a> {
name: &'a str,
server: (&'a str, u16),
username: &'a str,
password: String,
}
fn main() {
// Load the user's config
let xdg = match xdg::BaseDirectories::new() {
Ok(xdg) => xdg,
Err(e) => {
println!("Could not find configuration file buzz.toml: {}", e);
return;
}
};
let config = match xdg.find_config_file("buzz.toml") {
Some(config) => config,
None => {
println!("Could not find configuration file buzz.toml");
return;
}
};
let mut f = match File::open(config) {
Ok(f) => f,
Err(e) => {
println!("Could not open configuration file buzz.toml: {}", e);
return;
}
};
let mut s = String::new();
if let Err(e) = f.read_to_string(&mut s) {
println!("Could not read configuration file buzz.toml: {}", e);
return;
}
let t = match s.parse::<toml::Value>() {
Ok(t) => t,
Err(e) => {
println!("Could not parse configuration file buzz.toml: {}", e);
return;
}
};
// Figure out what accounts we have to deal with
let accounts: Vec<_> = match t.as_table() {
Some(t) => {
t.iter()
.filter_map(|(name, v)| match v.as_table() {
2017-05-04 03:32:44 +02:00
None => {
2017-05-12 23:12:03 +02:00
println!("Configuration for account {} is broken: not a table",
name);
None
}
2017-05-04 03:32:44 +02:00
Some(t) => {
2017-05-12 23:12:03 +02:00
let pwcmd = match t.get("pwcmd").and_then(|p| p.as_str()) {
None => return None,
Some(pwcmd) => pwcmd,
};
let password =
match Command::new("sh").arg("-c").arg(pwcmd).output() {
Ok(output) => {
String::from_utf8_lossy(&output.stdout).into_owned()
}
Err(e) => {
2017-05-04 03:32:44 +02:00
println!("Failed to launch password command for {}: {}", name, e);
return None;
}
2017-05-12 23:12:03 +02:00
};
Some(Account {
name: &name,
server: (t["server"].as_str().unwrap(),
t["port"].as_integer().unwrap() as u16),
username: t["username"].as_str().unwrap(),
password: password,
})
}
2017-05-04 03:32:44 +02:00
})
2017-03-02 07:20:17 +01:00
.collect()
}
None => {
println!("Could not parse configuration file buzz.toml: not a table");
return;
}
};
if accounts.is_empty() {
println!("No accounts in config; exiting...");
return;
}
// Create a new application
let mut app = match systray::Application::new() {
Ok(app) => app,
Err(e) => {
println!("Could not create gtk application: {}", e);
return;
}
};
2017-05-04 03:32:44 +02:00
if let Err(e) = app.set_icon_from_file(&"/usr/share/icons/Faenza/stock/24/stock_disconnect.png"
.to_string()) {
2017-03-02 07:20:17 +01:00
println!("Could not set application icon: {}", e);
}
if let Err(e) = app.add_menu_item(&"Quit".to_string(), |window| { window.quit(); }) {
println!("Could not add application Quit menu option: {}", e);
}
// TODO: w.set_tooltip(&"Whatever".to_string());
// TODO: app.wait_for_message();
2017-05-04 03:32:44 +02:00
let accounts: Vec<_> = accounts
.par_iter()
2017-03-02 07:20:17 +01:00
.filter_map(|a| {
2017-03-03 04:27:23 +01:00
let mut wait = 1;
for _ in 0..5 {
2017-05-12 23:12:03 +02:00
let tls = SslConnectorBuilder::new(SslMethod::tls()).unwrap().build();
let c = Client::secure_connect(a.server, a.server.0, tls).and_then(|mut c| {
try!(c.login(a.username, &a.password));
let cap = try!(c.capability());
if !cap.iter().any(|c| c == "IDLE") {
return Err(imap::error::Error::BadResponse(cap));
}
try!(c.select("INBOX"));
Ok((String::from(a.name), c))
});
2017-03-03 04:27:23 +01:00
match c {
Ok(c) => return Some(c),
Err(imap::error::Error::Io(e)) => {
println!("Failed to connect account {}: {}; retrying in {}s",
a.name,
e,
wait);
thread::sleep(Duration::from_secs(wait));
}
Err(e) => {
println!("{} host produced bad IMAP tunnel: {}", a.name, e);
break;
}
}
wait *= 2;
}
None
2017-03-02 07:20:17 +01:00
})
.collect();
2017-03-03 04:27:23 +01:00
if accounts.is_empty() {
println!("No accounts in config worked; exiting...");
return;
}
2017-03-02 07:20:17 +01:00
// We have now connected
2017-05-04 03:32:44 +02:00
app.set_icon_from_file(&"/usr/share/icons/Faenza/stock/24/stock_connect.png".to_string())
.ok();
2017-03-02 07:20:17 +01:00
let (tx, rx) = mpsc::channel();
let mut unseen: Vec<_> = accounts.iter().map(|_| 0).collect();
for (i, (account, mut imap_socket)) in accounts.into_iter().enumerate() {
let tx = tx.clone();
thread::spawn(move || {
// Keep track of all the e-mails we have already notified about
let mut notified = HashSet::new();
loop {
// check current state of inbox
2017-05-12 23:12:58 +02:00
let mut unseen = imap_socket
2017-05-04 03:32:44 +02:00
.run_command_and_read_response("SEARCH UNSEEN")
.unwrap();
2017-03-02 07:20:17 +01:00
2017-05-12 23:12:58 +02:00
// remove last line of response (OK Completed)
unseen.pop();
2017-03-02 07:20:17 +01:00
let mut num_unseen = 0;
let mut uids = Vec::new();
2017-05-04 03:39:23 +02:00
let unseen = unseen.join(" ");
let unseen = unseen.split_whitespace().skip(2);
for uid in unseen.take_while(|&e| e != "" && e != "Completed") {
if let Ok(uid) = usize::from_str_radix(uid, 10) {
if notified.insert(uid) {
uids.push(format!("{}", uid));
2017-03-02 07:20:17 +01:00
}
2017-05-04 03:39:23 +02:00
num_unseen += 1;
2017-03-02 07:20:17 +01:00
}
}
let mut subjects = Vec::new();
2017-05-04 03:40:21 +02:00
if !uids.is_empty() {
2017-05-04 03:41:22 +02:00
let mut finish = |message: &[u8]| -> bool {
match mailparse::parse_headers(message) {
Ok((headers, _)) => {
use mailparse::MailHeaderMap;
match headers.get_first_value("Subject") {
Ok(Some(subject)) => {
subjects.push(subject);
return true;
}
Ok(None) => {
subjects.push(String::from("<no subject>"));
return true;
}
Err(e) => {
println!("failed to get message subject: {:?}", e);
}
}
2017-03-02 07:20:17 +01:00
}
2017-05-04 03:41:22 +02:00
Err(e) => println!("failed to parse headers of message: {:?}", e),
2017-03-02 07:20:17 +01:00
}
2017-05-04 03:41:22 +02:00
false
2017-03-02 07:20:17 +01:00
};
2017-05-12 23:12:03 +02:00
let lines = imap_socket.fetch(&uids.join(","), "RFC822.HEADER").unwrap();
2017-03-02 07:20:17 +01:00
let mut message = Vec::new();
2017-05-04 03:41:22 +02:00
for line in &lines {
2017-03-02 07:20:17 +01:00
if line.starts_with("* ") {
2017-05-04 03:41:22 +02:00
if !message.is_empty() {
finish(&message[..]);
message.clear();
}
2017-03-02 07:20:17 +01:00
continue;
}
2017-05-04 03:41:22 +02:00
message.extend(line.as_bytes());
2017-03-02 07:20:17 +01:00
}
finish(&message[..]);
}
if !subjects.is_empty() {
use notify_rust::{Notification, NotificationHint};
2017-03-02 07:20:17 +01:00
let title = format!("@{} has new mail ({} unseen)", account, num_unseen);
let notification = format!("> {}", subjects.join("\n> "));
Notification::new()
.summary(&title)
.body(&notification)
.icon("notification-message-email")
.hint(NotificationHint::Category("email".to_owned()))
.timeout(-1)
.show()
2017-03-02 07:20:17 +01:00
.expect("failed to launch notify-send");
}
tx.send((i, num_unseen)).unwrap();
// IDLE until we see changes
let mut idle = imap_socket.idle().unwrap();
if let Err(e) = idle.wait_keepalive() {
println!("IDLE failed: {:?}", e);
break;
}
}
imap_socket.logout().unwrap();
});
}
for (i, num_unseen) in rx {
unseen[i] = num_unseen;
if unseen.iter().sum::<usize>() == 0 {
app.set_icon_from_file(&"/usr/share/icons/oxygen/base/32x32/status/mail-unread.png"
2017-05-04 03:32:44 +02:00
.to_string())
2017-03-02 07:20:17 +01:00
.unwrap();
} else {
app.set_icon_from_file(&"/usr/share/icons/oxygen/base/32x32/status/mail-unread-new.png"
2017-05-04 03:32:44 +02:00
.to_string())
2017-03-02 07:20:17 +01:00
.unwrap();
}
}
}