summaryrefslogtreecommitdiff
path: root/src/context.rs
blob: 660c201e2922d0594ddabb4cfcb5ba93c6557e4f (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
use std::collections::HashMap;
use std::fs;
use std::io;
use std::path::{Path, PathBuf};

use structopt::StructOpt;
use serde::{Serialize, Deserialize};
use tera::{Tera, Filter, Value};

const TMPL_FILES: &'static [&'static str] = &["index.html"];

#[derive(Debug, StructOpt, Serialize)]
#[structopt(name = "gallery")]
pub struct Options {
    #[structopt(long, help = "Just a thing")]
    pub check: bool,
    #[structopt(short, long, help = "Config file location")]
    pub config: Option<PathBuf>,
    #[structopt(help = "Picture location")]
    pub load: PathBuf,
    #[structopt(short, long, default_value = "png", help = "Image extension to use for converted files")]
    pub ext: String,
    #[structopt(long, short, default_value = "build", help = "Where to build site")]
    pub builddir: PathBuf,

    #[structopt(long, help = "Full size url prefix")]
    pub url_prefix: Option<String>,
}

#[derive(Debug, thiserror::Error)]
pub enum ConfigError {
    #[error("reading from file")]
    Reading {
        #[from]
        source: io::Error,
    },
    #[error("parsing config file")]
    Parsing {
        #[from]
        source: serde_yaml::Error,
    },
    #[error("compiling glob pattern")]
    CompilePattern {
        #[from]
        source: glob::PatternError,
    },
    #[error("compiling templates")]
    CompileTemplate {
        #[from]
        source: tera::Error,
    },
}

#[derive(Deserialize, Debug, Serialize)]
pub struct Config {
    pub imageglob: String,
    pub info: HashMap<String, String>,
    pub sizes: HashMap<String, u32>,

    #[serde(skip)]
    pub imageglob_compiled: glob::Pattern,
}

struct ReltoFilter {
    dir: PathBuf,
}

#[derive(Debug)]
pub struct Context {
    pub options: Options,
    pub config: Config,
    pub imgdir: PathBuf,

    pub tmpl: Tera,
}

impl Context {
    pub fn new_with_args() -> Result<Context, ConfigError> {
        let opts = Options::from_args();
        let config = Config::load_with_options(&opts)?;
        let imgdir = opts.builddir.join("imgs");

        // Create img dir
        if let Err(err) = fs::create_dir(&imgdir) {
            if err.kind() != io::ErrorKind::AlreadyExists {
                return Err(ConfigError::from(err));
            }
        }

        // Compile templates
        let mut tera = Tera::default();
        let tmpl_dir = opts.load.join("templates");
        TMPL_FILES.iter().map(|fname| -> Result<(), ConfigError> {
            let path = tmpl_dir.join(fname);
            tera.add_template_file(path, Some(fname))?;
            Ok(())
        }).collect::<Result<(), ConfigError>>()?;

        tera.register_filter("relto_build", ReltoFilter::new(&opts.builddir));

        Ok(Context {
            options: opts,
            config: config,
            imgdir: imgdir,
            tmpl: tera,
        })
    }

    pub fn get_image_files(&self) -> Result<Vec<PathBuf>, io::Error> {
        let files = fs::read_dir(&self.options.load)?
            // Remove errored entries (SILENTLY)
            .filter(|entry| entry.is_ok())
            .map(|entry| entry.unwrap().path())
            // Filter out directories and files that do not match pattern
            .filter(|path| path.file_name()
                    .map_or(false, |file| self.config.imageglob_compiled.matches(file.to_str().unwrap()))
                    )
            .collect();

        Ok(files)
    }
}

impl ReltoFilter {
    pub fn new(dir: &Path) -> Self {
        ReltoFilter {
            dir: dir.to_path_buf(),
        }
    }
}

impl Filter for ReltoFilter {
    fn filter(&self, value: &Value, _: &HashMap<String, tera::Value>) -> tera::Result<Value> {
        if let Value::String(path) = value {
            let path = PathBuf::from(path);
            match path.strip_prefix(&self.dir) {
                Ok(relto) => Ok(Value::String(relto.to_string_lossy().to_string())),
                Err(err) => Err(tera::Error::call_filter("relto", err)),
            }
        } else {
            Err(tera::Error::msg("Input to relto filter must be string"))
        }
    }
}

impl Config {
    fn load_from_file(path: &PathBuf) -> Result<Config, ConfigError> {
        let content = fs::read_to_string(path)?;
        let mut config: Config = serde_yaml::from_str(&content)?;

        config.imageglob_compiled = glob::Pattern::new(&config.imageglob)?;

        Ok(config)
    }

    pub fn load_with_options(opts: &Options) -> Result<Config, ConfigError> {
        let config_path = match &opts.config {
            Some(path) => path.to_path_buf(),
            None => opts.load.join("imginfo.yml"),
        };

        Config::load_from_file(&config_path)
    }


}