~/selfhut

selfhut/src/utils/config.rs -rw-r--r-- 1.53 kB
ef55c0da — arthurmelton summary 2 years ago

            
0545f2a7 Arthur Melton
ad9e5164 arthurmelton
94e2262d arthurmelton
0545f2a7 Arthur Melton
5c44f94c Arthur Melton
0545f2a7 Arthur Melton
ad9e5164 arthurmelton
0545f2a7 Arthur Melton
ad9e5164 arthurmelton
0016c2cc arthurmelton
50967860 Arthur Melton
468a751a Arthur Melton
0545f2a7 Arthur Melton
ad9e5164 arthurmelton
0545f2a7 Arthur Melton
94e2262d arthurmelton
ef55c0da arthurmelton
50967860 Arthur Melton
468a751a Arthur Melton
0545f2a7 Arthur Melton


































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
use lazy_static::lazy_static;
use serde_derive::{Deserialize, Serialize};
use std::{fs, path::PathBuf};

lazy_static! {
    pub static ref CONFIG: Config = {
        let mut config = dirs::config_dir().expect("Could not get the config directory");
        config.push("git-server");
        config.push("git-server.toml");
        if config.exists() {
            let config: Config = toml::from_str(&String::from_utf8_lossy(
                &fs::read(config.as_path()).expect("Failed to read the config file"),
            ))
            .expect("Could not parse the toml in the config file");
            config
        } else {
            let config_struct = Config {
                name: "Example User".to_string(),
                description: "This is billy and he loves his [website](https://example.com)!!!"
                    .to_string(),
                git_location: dirs::home_dir().unwrap_or(PathBuf::from("/")),
                domain: "127.0.0.1".to_string()
            };
            config.pop();
            let _ = fs::create_dir_all(config.clone());
            config.push("git-server.toml");
            fs::write(
                config,
                toml::to_string(&config_struct).expect("Failed to stringify config"),
            )
            .expect("Failed to set the config content");
            config_struct
        }
    };
}

#[derive(Serialize, Deserialize)]
pub struct Config {
    pub name: String,
    pub description: String,
    pub git_location: PathBuf,
    pub domain: String,
}