A small tool for storing passwords locally with git sync
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

198 lines
5.4 KiB

use base64::prelude::*;
7 months ago
use once_cell::sync::Lazy;
7 months ago
use std::collections::HashSet;
7 months ago
use std::hash::{Hash, Hasher};
7 months ago
7 months ago
use std::fs;
7 months ago
use std::path::Path;
7 months ago
use std::io::{self, Write, BufRead};
7 months ago
use std::fmt;
use std::cmp::{PartialEq, Ordering};
7 months ago
7 months ago
static STORAGE_FOLDER: Lazy<String> = Lazy::new(|| "storage".to_string() );
7 months ago
static STORAGE_PATH: Lazy<String> = Lazy::new(|| {
7 months ago
format!("{}/db.mps", &*STORAGE_FOLDER)
7 months ago
});
7 months ago
static PASSWORD_TEST_SALT: &str = "MyPasswordStorage1234567890";
7 months ago
pub struct Item {
pub id: String,
pub content: String
}
impl Item {
7 months ago
pub fn from(s: String, c: String) -> Item {
Item { id: s, content: c }
}
// used only to search in HashSet
pub fn from_empty(s: String) -> Item {
Item { id: s, content: String::from("") }
7 months ago
}
}
7 months ago
impl PartialEq for Item {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
}
}
impl Eq for Item {}
impl Hash for Item {
fn hash<H: Hasher>(&self, state: &mut H) {
self.id.hash(state);
}
}
7 months ago
impl fmt::Display for Item {
7 months ago
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
7 months ago
writeln!(f, "{}", self.id)?;
writeln!(f, "---------")?;
writeln!(f, "{}", self.content)
}
}
impl PartialOrd for Item {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.id.partial_cmp(&other.id)
7 months ago
}
}
impl Ord for Item {
fn cmp(&self, other: &Self) -> Ordering {
self.id.cmp(&other.id)
}
}
struct Encoder {
7 months ago
passphrase: String
}
impl Encoder {
7 months ago
pub fn from(passphrase: String) -> Encoder {
Encoder { passphrase }
}
// TODO: get by ref
pub fn encode(&self, line: String) -> String {
7 months ago
// TODO: use passphrasee to encode
BASE64_STANDARD.encode(line)
}
// TODO: review error type
pub fn decode(&self, line: String) -> io::Result<String> {
let content = BASE64_STANDARD.decode(line).map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
match String::from_utf8(content) {
Ok(s) => Ok(s),
Err(e) => Err(io::Error::new(io::ErrorKind::InvalidData, e))
}
}
7 months ago
pub fn get_encoded_test_passphrase(&self) -> String {
// TODO: encode SALT const with passphrase
self.passphrase.clone()
}
}
7 months ago
pub struct Storage {
7 months ago
pub items: HashSet::<Item>,
encoder: Encoder
7 months ago
}
7 months ago
impl Storage {
7 months ago
pub fn new(passphrase: String) -> Storage {
Storage {
items: HashSet::<Item>::new(),
encoder: Encoder::from(passphrase)
}
}
pub fn from_db(passphrase: String) -> io::Result<Storage> {
let encoder = Encoder::from(passphrase);
// TODO: throw error is password is incorrect
7 months ago
let file = fs::File::open(&*STORAGE_PATH)?;
7 months ago
let reader = io::BufReader::new(file);
let mut items = HashSet::<Item>::new();
let mut id: Option<String> = None;
7 months ago
let mut lines = reader.lines();
// TODO: uncomment when innit saving implemented
let passtest = match lines.next() {
Some(line) => line?,
None => return Err(io::Error::new(io::ErrorKind::InvalidData, "Bad storage db format: no passphrase in the beginnning")),
};
println!("pass: {}", passtest);
for line in lines {
7 months ago
match line {
Ok(line) => {
if id.is_none() {
id = Some(line);
} else {
let content = encoder.decode(line)?;
items.insert(Item::from(id.unwrap(), content));
id = None;
}
7 months ago
},
Err(e) => {
eprintln!("Error reading line, {}", e);
7 months ago
}
}
}
7 months ago
Ok(Storage {
7 months ago
items: items,
encoder: encoder
7 months ago
})
7 months ago
}
7 months ago
pub fn init(passphrase: String) -> io::Result<()> {
7 months ago
fs::create_dir(&*STORAGE_FOLDER)?;
7 months ago
println!("Storage folder created");
//let mut db = DB::init(&*STORAGE_PATH, pass)?;
fs::File::create(&*STORAGE_PATH)?;
println!("Storage db created.");
7 months ago
let st = Storage::new(passphrase);
st.dump()?;
7 months ago
println!("Initialization complete.");
println!("");
7 months ago
println!("Now it's required to add folder `{}` under git manually.", &*STORAGE_FOLDER);
7 months ago
println!("Don't worry it's going to be encrypted.");
7 months ago
Ok(())
}
7 months ago
7 months ago
pub fn print_init_hint() {
println!("mps can work only when storage inited.");
println!("Hint: you can restore your storage if you have it already:");
println!(" git clone <your_storage_git_url> {}", &*STORAGE_FOLDER);
println!("to init manually your storage and config")
7 months ago
}
pub fn is_inited() -> bool {
7 months ago
let path = Path::new(&*STORAGE_FOLDER);
7 months ago
return path.exists();
}
pub fn contains(&self, id: &String) -> bool {
let item = Item::from_empty(id.clone());
self.items.contains(&item)
}
7 months ago
pub fn dump(&self) -> io::Result<()> {
7 months ago
let mut file = fs::OpenOptions::new()
.write(true)
.append(false)
7 months ago
.open(&*STORAGE_PATH)?;
7 months ago
writeln!(file, "{}", self.encoder.get_encoded_test_passphrase())?;
7 months ago
for item in self.items.iter() {
writeln!(file, "{}", item.id)?;
let content = self.encoder.encode(item.content.clone());
writeln!(file, "{}", content)?;
7 months ago
}
Ok(())
}
7 months ago
}
7 months ago