mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-26 07:19:22 +00:00
Generate new file name
This commit is contained in:
parent
368a512722
commit
e547219824
@ -15,7 +15,7 @@ use crate::data::error::{ExecError, ResultBoxError};
|
||||
use crate::data::user::UserID;
|
||||
use crate::helpers::{account_helper, api_helper, conversations_helper, user_helper};
|
||||
use crate::utils::virtual_directories_utils::check_virtual_directory;
|
||||
use crate::utils::user_data_utils::prepare_file_creation;
|
||||
use crate::utils::user_data_utils::{prepare_file_creation, generate_new_user_data_file_name};
|
||||
|
||||
/// Http request handler
|
||||
///
|
||||
@ -280,8 +280,9 @@ impl HttpRequestHandler {
|
||||
let file = self.post_file(name)?;
|
||||
|
||||
let target_user_data_folder = prepare_file_creation(self.user_id()?, folder)?;
|
||||
let target_file_path = generate_new_user_data_file_name(target_user_data_folder.as_path(), "png")?;
|
||||
|
||||
Ok(target_user_data_folder.to_str().unwrap().to_string())
|
||||
Ok(target_file_path.to_str().unwrap().to_string())
|
||||
}
|
||||
|
||||
/// Get an integer included in the POST request
|
||||
|
@ -2,12 +2,15 @@
|
||||
//!
|
||||
//! @author Pierre Hubert
|
||||
|
||||
use crate::data::config::conf;
|
||||
use crate::data::error::ResultBoxError;
|
||||
use crate::data::user::UserID;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
||||
use serde_json::to_string;
|
||||
|
||||
use crate::data::config::conf;
|
||||
use crate::data::error::{ExecError, ResultBoxError};
|
||||
use crate::data::user::UserID;
|
||||
use crate::utils::crypt_utils::rand_str;
|
||||
|
||||
/// Get the full URL to a user data file
|
||||
///
|
||||
/// `uri` should contain the path to the target resource
|
||||
@ -42,3 +45,20 @@ pub fn prepare_file_creation(user_id: UserID, folder: &str) -> ResultBoxError<Pa
|
||||
|
||||
Ok(subfolder)
|
||||
}
|
||||
|
||||
/// Generate a new file name to store user data
|
||||
pub fn generate_new_user_data_file_name(dir: &Path, ext: &str) -> ResultBoxError<PathBuf> {
|
||||
let sys_dir = user_data_path(&dir);
|
||||
|
||||
if !sys_dir.exists() {
|
||||
return Err(ExecError::boxed_string(format!("Directory {:?} does not exists!", dir)));
|
||||
}
|
||||
|
||||
loop {
|
||||
let file = format!("{}.{}", rand_str(30), ext);
|
||||
|
||||
if !sys_dir.join(&file).exists() {
|
||||
return Ok(dir.join(&file));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user