blob: eee2fc264c16d2f99386773564915107b6ecea6e (
plain) (
blame)
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 std::{
fs::File,
io::Read,
path::{Path, PathBuf},
};
use serde::Deserialize;
use crate::Result;
#[derive(Deserialize, Clone)]
pub struct Config {
admin_password: String,
site_password: Option<String>,
files_dir: std::path::PathBuf,
database_connection: String,
}
impl Config {
pub fn from_file(path: &str) -> Result<Self> {
let path = PathBuf::from(path);
let mut config = String::new();
File::open(path)?.read_to_string(&mut config)?;
let config: Config = toml::from_str(&config)?;
Ok(config)
}
pub fn admin_password(&self) -> &str {
&self.admin_password
}
pub fn site_password(&self) -> Option<&str> {
self.site_password.as_deref()
}
pub fn files_dir(&self) -> &Path {
self.files_dir.as_path()
}
pub fn database_connection(&self) -> &str {
&self.database_connection
}
}
|