buzz-ed/src/main.rs

258 lines
8.2 KiB
Rust
Raw Normal View History

2019-02-13 20:16:29 +01:00
extern crate chrono;
2017-03-02 07:20:17 +01:00
extern crate imap;
extern crate mailparse;
extern crate native_tls;
2017-09-26 17:00:46 +02:00
extern crate rayon;
extern crate toml;
extern crate xdg;
2017-03-02 07:20:17 +01:00
2018-05-06 21:34:32 +02:00
use native_tls::{TlsConnector, TlsStream};
2017-03-03 04:27:23 +01:00
use rayon::prelude::*;
2017-03-02 07:20:17 +01:00
2018-05-06 21:34:32 +02:00
use std::fs::File;
2017-03-02 07:20:17 +01:00
use std::io::prelude::*;
2017-09-26 21:11:31 +02:00
use std::net::TcpStream;
2018-05-06 21:34:32 +02:00
use std::process::Command;
2017-03-02 07:20:17 +01:00
use std::sync::mpsc;
use std::thread;
2018-05-06 21:34:32 +02:00
use std::time::Duration;
use std::io::Write;
2017-03-02 07:20:17 +01:00
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> {
2018-09-18 17:14:59 +02:00
let tls = TlsConnector::builder().build()?;
2018-11-23 05:51:08 +01:00
imap::connect((&*self.server.0, self.server.1), &self.server.0, &tls).and_then(|c| {
let mut c = try!(
c.login(self.username.trim(), self.password.trim())
.map_err(|(e, _)| e)
);
2018-11-23 05:51:08 +01:00
let cap = try!(c.capabilities());
if !cap.iter().any(|&c| c == "IDLE") {
return Err(imap::error::Error::Bad(cap.iter().cloned().collect()));
}
try!(c.select("INBOX"));
Ok(Connection {
account: self.clone(),
socket: c,
2018-09-18 17:14:59 +02:00
})
2018-11-23 05:51:08 +01:00
})
2017-09-26 21:11:31 +02:00
}
}
struct Connection<T: Read + Write> {
account: Account,
2018-11-23 05:51:08 +01:00
socket: imap::Session<T>,
2017-09-26 21:11:31 +02:00
}
2018-11-23 05:51:08 +01:00
impl<T: Read + Write + imap::extensions::idle::SetReadTimeout> Connection<T> {
2017-09-26 21:11:31 +02:00
pub fn handle(mut self, account: usize, mut tx: mpsc::Sender<(usize, usize)>) {
loop {
2019-02-24 23:45:47 +01:00
if let Err(e) = self.check(account, &mut tx) {
2017-09-26 21:11:31 +02:00
// the connection has failed for some reason
// try to log out (we probably can't)
2019-02-24 23:45:47 +01:00
eprintln!("connection to {} failed: {:?}", self.account.name, e);
2017-09-26 21:11:31 +02:00
break;
}
}
// try to reconnect
let mut wait = 1;
for _ in 0..5 {
2019-02-24 23:45:47 +01:00
eprintln!(
2017-09-26 21:11:31 +02:00
"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);
}
2019-02-24 23:45:47 +01:00
Err(e) => {
eprintln!("failed to connect to {}: {:?}", self.account.name, e);
2017-09-26 21:11:31 +02:00
thread::sleep(Duration::from_secs(wait));
}
}
wait *= 2;
2019-11-24 08:29:40 +01:00
println!("waittime: {}", wait);
2017-09-26 21:11:31 +02:00
}
}
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
2019-02-19 18:18:58 +01:00
let mut uids = self.socket.uid_search("UNSEEN 1:*")?;
let num_unseen = uids.len();
if uids.iter().all(|&uid| uid <= last_notified) {
// there are no messages we haven't already notified about
uids.clear();
2017-09-26 21:11:31 +02:00
}
2019-02-19 18:18:58 +01:00
last_notified = std::cmp::max(last_notified, uids.iter().cloned().max().unwrap_or(0));
2017-09-26 21:11:31 +02:00
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/buzz.toml") {
2017-03-02 07:20:17 +01:00
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() {
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,
};
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;
}
};
Some(Account {
name: name.as_str().to_owned(),
server: (
t["server"].as_str().unwrap().to_owned(),
t["port"].as_integer().unwrap() as u16,
),
username: t["username"].as_str().unwrap().to_owned(),
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;
}
// 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-07-06 01:30:25 +02:00
);
2017-03-03 04:27:23 +01:00
thread::sleep(Duration::from_secs(wait));
}
Err(e) => {
2018-05-06 21:34:32 +02:00
println!("{} host produced bad IMAP tunnel: {:?}", account.name, e);
2017-03-03 04:27:23 +01:00
break;
}
}
wait *= 2;
}
None
2018-10-05 20:54:26 +02:00
})
.collect();
2017-03-02 07:20:17 +01:00
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
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 || { conn.handle(i, tx); });
2017-03-02 07:20:17 +01:00
}
for (i, num_unseen) in rx {
unseen[i] = num_unseen;
let output_path = ::std::env::args().nth(1).unwrap();
let commands = ::std::env::args().nth(2).unwrap();
2019-12-19 19:17:28 +01:00
let the_output = Command::new("sh").arg("-c").arg(&commands).output()
.ok().expect("Failed to execute.");
let mut file = std::fs::File::create(&output_path).expect("create failed");
file.write_all(num_unseen.to_string().as_bytes()).expect(
"write failed",
);
2017-03-02 07:20:17 +01:00
}
}