0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-10-30 19:05:53 +01:00
simple-wkd/src/management.rs

104 lines
2.8 KiB
Rust
Raw Normal View History

2023-04-13 22:00:33 +02:00
use crate::errors::Error;
2023-04-13 18:56:32 +02:00
use crate::utils::get_user_file_path;
use crate::PENDING;
use crate::{pending_path, PATH};
use chrono::Utc;
use serde::{Deserialize, Serialize};
use std::{fs, path::Path};
#[derive(Serialize, Deserialize, Debug)]
pub enum Action {
Add,
Delete,
}
#[derive(Serialize, Deserialize, Debug)]
pub struct Pending {
action: Action,
data: String,
timestamp: i64,
}
impl Pending {
2023-04-13 22:00:33 +02:00
pub fn build_add(pem: String) -> Self {
2023-04-13 18:56:32 +02:00
let timestamp = Utc::now().timestamp();
2023-04-13 22:00:33 +02:00
Self {
2023-04-13 18:56:32 +02:00
action: Action::Add,
data: pem,
timestamp,
}
}
2023-04-13 22:00:33 +02:00
pub fn build_delete(email: String) -> Self {
2023-04-13 18:56:32 +02:00
let timestamp = Utc::now().timestamp();
2023-04-13 22:00:33 +02:00
Self {
2023-04-13 18:56:32 +02:00
action: Action::Delete,
data: email,
timestamp,
}
}
2023-04-13 22:00:33 +02:00
pub const fn action(&self) -> &Action {
2023-04-13 18:56:32 +02:00
&self.action
}
pub fn data(&self) -> &str {
&self.data
}
2023-04-13 22:00:33 +02:00
pub const fn timestamp(&self) -> i64 {
2023-04-13 18:56:32 +02:00
self.timestamp
}
}
2023-04-13 22:00:33 +02:00
fn store_pending(pending: &Pending, token: &str) -> Result<(), Error> {
2023-04-13 22:26:41 +02:00
let serialized = match serde_json::to_string(pending) {
Ok(serialized) => serialized,
Err(_) => return Err(Error::SerializeData),
};
match fs::write(pending_path!().join(token), serialized) {
Ok(_) => Ok(()),
Err(_) => Err(Error::Inaccessible),
2023-04-13 22:00:33 +02:00
}
2023-04-13 18:56:32 +02:00
}
2023-04-13 22:00:33 +02:00
pub fn store_pending_addition(pem: String, token: &str) -> Result<(), Error> {
2023-04-13 22:26:41 +02:00
let pending = Pending::build_add(pem);
store_pending(&pending, token)?;
2023-04-13 22:00:33 +02:00
Ok(())
2023-04-13 18:56:32 +02:00
}
2023-04-13 22:00:33 +02:00
pub fn store_pending_deletion(email: String, token: &str) -> Result<(), Error> {
2023-04-13 22:26:41 +02:00
let pending = Pending::build_delete(email);
store_pending(&pending, token)?;
2023-04-13 22:00:33 +02:00
Ok(())
2023-04-13 18:56:32 +02:00
}
2023-04-13 22:00:33 +02:00
pub fn clean_stale(max_age: i64) -> Result<(), Error> {
for path in fs::read_dir(pending_path!()).unwrap().flatten() {
let file_path = path.path();
2023-04-13 22:55:05 +02:00
if file_path.is_file() {
2023-04-13 22:26:41 +02:00
let content = match fs::read_to_string(&file_path) {
Ok(content) => content,
2023-04-13 22:00:33 +02:00
Err(_) => return Err(Error::Inaccessible),
2023-04-13 22:26:41 +02:00
};
let key = match serde_json::from_str::<Pending>(&content) {
Ok(key) => key,
Err(_) => return Err(Error::DeserializeData),
};
let now = Utc::now().timestamp();
if now - key.timestamp() > max_age {
2023-04-13 23:51:09 +02:00
let err = fs::remove_file(&file_path).is_err();
if err {
2023-04-13 22:26:41 +02:00
return Err(Error::Inaccessible);
}
2023-04-13 22:00:33 +02:00
}
2023-04-13 18:56:32 +02:00
}
}
2023-04-13 22:00:33 +02:00
Ok(())
2023-04-13 18:56:32 +02:00
}
2023-04-13 22:00:33 +02:00
pub fn delete_key(email: &str) -> Result<(), Error> {
let path = Path::new(PATH).join(get_user_file_path(email)?);
match fs::remove_file(path) {
Ok(_) => Ok(()),
Err(_) => Err(Error::Inaccessible),
}
2023-04-13 18:56:32 +02:00
}