mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 14:08:23 -05:00
This commit is contained in:
parent
7b33744c9d
commit
4ccd0486e7
@ -4,6 +4,7 @@
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::io::Error;
|
use std::io::Error;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
use std::sync::OnceLock;
|
||||||
|
|
||||||
// ------- Constants --------
|
// ------- Constants --------
|
||||||
static PUBLIC_DIRECTORY_NAME: &str = "public";
|
static PUBLIC_DIRECTORY_NAME: &str = "public";
|
||||||
@ -20,8 +21,34 @@ pub enum FileType {
|
|||||||
Theme,
|
Theme,
|
||||||
}
|
}
|
||||||
|
|
||||||
static FILE_PATHS_FOR_DIFF_FILE_TYPES: once_cell::sync::Lazy<HashMap<FileType, Vec<String>>> =
|
static FILE_PATHS_FOR_DIFF_FILE_TYPES: OnceLock<HashMap<FileType, Vec<String>>> = OnceLock::new();
|
||||||
once_cell::sync::Lazy::new(|| {
|
|
||||||
|
/// A helper function which returns an appropriate config file path checking if the config
|
||||||
|
/// file exists on that path.
|
||||||
|
///
|
||||||
|
/// # Error
|
||||||
|
///
|
||||||
|
/// Returns a `config file not found!!` error if the config file is not present under following
|
||||||
|
/// paths which are:
|
||||||
|
/// 1. `~/.config/websurfx/` if it not present here then it fallbacks to the next one (2)
|
||||||
|
/// 2. `/etc/xdg/websurfx/config.lua` if it is not present here then it fallbacks to the next
|
||||||
|
/// one (3).
|
||||||
|
/// 3. `websurfx/` (under project folder ( or codebase in other words)) if it is not present
|
||||||
|
/// here then it returns an error as mentioned above.
|
||||||
|
|
||||||
|
/// A function which returns an appropriate theme directory path checking if the theme
|
||||||
|
/// directory exists on that path.
|
||||||
|
///
|
||||||
|
/// # Error
|
||||||
|
///
|
||||||
|
/// Returns a `Theme (public) folder not found!!` error if the theme folder is not present under following
|
||||||
|
/// paths which are:
|
||||||
|
/// 1. `/opt/websurfx` if it not present here then it fallbacks to the next one (2)
|
||||||
|
/// 2. Under project folder ( or codebase in other words) if it is not present
|
||||||
|
/// here then it returns an error as mentioned above.
|
||||||
|
pub fn file_path(file_type: FileType) -> Result<&'static str, Error> {
|
||||||
|
let file_path: &Vec<String> = FILE_PATHS_FOR_DIFF_FILE_TYPES
|
||||||
|
.get_or_init(|| {
|
||||||
HashMap::from([
|
HashMap::from([
|
||||||
(
|
(
|
||||||
FileType::Config,
|
FileType::Config,
|
||||||
@ -70,36 +97,13 @@ static FILE_PATHS_FOR_DIFF_FILE_TYPES: once_cell::sync::Lazy<HashMap<FileType, V
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
])
|
])
|
||||||
});
|
})
|
||||||
|
.get(&file_type)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
/// A helper function which returns an appropriate config file path checking if the config
|
|
||||||
/// file exists on that path.
|
|
||||||
///
|
|
||||||
/// # Error
|
|
||||||
///
|
|
||||||
/// Returns a `config file not found!!` error if the config file is not present under following
|
|
||||||
/// paths which are:
|
|
||||||
/// 1. `~/.config/websurfx/` if it not present here then it fallbacks to the next one (2)
|
|
||||||
/// 2. `/etc/xdg/websurfx/config.lua` if it is not present here then it fallbacks to the next
|
|
||||||
/// one (3).
|
|
||||||
/// 3. `websurfx/` (under project folder ( or codebase in other words)) if it is not present
|
|
||||||
/// here then it returns an error as mentioned above.
|
|
||||||
|
|
||||||
/// A function which returns an appropriate theme directory path checking if the theme
|
|
||||||
/// directory exists on that path.
|
|
||||||
///
|
|
||||||
/// # Error
|
|
||||||
///
|
|
||||||
/// Returns a `Theme (public) folder not found!!` error if the theme folder is not present under following
|
|
||||||
/// paths which are:
|
|
||||||
/// 1. `/opt/websurfx` if it not present here then it fallbacks to the next one (2)
|
|
||||||
/// 2. Under project folder ( or codebase in other words) if it is not present
|
|
||||||
/// here then it returns an error as mentioned above.
|
|
||||||
pub fn file_path(file_type: FileType) -> Result<String, Error> {
|
|
||||||
let file_path = FILE_PATHS_FOR_DIFF_FILE_TYPES.get(&file_type).unwrap();
|
|
||||||
for (idx, _) in file_path.iter().enumerate() {
|
for (idx, _) in file_path.iter().enumerate() {
|
||||||
if Path::new(file_path[idx].as_str()).exists() {
|
if Path::new(file_path[idx].as_str()).exists() {
|
||||||
return Ok(file_path[idx].clone());
|
return Ok(std::mem::take(&mut &*file_path[idx]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,8 +1,19 @@
|
|||||||
//! This module provides the functionality to generate random user agent string.
|
//! This module provides the functionality to generate random user agent string.
|
||||||
|
|
||||||
|
use std::sync::OnceLock;
|
||||||
|
|
||||||
use fake_useragent::{Browsers, UserAgents, UserAgentsBuilder};
|
use fake_useragent::{Browsers, UserAgents, UserAgentsBuilder};
|
||||||
|
|
||||||
static USER_AGENTS: once_cell::sync::Lazy<UserAgents> = once_cell::sync::Lazy::new(|| {
|
static USER_AGENTS: OnceLock<UserAgents> = OnceLock::new();
|
||||||
|
|
||||||
|
/// A function to generate random user agent to improve privacy of the user.
|
||||||
|
///
|
||||||
|
/// # Returns
|
||||||
|
///
|
||||||
|
/// A randomly generated user agent string.
|
||||||
|
pub fn random_user_agent() -> &'static str {
|
||||||
|
USER_AGENTS
|
||||||
|
.get_or_init(|| {
|
||||||
UserAgentsBuilder::new()
|
UserAgentsBuilder::new()
|
||||||
.cache(false)
|
.cache(false)
|
||||||
.dir("/tmp")
|
.dir("/tmp")
|
||||||
@ -16,13 +27,6 @@ static USER_AGENTS: once_cell::sync::Lazy<UserAgents> = once_cell::sync::Lazy::n
|
|||||||
.set_mozilla(),
|
.set_mozilla(),
|
||||||
)
|
)
|
||||||
.build()
|
.build()
|
||||||
});
|
})
|
||||||
|
.random()
|
||||||
/// A function to generate random user agent to improve privacy of the user.
|
|
||||||
///
|
|
||||||
/// # Returns
|
|
||||||
///
|
|
||||||
/// A randomly generated user agent string.
|
|
||||||
pub fn random_user_agent() -> String {
|
|
||||||
USER_AGENTS.random().to_string()
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user