blob: 26f36a462940dad9e6cfeb3f876e5b4f4de7d868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
use crate::Result;
use std::{env, path::PathBuf};
/// Creates and returns the cache directory pointed to by `MULLVAD_CACHE_DIR`, or the default
/// one if that variable is unset.
pub fn cache_dir() -> Result<PathBuf> {
let permissions = Some(crate::UserPermissions {
read: true,
write: false,
execute: true,
});
crate::create_dir(get_cache_dir()?, permissions)
}
pub fn get_cache_dir() -> Result<PathBuf> {
match env::var_os("MULLVAD_CACHE_DIR") {
Some(path) => Ok(PathBuf::from(path)),
None => get_default_cache_dir(),
}
}
#[cfg(target_os = "linux")]
pub fn get_default_cache_dir() -> Result<PathBuf> {
let dir = PathBuf::from("/var/cache").join(crate::PRODUCT_NAME);
Ok(dir)
}
#[cfg(windows)]
pub fn get_default_cache_dir() -> Result<PathBuf> {
let dir = crate::windows::get_allusersprofile_dir()?
.join(crate::PRODUCT_NAME)
.join("cache");
Ok(dir)
}
#[cfg(target_os = "macos")]
pub fn get_default_cache_dir() -> Result<PathBuf> {
let dir = std::path::Path::new("/Library/Caches").join(crate::PRODUCT_NAME);
Ok(dir)
}
|