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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use dirs;
use crate::errors::*;
use std::collections::HashMap;
use std::fs;
use std::path::{Path, PathBuf};
use std::net::SocketAddr;
use toml;


#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub struct Config {
    #[serde(default)]
    pub core: CoreConfig,
    #[serde(default)]
    pub namespaces: HashMap<String, PathBuf>,
    #[serde(default)]
    pub network: NetworkConfig,
}

impl Config {
    pub fn load() -> Result<Config> {
        let path = Config::path()?;
        Config::load_from(&path)
    }

    pub fn path() -> Result<PathBuf> {
        let path = dirs::config_dir()
            .ok_or_else(|| format_err!("Failed to find config directory"))?;
        let path = path.join("sn0int.toml");
        Ok(path)
    }

    pub fn load_or_default() -> Result<Config> {
        let path = Config::path()?;
        if path.exists() {
            Config::load_from(&path)
        } else {
            Ok(Config::default())
        }
    }

    pub fn load_from<P: AsRef<Path>>(path: P) -> Result<Config> {
        let config = fs::read(&path)
            .context("Failed to read config file")?;

        let config = toml::from_slice(&config)?;

        Ok(config)
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CoreConfig {
    #[serde(default="default_registry")]
    pub registry: String,
    #[serde(default, rename="no-autoupdate")]
    pub no_autoupdate: bool,
}

impl Default for CoreConfig {
    fn default() -> CoreConfig {
        CoreConfig {
            registry: default_registry(),
            no_autoupdate: false,
        }
    }
}

#[inline]
fn default_registry() -> String {
    String::from("https://sn0int.com")
}

#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct NetworkConfig {
    pub proxy: Option<SocketAddr>,
}