buzz-ed/src/main.rs

352 lines
11 KiB
Rust
Raw Normal View History

2017-03-02 07:20:17 +01:00
extern crate imap;
extern crate mailparse;
extern crate native_tls;
extern crate notify_rust;
2017-09-26 17:00:46 +02:00
extern crate rayon;
extern crate systray;
extern crate toml;
extern crate xdg;
2017-03-02 07:20:17 +01:00
use native_tls::{TlsConnector, TlsStream};
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::process::Command;
use std::io::prelude::*;
2017-09-26 21:11:31 +02:00
use std::net::TcpStream;
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;
2017-09-26 21:11:31 +02:00
#[derive(Clone)]
struct Account {
name: String,
server: (String, u16),
username: String,
2017-03-02 07:20:17 +01:00
password: String,
}
2017-09-26 21:11:31 +02:00
impl Account {
pub fn connect(&self) -> Result<Connection<TlsStream<TcpStream>>, imap::error::Error> {
let tls = TlsConnector::builder()?.build()?;
2017-09-26 21:11:31 +02:00
Client::secure_connect((&*self.server.0, self.server.1), &self.server.0, tls).and_then(
|mut c| {
try!(c.login(&self.username, &self.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(Connection {
account: self.clone(),
socket: c,
})
},
)
}
}
struct Connection<T: Read + Write> {
account: Account,
socket: Client<T>,
}
impl<T: Read + Write + imap::client::SetReadTimeout> Connection<T> {
pub fn handle(mut self, account: usize, mut tx: mpsc::Sender<(usize, usize)>) {
loop {
if let Err(_) = self.check(account, &mut tx) {
// the connection has failed for some reason
// try to log out (we probably can't)
self.socket.logout().is_err();
break;
}
}
// try to reconnect
let mut wait = 1;
for _ in 0..5 {
println!(
"connection to {} lost; trying to reconnect...",
self.account.name
);
match self.account.connect() {
Ok(c) => {
println!("{} connection reestablished", self.account.name);
return c.handle(account, tx);
}
Err(imap::error::Error::Io(_)) => {
thread::sleep(Duration::from_secs(wait));
}
Err(_) => break,
}
wait *= 2;
}
}
fn check(
&mut self,
account: usize,
tx: &mut mpsc::Sender<(usize, usize)>,
) -> Result<(), imap::error::Error> {
// Keep track of all the e-mails we have already notified about
let mut last_notified = 0;
loop {
// check current state of inbox
let mut unseen = self.socket
.run_command_and_read_response("UID SEARCH UNSEEN 1:*")?;
// remove last line of response (OK Completed)
unseen.pop();
let mut num_unseen = 0;
let mut uids = Vec::new();
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 uid > last_notified {
last_notified = uid;
uids.push(format!("{}", uid));
}
num_unseen += 1;
}
}
let mut subjects = Vec::new();
if !uids.is_empty() {
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);
}
}
}
Err(e) => println!("failed to parse headers of message: {:?}", e),
}
false
};
let lines = self.socket.uid_fetch(&uids.join(","), "RFC822.HEADER")?;
let mut message = Vec::new();
for line in &lines {
if line.starts_with("* ") {
if !message.is_empty() {
finish(&message[..]);
message.clear();
}
continue;
}
message.extend(line.as_bytes());
}
finish(&message[..]);
}
if !subjects.is_empty() {
use notify_rust::{Notification, NotificationHint};
let title = format!(
"@{} has new mail ({} unseen)",
self.account.name,
num_unseen
);
let notification = format!("> {}", subjects.join("\n> "));
println!("! {}", title);
println!("{}", notification);
Notification::new()
.summary(&title)
.body(&notification)
.icon("notification-message-email")
.hint(NotificationHint::Category("email".to_owned()))
.timeout(-1)
.show()
.expect("failed to launch notify-send");
}
tx.send((account, num_unseen)).unwrap();
// IDLE until we see changes
2017-09-30 22:00:36 +02:00
self.socket.idle()?.wait_keepalive()?;
2017-09-26 21:11:31 +02:00
}
}
}
2017-03-02 07:20:17 +01:00
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;
}
};
2017-05-12 23:16:21 +02:00
let config = {
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);
2017-03-02 07:20:17 +01:00
return;
}
2017-05-12 23:16:21 +02:00
match s.parse::<toml::Value>() {
Ok(t) => t,
Err(e) => {
println!("Could not parse configuration file buzz.toml: {}", e);
return;
}
2017-03-02 07:20:17 +01:00
}
};
// Figure out what accounts we have to deal with
2017-05-12 23:16:21 +02:00
let accounts: Vec<_> = match config.as_table() {
2017-07-13 03:40:28 +02:00
Some(t) => t.iter()
.filter_map(|(name, v)| match v.as_table() {
None => {
println!("Configuration for account {} is broken: not a table", name);
None
}
Some(t) => {
let pwcmd = match t.get("pwcmd").and_then(|p| p.as_str()) {
None => return None,
Some(pwcmd) => pwcmd,
};
2017-05-12 23:12:03 +02:00
2017-07-13 03:40:28 +02:00
let password = match Command::new("sh").arg("-c").arg(pwcmd).output() {
Ok(output) => String::from_utf8_lossy(&output.stdout).into_owned(),
Err(e) => {
println!("Failed to launch password command for {}: {}", name, e);
return None;
}
};
2017-05-12 23:12:03 +02:00
2017-07-13 03:40:28 +02:00
Some(Account {
2017-09-26 21:11:31 +02:00
name: name.as_str().to_owned(),
2017-07-13 03:40:28 +02:00
server: (
2017-09-26 21:11:31 +02:00
t["server"].as_str().unwrap().to_owned(),
2017-07-13 03:40:28 +02:00
t["port"].as_integer().unwrap() as u16,
),
2017-09-26 21:11:31 +02:00
username: t["username"].as_str().unwrap().to_owned(),
2017-07-13 03:40:28 +02:00
password: password,
})
}
})
.collect(),
2017-03-02 07:20:17 +01:00
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-09-26 17:00:46 +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);
}
2017-09-26 17:00:46 +02:00
if let Err(e) = app.add_menu_item(&"Quit".to_string(), |window| {
window.quit();
}) {
2017-03-02 07:20:17 +01:00
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-05-12 23:16:21 +02:00
.filter_map(|account| {
2017-03-03 04:27:23 +01:00
let mut wait = 1;
for _ in 0..5 {
2017-09-26 21:11:31 +02:00
match account.connect() {
2017-03-03 04:27:23 +01:00
Ok(c) => return Some(c),
Err(imap::error::Error::Io(e)) => {
2017-07-06 01:30:25 +02:00
println!(
"Failed to connect account {}: {}; retrying in {}s",
account.name,
e,
wait
);
2017-03-03 04:27:23 +01:00
thread::sleep(Duration::from_secs(wait));
}
Err(e) => {
2017-05-12 23:16:21 +02:00
println!("{} host produced bad IMAP tunnel: {}", account.name, e);
2017-03-03 04:27:23 +01:00
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-07-06 01:30:25 +02:00
app.set_icon_from_file(&"/usr/share/icons/Faenza/stock/24/stock_connect.png"
.to_string())
2017-05-04 03:32:44 +02:00
.ok();
2017-03-02 07:20:17 +01:00
let (tx, rx) = mpsc::channel();
let mut unseen: Vec<_> = accounts.iter().map(|_| 0).collect();
2017-09-26 21:11:31 +02:00
for (i, conn) in accounts.into_iter().enumerate() {
2017-03-02 07:20:17 +01:00
let tx = tx.clone();
thread::spawn(move || {
2017-09-26 21:11:31 +02:00
conn.handle(i, tx);
2017-03-02 07:20:17 +01:00
});
}
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-07-06 01:30:25 +02:00
.to_string())
2017-03-02 07:20:17 +01:00
.unwrap();
} else {
2017-07-06 01:30:25 +02:00
app.set_icon_from_file(
&"/usr/share/icons/oxygen/base/32x32/status/mail-unread-new.png".to_string(),
).unwrap();
2017-03-02 07:20:17 +01:00
}
}
}