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

63 lines
2 KiB
Rust
Raw Normal View History

2023-04-14 01:05:27 +02:00
use chrono::Utc;
2023-04-13 22:00:33 +02:00
use crate::errors::Error;
2023-04-13 18:56:32 +02:00
use crate::management::{delete_key, Action, Pending};
2023-04-14 00:52:54 +02:00
use crate::pending_path;
use crate::settings::SETTINGS;
2023-04-13 18:56:32 +02:00
use crate::utils::{get_email_from_cert, parse_pem};
use std::fs;
use std::path::Path;
2023-04-13 22:00:33 +02:00
pub fn confirm_action(token: &str) -> Result<(), Error> {
2023-04-13 18:56:32 +02:00
let pending_path = pending_path!().join(token);
2023-04-13 22:55:05 +02:00
let content = if pending_path.is_file() {
2023-04-13 22:00:33 +02:00
match fs::read_to_string(&pending_path) {
2023-04-13 22:26:41 +02:00
Ok(content) => content,
2023-04-13 22:00:33 +02:00
Err(_) => return Err(Error::Inaccessible),
}
} else {
2023-04-13 23:32:12 +02:00
return Err(Error::MissingPending);
2023-04-13 22:00:33 +02:00
};
2023-04-13 22:26:41 +02:00
let key = match serde_json::from_str::<Pending>(&content) {
2023-04-13 22:00:33 +02:00
Ok(key) => key,
2023-04-13 23:32:12 +02:00
Err(_) => return Err(Error::DeserializeData),
2023-04-13 22:00:33 +02:00
};
2023-04-14 01:05:27 +02:00
if Utc::now().timestamp() - key.timestamp() > SETTINGS.max_age {
match fs::remove_file(pending_path) {
Ok(_) => Err(Error::MissingPending),
Err(_) => Err(Error::Inaccessible),
}
} else {
match key.action() {
Action::Add => {
let cert = parse_pem(key.data())?;
let domain = match get_email_from_cert(&cert)?.split('@').last() {
Some(domain) => domain.to_string(),
None => return Err(Error::ParseEmail),
};
match sequoia_net::wkd::insert(
&SETTINGS.folder_structure.root_folder,
domain,
SETTINGS.variant,
&cert,
) {
Ok(_) => (),
Err(_) => return Err(Error::AddingKey),
}
2023-04-13 22:00:33 +02:00
}
2023-04-14 01:05:27 +02:00
Action::Delete => delete_key(key.data())?,
}
match fs::remove_file(&pending_path) {
Ok(_) => Ok(()),
Err(_) => Err(Error::Inaccessible),
2023-04-13 18:56:32 +02:00
}
}
}
2023-04-13 22:00:33 +02:00
pub fn send_confirmation_email(email: &str, action: &Action, token: &str) {
println!("Email sent to {email}");
println!("Action: {action:?}");
println!("Token: {token}");
2023-04-13 18:56:32 +02:00
}