blob: 2c2a88f77d082be5fc7c0cc73bbd542c115b105b (
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
44
45
46
47
48
49
50
51
52
53
|
#![cfg_attr(feature = "cargo-clippy", allow(unused_parens))]
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[cfg(feature = "serde-json")]
extern crate serde_json;
extern crate toml;
use std::env;
use std::fs;
use std::path::PathBuf;
mod error;
mod escaping;
pub use error::{Error, Result};
pub use escaping::MarkupDisplay;
pub mod filters;
pub mod path;
pub struct Config {
pub dirs: Vec<PathBuf>,
}
impl Config {
pub fn new() -> Config {
let root = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
let filename = root.join(CONFIG_FILE_NAME);
let default = vec![root.join("templates")];
let dirs = if filename.exists() {
let config_str = fs::read_to_string(&filename)
.expect(&format!("unable to read {}", filename.to_str().unwrap()));
let raw: RawConfig = toml::from_str(&config_str)
.expect(&format!("invalid TOML in {}", filename.to_str().unwrap()));
raw.dirs
.map(|dirs| dirs.into_iter().map(|dir| root.join(dir)).collect())
.unwrap_or_else(|| default)
} else {
default
};
Config { dirs }
}
}
#[derive(Deserialize)]
struct RawConfig {
dirs: Option<Vec<String>>,
}
static CONFIG_FILE_NAME: &str = "askama.toml";
|