2022-05-03 16:28:43 -04:00
|
|
|
use std::{
|
|
|
|
io::ErrorKind,
|
2022-08-16 06:16:00 -04:00
|
|
|
ops::DerefMut,
|
|
|
|
path::{Path, PathBuf},
|
2022-05-03 16:28:43 -04:00
|
|
|
};
|
2022-04-28 05:13:14 -04:00
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
use log::{debug, error, info};
|
2022-05-01 05:28:50 -04:00
|
|
|
use rand::{
|
|
|
|
distributions::{Alphanumeric, DistString},
|
|
|
|
thread_rng, Rng,
|
|
|
|
};
|
2022-04-30 01:38:26 -04:00
|
|
|
use time::OffsetDateTime;
|
2022-08-16 04:54:18 -04:00
|
|
|
use tokio::fs::File;
|
2022-04-28 05:13:14 -04:00
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
const MAX_STORAGE_FILES: usize = 1024;
|
|
|
|
|
|
|
|
pub fn gen_storage_code(use_mnemonic: bool) -> String {
|
|
|
|
if use_mnemonic {
|
2022-05-01 03:28:25 -04:00
|
|
|
mnemonic::to_string(thread_rng().gen::<[u8; 4]>())
|
2022-05-03 16:28:43 -04:00
|
|
|
} else {
|
|
|
|
Alphanumeric.sample_string(&mut thread_rng(), 8)
|
2022-05-01 03:28:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_valid_storage_code(s: &str) -> bool {
|
2022-05-01 05:28:50 -04:00
|
|
|
s.as_bytes()
|
|
|
|
.iter()
|
|
|
|
.all(|c| c.is_ascii_alphanumeric() || c == &b'-')
|
2022-05-01 03:28:25 -04:00
|
|
|
}
|
2022-04-30 01:38:26 -04:00
|
|
|
|
2022-08-16 06:16:00 -04:00
|
|
|
pub use crate::state::v1::{StoredFile, StoredFiles};
|
2022-08-16 04:54:18 -04:00
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
async fn is_valid_entry(key: &str, info: &StoredFile, storage_dir: &Path) -> bool {
|
2022-04-30 01:38:26 -04:00
|
|
|
if info.expiry < OffsetDateTime::now_utc() {
|
|
|
|
info!("File {} has expired", key);
|
2022-04-28 06:26:44 -04:00
|
|
|
return false;
|
|
|
|
}
|
2022-04-30 01:38:26 -04:00
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
let file = if let Ok(f) = File::open(storage_dir.join(&key)).await {
|
2022-04-28 06:26:44 -04:00
|
|
|
f
|
|
|
|
} else {
|
|
|
|
error!(
|
|
|
|
"Unable to open file {} referenced in persistent storage",
|
|
|
|
key
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
let metadata = if let Ok(md) = file.metadata().await {
|
|
|
|
md
|
|
|
|
} else {
|
|
|
|
error!(
|
|
|
|
"Unable to get metadata for file {} referenced in persistent storage",
|
|
|
|
key
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
if metadata.len() != info.size {
|
|
|
|
error!("Mismatched file size for file {} referenced in persistent storage: expected {}, found {}", key, info.size, metadata.len());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2022-05-03 16:28:43 -04:00
|
|
|
async fn delete_file_if_exists(file: &PathBuf) -> std::io::Result<()> {
|
|
|
|
if let Err(e) = tokio::fs::remove_file(file).await {
|
|
|
|
if e.kind() != ErrorKind::NotFound {
|
|
|
|
error!("Failed to delete file {}: {}", file.to_string_lossy(), e);
|
|
|
|
return Err(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(thiserror::Error, Debug)]
|
|
|
|
pub enum FileAddError {
|
|
|
|
#[error("Failed to write metadata to filesystem")]
|
|
|
|
FileSystem(#[from] std::io::Error),
|
|
|
|
#[error("File was too large, available space is {0} bytes")]
|
|
|
|
TooBig(u64),
|
|
|
|
#[error("File store is full")]
|
|
|
|
Full,
|
|
|
|
}
|
|
|
|
|
2022-08-16 04:54:18 -04:00
|
|
|
impl crate::AppData {
|
|
|
|
// This must only be run at startup, or it will delete in-progress
|
|
|
|
// uploads.
|
|
|
|
pub async fn cleanup(&self) -> std::io::Result<()> {
|
|
|
|
let mut store = self.state.write().await;
|
|
|
|
let old = std::mem::take(store.deref_mut());
|
|
|
|
for (key, info) in old.0.into_iter() {
|
|
|
|
// Handle this case separately, because we don't
|
|
|
|
// want to try to delete it if it's not the sort
|
|
|
|
// of path we're expecting
|
|
|
|
if !is_valid_storage_code(&key) {
|
|
|
|
error!("Invalid key in persistent storage: {}", key);
|
|
|
|
continue;
|
2022-04-28 05:13:14 -04:00
|
|
|
}
|
2022-08-16 04:54:18 -04:00
|
|
|
if is_valid_entry(&key, &info, &self.config.storage_dir).await {
|
|
|
|
store.0.insert(key, info);
|
|
|
|
} else {
|
|
|
|
info!("Deleting file {}", key);
|
|
|
|
delete_file_if_exists(&self.config.storage_dir.join(&key)).await?;
|
2022-04-28 05:13:14 -04:00
|
|
|
}
|
|
|
|
}
|
2022-08-16 04:54:18 -04:00
|
|
|
Ok(())
|
2022-05-03 16:28:43 -04:00
|
|
|
}
|
|
|
|
|
2022-04-30 01:38:26 -04:00
|
|
|
/// Attempts to add a file to the store. Returns an I/O error if
|
|
|
|
/// something's broken, or a u64 of the maximum allowed file size
|
|
|
|
/// if the file was too big, or a unit if everything worked.
|
2022-08-16 06:16:00 -04:00
|
|
|
pub async fn add_file(&self, key: String, file: StoredFile) -> Result<(), FileAddError> {
|
2022-08-16 04:54:18 -04:00
|
|
|
let mut store = self.state.write().await;
|
|
|
|
if store.full(self.config.max_storage_size) {
|
2022-05-03 16:28:43 -04:00
|
|
|
return Err(FileAddError::Full);
|
2022-05-01 05:28:50 -04:00
|
|
|
}
|
2022-08-16 04:54:18 -04:00
|
|
|
let available_size = store.available_size(self.config.max_storage_size);
|
2022-05-03 16:28:43 -04:00
|
|
|
if file.size > available_size {
|
|
|
|
return Err(FileAddError::TooBig(available_size));
|
|
|
|
}
|
2022-08-16 04:54:18 -04:00
|
|
|
store.0.insert(key, file);
|
2022-05-03 16:28:43 -04:00
|
|
|
Ok(())
|
2022-04-28 05:13:14 -04:00
|
|
|
}
|
|
|
|
|
2022-08-16 04:54:18 -04:00
|
|
|
pub async fn remove_file(&self, key: &str) -> std::io::Result<()> {
|
2022-04-28 06:26:44 -04:00
|
|
|
debug!("removing entry {} from state", key);
|
2022-08-16 04:54:18 -04:00
|
|
|
let mut store = self.state.write().await;
|
|
|
|
store.0.remove(key);
|
2022-05-03 16:28:43 -04:00
|
|
|
if is_valid_storage_code(key) {
|
2022-08-16 04:54:18 -04:00
|
|
|
delete_file_if_exists(&self.config.storage_dir.join(key)).await?;
|
2022-05-03 16:28:43 -04:00
|
|
|
}
|
|
|
|
Ok(())
|
2022-04-28 05:13:14 -04:00
|
|
|
}
|
2022-04-30 01:38:26 -04:00
|
|
|
|
2022-08-16 04:54:18 -04:00
|
|
|
pub async fn remove_expired_files(&self) -> std::io::Result<()> {
|
2022-04-30 01:38:26 -04:00
|
|
|
info!("Checking for expired files");
|
|
|
|
let now = OffsetDateTime::now_utc();
|
2022-08-16 04:54:18 -04:00
|
|
|
let mut store = self.state.write().await;
|
|
|
|
let old = std::mem::take(store.deref_mut());
|
|
|
|
for (key, file) in old.0.into_iter() {
|
2022-04-30 01:38:26 -04:00
|
|
|
if file.expiry > now {
|
2022-08-16 04:54:18 -04:00
|
|
|
store.0.insert(key, file);
|
2022-04-30 01:38:26 -04:00
|
|
|
} else {
|
|
|
|
info!("Deleting expired file {}", key);
|
2022-08-16 04:54:18 -04:00
|
|
|
delete_file_if_exists(&self.config.storage_dir.join(&key)).await?;
|
2022-04-30 01:38:26 -04:00
|
|
|
}
|
|
|
|
}
|
2022-08-16 04:54:18 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StoredFiles {
|
|
|
|
fn total_size(&self) -> u64 {
|
|
|
|
self.0.iter().fold(0, |acc, (_, f)| acc + f.size)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn available_size(&self, max_storage_size: u64) -> u64 {
|
|
|
|
max_storage_size.saturating_sub(self.total_size())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn full(&self, max_storage_size: u64) -> bool {
|
|
|
|
self.available_size(max_storage_size) == 0 || self.0.len() >= MAX_STORAGE_FILES
|
2022-04-30 01:38:26 -04:00
|
|
|
}
|
2022-04-28 05:13:14 -04:00
|
|
|
}
|