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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use std::path::PathBuf;
use std::{env, io};

#[cfg(target_family = "unix")]
const HOME_VAR: &str = "HOME";
#[cfg(target_family = "windows")]
const HOME_VAR: &str = "USERPROFILE";

const OSOY_HOME_VAR: &str = "OSOY_HOME";

#[derive(Debug, Clone)]
pub struct Config {
    pub src: PathBuf,
    pub bin: PathBuf,
}

pub fn home_path(rel_path: &str) -> io::Result<PathBuf> {
    let env_home = env::var(HOME_VAR).unwrap();
    match env_home.len() {
        0 => Err(io::Error::new(
            io::ErrorKind::NotFound,
            "HOME variable not set",
        )),
        _ => Ok(PathBuf::from(env_home).join(rel_path)),
    }
}

impl Config {
    pub fn from_env() -> Self {
        let home = {
            let env_osoy_home = env::var(OSOY_HOME_VAR).unwrap_or("".into());
            match env_osoy_home.len() {
                0 => home_path(".osoy").unwrap(),
                _ => env_osoy_home.into(),
            }
        };

        Self {
            src: home.join("src"),
            bin: home.join("bin"),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn home() {
        let osoy_home = "/home/user/.local/share/osoy";
        env::set_var(OSOY_HOME_VAR, osoy_home);
        assert_eq!(Config::from_env().src, PathBuf::from(osoy_home).join("src"));

        let home = "/home/user";
        env::set_var(OSOY_HOME_VAR, "");
        env::set_var(HOME_VAR, home);
        assert_eq!(
            Config::from_env().bin,
            PathBuf::from(home).join(".osoy/bin")
        );
    }
}