Compare commits

..

No commits in common. "main" and "v0.0.0" have entirely different histories.
main ... v0.0.0

3 changed files with 21 additions and 114 deletions

View File

@ -1,35 +0,0 @@
A silly little CLI note app
[Downloads under Releases](https://git.maidsin.space/catto/snotes/releases)
# Usage
```
Usage: snotes [OPTIONS]
Options:
-c, --create <CREATE> Create a new note: --create "Hello World" [default: ]
-s, --show Show the latest entries
--showall Show all entries
-t, --tag <TAG> Append or show entries with tag [default: ]
-d, --delete Delete the latest entry
-h, --help Print help
-V, --version Print version
```
# Demo
![demo gif](media/demo.gif)
# Building (Linux)
- Clone this repo `git clone "https://git.maidsin.space/catto/snotes.git"`
- [Install Rust](https://www.rust-lang.org/learn/get-started)
- run `carog build --release` in the root of the project
- You now have a working `snotes` binary file under `target/release`
Windows Builds might be a bit more involved since this dependency builds and bundles sqlite3 [https://github.com/rusqlite/rusqlite](https://github.com/rusqlite/rusqlite)
# Installation
You could copy the `snotes` binary into a `/usr/bin` or `~/.local/bin` folder, one that's part of your system PATH so you can run it anywhere.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 KiB

View File

@ -3,24 +3,20 @@ use clap::Parser;
use home::home_dir;
use rusqlite::{Connection, Result};
/// Simple program to greet a person
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
struct Args {
/// Create a new note: --create "Hello World"
// Quickly throw in a note
#[arg(short, long, default_value_t = String::new())]
create: String,
/// Show the latest entries
// Number of times to greet
//#[arg(short, long, default_value_t = 1)]
//count: u8,
#[arg(short, long, default_value_t = false)]
show: bool,
/// Show all entries
#[arg(long, default_value_t = false)]
showall: bool,
/// Append or show entries with tag
#[arg(short, long, default_value_t = String::new())]
tag: String,
/// Delete the latest entry
#[arg(short, long, default_value_t = false)]
delete: bool,
}
struct Note {
@ -32,54 +28,27 @@ struct Note {
fn main() {
let args = Args::parse();
//for _ in 0..args.count {
// println!("Hello {}!", args.name)
//}
match init_db() {
Ok(_) => (),
Ok(_) => println!(),
Err(e) => println!("Failed to initialize DB: {}", e),
};
if args.show {
match show_notes(false, &args.tag) {
Ok(_) => (),
match show_notes() {
Ok(_) => println!(),
Err(e) => println!("Failed to show DB: {}", e),
}
return;
}
if args.create != String::new() {
match create_note(&args.create, &args.tag) {
Ok(_) => (),
match create_note(args.create, args.tag) {
Ok(_) => println!(),
Err(e) => println!("Failed to throw into DB: {}", e),
}
return;
}
if args.showall {
match show_notes(true, &args.tag) {
Ok(_) => (),
Err(e) => println!("Failed to show DB: {}", e),
}
return;
}
if args.tag != String::new() && args.create == String::new() {
match show_notes(true, &args.tag) {
Ok(_) => (),
Err(e) => println!("Failed to show DB: {}", e),
}
return;
}
if args.delete {
match delete_latest_note() {
Ok(_) => (),
Err(e) => println!("Failed to delete: {}", e),
}
return;
}
match show_notes(false, &args.tag) {
Ok(_) => println!(),
Err(e) => println!("Failed to show DB: {}", e),
}
}
@ -97,27 +66,22 @@ fn init_db() -> Result<()> {
";
match connection.execute(query_table, []) {
Ok(_) => (),
Ok(v) => println!("INIT OK {}", v),
Err(e) => println!("INIT ERR {}", e),
};
Ok(())
}
fn create_note(content: &String, tag: &String) -> Result<()> {
fn create_note(content: String, tag: String) -> Result<()> {
let home = home_dir().unwrap().join(".snotes.db");
let connection = Connection::open(home)?;
let date = Local::now();
let date_string = date.format("%m-%d-%y %H:%M").to_string();
let tag_string = if *tag == String::new() {
String::from("quick")
} else {
tag.to_string()
};
let date_string = date.format("%m-%d %H:%M").to_string();
let query_insert = "INSERT INTO notes (content, date, tag) VALUES (?1, ?2, ?3)";
match connection.execute(query_insert, [&content, &date_string, &tag_string]) {
match connection.execute(query_insert, [&content, &date_string, &tag]) {
Ok(v) => println!("CREATE OK {}", v),
Err(e) => println!("CREATE ERR {}", e),
};
@ -125,21 +89,13 @@ fn create_note(content: &String, tag: &String) -> Result<()> {
Ok(())
}
fn show_notes(all: bool, tag: &String) -> Result<()> {
fn show_notes() -> Result<()> {
let home = home_dir().unwrap().join(".snotes.db");
let connection = Connection::open(home)?;
let mut query = String::from("SELECT * FROM notes LIMIT 10");
let query_latest_10 = "SELECT * FROM notes LIMIT 10";
if all {
query = String::from("SELECT * FROM notes");
}
if tag != &String::new() {
query = format!("SELECT * FROM notes WHERE tag IS '{}'", tag);
}
let mut prepare = connection.prepare(&query)?;
let mut prepare = connection.prepare(query_latest_10)?;
let notes = prepare.query_map([], |row| {
Ok(Note {
@ -158,17 +114,3 @@ fn show_notes(all: bool, tag: &String) -> Result<()> {
}
Ok(())
}
fn delete_latest_note() -> Result<()> {
let home = home_dir().unwrap().join(".snotes.db");
let connection = Connection::open(home)?;
let query = String::from("DELETE FROM NOTES WHERE nid = (SELECT MAX(nid) FROM notes)");
match connection.execute(&query, []) {
Ok(v) => println!("DELETE OK {}", v),
Err(e) => println!("DELETE ERR {}", e),
}
Ok(())
}