prototype

This commit is contained in:
Volodymyr Patuta 2020-11-27 15:08:39 +01:00
parent 5cb392ef5d
commit 85eaf14e16
2 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,5 @@
mod notes;
fn main() { fn main() {
println!("Hello, world!"); println!("Hello, world!");
} }

35
src/notes.rs Normal file
View File

@ -0,0 +1,35 @@
use anyhow::Result;
use chrono::Utc;
use std::{env, fs, process::Command};
fn get_base_path() -> Result<String> {
let home = env::var("HOME")?;
Ok(format!("{}/.rnote/", home))
}
fn get_path(category: &str) -> Result<String> {
let base = get_base_path()?;
let date = Utc::now().format("%Y-%m-%d");
match category.is_empty() {
true => Ok(format!("{}{}", base, date)),
false => Ok(format!("{}{}", base, category)),
}
}
pub fn create_dir(category: &str) -> Result<()> {
let path = get_base_path()?;
let date = Utc::now().format("%Y-%m-%d");
match category.is_empty() {
true => fs::create_dir_all(format!("{}{}", path, date))?,
false => fs::create_dir_all(format!("{}{}", path, category))?,
}
Ok(())
}
pub fn create_note(header: &str, category: &str) -> Result<()> {
let editor = env::var("EDITOR").unwrap_or("/bin/vi".to_owned());
let path = format!("{}{}", get_path(category)?, header);
// TODO: check if duplicate
Command::new(editor).arg(&path).status()?;
Ok(())
}