memo-cli/src/main.rs

123 lines
3.1 KiB
Rust
Raw Normal View History

mod storage;
mod utils;
use chrono::{DateTime, Utc, Local};
use clap::{Parser, Subcommand};
use regex::Regex;
pub use storage::{open_sqlite_storage, Memo, MemoStorage};
use utils::{parse_human_duration, HumanDisplay};
#[derive(Parser)]
#[clap(author, version, about, long_about = None)]
#[clap(disable_colored_help = true)]
#[clap(subcommand_required = false)]
#[clap(disable_help_subcommand = true)]
struct Cli {
#[clap(subcommand)]
command: Option<Commands>,
#[clap(short, long, help = "show memos in a notification")]
notify: bool,
#[clap(long, help = "show completed tasks")]
old: bool,
#[clap(short, long, help = "location for database file")]
db_path: Option<String>,
2022-03-13 20:13:13 +01:00
}
#[derive(Subcommand)]
enum Commands {
#[clap(trailing_var_arg = true)]
New {
#[clap(multiple_values = true)]
#[clap(min_values = 1)]
#[clap(required = true)]
body: Vec<String>,
#[clap(short, long, help = "due time relative to now")]
due: Option<String>, // TODO allow to pass date
},
Done {
search: String,
#[clap(long, help = "delete more than one task if matched")]
many: bool,
}
2022-03-13 20:13:13 +01:00
}
fn main() {
let args = Cli::parse();
2022-03-13 20:13:13 +01:00
let home_path = std::env!("HOME").to_string();
let mut db_path: String = home_path + "/.local/share/memo-cli.db";
if let Some(db) = args.db_path {
db_path = db;
2022-03-13 20:13:13 +01:00
}
let storage = open_sqlite_storage(&db_path).unwrap();
2022-03-13 20:13:13 +01:00
match args.command {
Some(Commands::New { body, due }) => {
let mut due_date: Option<DateTime<Utc>> = None;
if let Some(d) = due {
if d.len() > 0 {
due_date = Some(Utc::now() + parse_human_duration(d.as_str()).unwrap());
}
}
let txt = body.join(" ");
storage.add(txt.as_str(), due_date).unwrap();
2022-03-14 03:49:35 +01:00
println!("[+] new memo: {}", txt);
}
Some(Commands::Done { search, many }) => {
let rex = Regex::new(search.as_str());
let mut found = false;
let mut to_remove: Option<Memo> = None;
if let Some(re) = rex.ok() {
for memo in storage.all(false).unwrap() {
if re.is_match(memo.body.as_str()) {
if many {
storage.del(memo.id).unwrap();
println!("[-] task #{} done", memo.id);
} else if found {
println!("[!] would remove multiple tasks");
to_remove = None;
break;
} else {
to_remove = Some(memo);
found = true;
}
}
}
if let Some(rm) = to_remove {
storage.del(rm.id).unwrap();
println!("[-] task #{} done", rm.id);
}
2022-03-13 20:13:13 +01:00
} else {
println!("[!] invalid regex");
}
}
None => {
let all = storage.all(args.old).unwrap();
let mut builder = String::new();
if args.old {
builder.push_str("Archived memos:\n");
}
2022-03-14 03:49:35 +01:00
if all.len() < 1 {
builder.push_str("[ ] nothing to remember\n");
2022-03-14 03:49:35 +01:00
}
for m in all {
builder.push_str(m.human().as_str());
builder.push('\n');
}
if args.notify {
libnotify::init("memo-cli").unwrap();
let n = libnotify::Notification::new(
format!("memo-cli | {}", Local::now().format("%a %d/%m, %H:%M")).as_str(),
Some(builder.as_str()),
None
);
n.show().unwrap();
libnotify::uninit();
} else {
print!("{}", builder);
2022-03-13 20:13:13 +01:00
}
}
}
}