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

102 lines
2.5 KiB
Rust
Raw Normal View History

2023-04-14 00:52:54 +02:00
use crate::pending_path;
2023-04-16 13:58:52 +02:00
use crate::settings::ROOT_FOLDER;
use crate::utils::{get_user_file_path, key_exists, read_file};
2023-04-13 18:56:32 +02:00
use anyhow::Result;
2023-04-13 18:56:32 +02:00
use chrono::Utc;
use serde::{Deserialize, Serialize};
2023-04-14 12:18:49 +02:00
use std::{fmt::Display, fs, path::Path};
2023-04-13 18:56:32 +02:00
2023-04-14 18:55:17 +02:00
#[derive(Serialize, Deserialize, Debug, Clone, Copy)]
2023-04-13 18:56:32 +02:00
pub enum Action {
Add,
Delete,
}
2023-04-14 12:18:49 +02:00
impl Display for Action {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{self:?}")
}
}
2023-04-13 18:56:32 +02:00
#[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
}
}
fn store_pending(pending: &Pending, token: &str) -> Result<()> {
let serialized = toml::to_string(pending)?;
fs::write(pending_path!().join(token), serialized)?;
Ok(())
2023-04-13 18:56:32 +02:00
}
pub fn store_pending_addition(pem: String, _email: &str, token: &str) -> Result<()> {
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
}
pub fn store_pending_deletion(email: String, token: &str) -> Result<()> {
key_exists(&email)?;
let pending = Pending::build_delete(email);
2023-04-13 22:26:41 +02:00
store_pending(&pending, token)?;
2023-04-13 22:00:33 +02:00
Ok(())
2023-04-13 18:56:32 +02:00
}
2023-04-14 18:55:17 +02:00
pub fn clean_stale(max_age: i64) {
2023-04-13 22:00:33 +02:00
for path in fs::read_dir(pending_path!()).unwrap().flatten() {
let file_path = path.path();
let content = match read_file(&file_path) {
Ok(content) => content,
Err(_) => {
continue;
2023-04-13 22:00:33 +02:00
}
};
let key = match toml::from_str::<Pending>(&content) {
Ok(key) => key,
Err(_) => {
continue;
}
};
let now = Utc::now().timestamp();
if now - key.timestamp() > max_age {
let _ = fs::remove_file(&file_path);
2023-04-13 18:56:32 +02:00
}
}
}
pub fn delete_key(email: &str) -> Result<()> {
2023-04-16 13:58:52 +02:00
let path = Path::new(&ROOT_FOLDER).join(get_user_file_path(email)?);
fs::remove_file(path)?;
Ok(())
2023-04-13 18:56:32 +02:00
}