gazetta-core 0.8.0

A static site generator framework. Core.
Documentation
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
//  Copyright (C) 2015 Steven Allen
//
//  This file is part of gazetta.
//
//  This program is free software: you can redistribute it and/or modify it under the terms of the
//  GNU General Public License as published by the Free Software Foundation version 3 of the
//  License.
//
//  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
//  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
//  the GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License along with this program.  If
//  not, see <http://www.gnu.org/licenses/>.
//

use std::collections::HashMap;
use std::fs;
use std::ops::Deref;
use std::path::{Path, PathBuf};

use url::Url;

use crate::error::{AnnotatedError, SourceError};
use crate::util;

use super::Meta;
use super::yaml::{self, Yaml};
use super::{Entry, StaticEntry};

/// The Source object reads and interprets a source directory.
///
/// The fields are intentionally public. Feel free to manually generate or modify this structure.
#[derive(Debug, Clone)]
pub struct Source<SourceMeta = (), EntryMeta = ()>
where
    SourceMeta: Meta,
    EntryMeta: Meta,
{
    /// The website's title.
    ///
    /// By default, this field is read from `gazetta.yaml`.
    pub title: String,
    /// The source root directory.
    ///
    /// This is specified on construction.
    pub root: PathBuf,
    /// The website origin (http://mydomain.com:1234)
    ///
    /// By default, this field is derived from the value of `base` in `gazetta.yaml`.
    pub origin: String,
    /// The directory under the origin at which this site will be hosted (e.g. "/").
    ///
    /// By default, this field is derived from the value of `base` in `gazetta.yaml`.
    pub prefix: String,
    /// The website content to be rendered.
    ///
    /// By default, this list is populated with Entries generated from files with the basename
    /// index under the root directory excluding:
    ///
    ///  1. Files *under* directories named "static".
    ///
    ///  2. Files under `assets/`.
    pub entries: Vec<Entry<EntryMeta>>,
    /// The website content to be deployed as-is (no rendering).
    ///
    /// By default, this list is populated with directories under the root directory named "static"
    /// excluding:
    ///
    ///  1. Directories *under* directories named "static".
    ///
    ///  2. Directories under `assets/`.
    pub static_entries: Vec<StaticEntry>,
    /// The website stylesheets. When rendered, these will be concatenated into a single
    /// stylesheet.
    ///
    /// By default, this list is populated by the files in is `assets/stylesheets/` in
    /// lexicographical order.
    pub stylesheets: Vec<PathBuf>,
    /// The website javascript. When rendered, these will be concatenated into a single
    /// javascript file.
    ///
    /// By default, this list is populated by the files in is `assets/javascript/` in
    /// lexicographical order.
    pub javascript: Vec<PathBuf>,
    /// The path to the website's icon.
    ///
    /// By default, this points to `assets/icon.png` (if it exists).
    pub icon: Option<PathBuf>,
    /// The path to the `.well-known` directory.
    ///
    /// By default, this points to `.well-known`.
    pub well_known: Option<PathBuf>,
    /// Additional metadata read from `gazetta.yaml`.
    pub meta: SourceMeta,
}

pub struct IndexedSource<'a, SourceMeta, EntryMeta>
where
    SourceMeta: Meta,
    EntryMeta: Meta,
{
    source: &'a Source<SourceMeta, EntryMeta>,
    by_name: HashMap<&'a str, &'a Entry<EntryMeta>>,
    children: HashMap<&'a str, Vec<&'a Entry<EntryMeta>>>,
    references: HashMap<&'a str, Vec<&'a Entry<EntryMeta>>>,
}

impl<'a, SourceMeta, EntryMeta> Deref for IndexedSource<'a, SourceMeta, EntryMeta>
where
    SourceMeta: Meta,
    EntryMeta: Meta,
{
    type Target = Source<SourceMeta, EntryMeta>;

    fn deref(&self) -> &Self::Target {
        self.source
    }
}

impl<'a, SourceMeta, EntryMeta> IndexedSource<'a, SourceMeta, EntryMeta>
where
    SourceMeta: Meta,
    EntryMeta: Meta,
{
    pub fn entry(&self, name: &str) -> Option<&Entry<EntryMeta>> {
        self.by_name.get(name).copied()
    }
    pub fn children(&self, name: &str) -> &[&Entry<EntryMeta>] {
        self.children.get(name).map(|v| &**v).unwrap_or_default()
    }
    pub fn references(&self, name: &str) -> &[&Entry<EntryMeta>] {
        self.references.get(name).map(|v| &**v).unwrap_or_default()
    }
}

impl<SourceMeta, EntryMeta> Source<SourceMeta, EntryMeta>
where
    SourceMeta: Meta,
    EntryMeta: Meta,
{
    /// Build the [`IndexedSource`] for this [`Source`].
    pub fn index<'a>(&'a self) -> Result<IndexedSource<'a, SourceMeta, EntryMeta>, SourceError> {
        use crate::model::index::SortDirection::*;

        let by_name: HashMap<_, _> = self.entries.iter().map(|e| (&*e.name, e)).collect();
        let references = self
            .entries
            .iter()
            .map(|e| {
                (
                    &*e.name,
                    e.cc.iter()
                        .filter_map(|n| by_name.get(&**n))
                        .copied()
                        .collect(),
                )
            })
            .collect();

        let mut children: HashMap<_, Vec<_>> = {
            let mut by_directory: HashMap<_, _> = self
                .entries
                .iter()
                .filter_map(|e| e.index.as_ref())
                .flat_map(|i| &i.directories)
                .map(|d| &**d)
                .map(|d| (d, Vec::new()))
                .collect();

            for entry in &self.entries {
                if let Some(parent) = Path::new(&entry.name).parent()
                    && let Some(idx) = by_directory.get_mut(parent)
                {
                    idx.push(entry);
                }
            }
            self.entries
                .iter()
                .filter_map(|e| {
                    Some((
                        &*e.name,
                        e.index
                            .as_ref()?
                            .directories
                            .iter()
                            .filter_map(|d| by_directory.get(&**d))
                            .flatten()
                            .copied()
                            .collect(),
                    ))
                })
                .collect()
        };

        for entry in &self.entries {
            for cc in &entry.cc {
                let Some(child_entries) = children.get_mut(&**cc) else {
                    return Err(SourceError::Config(
                        format!(
                            "entry {} CCs entry {} which either doesn't exist or has no index",
                            entry.name, cc
                        )
                        .into(),
                    ));
                };
                child_entries.push(entry);
            }
        }

        for (name, child_entries) in &mut children {
            let entry = by_name.get(name).expect("missing entry");
            let index = entry.index.as_ref().expect("missing index");

            match index.sort.direction {
                Ascending => child_entries.sort_by(|e1, e2| index.sort.field.compare(e1, e2)),
                Descending => child_entries.sort_by(|e1, e2| index.sort.field.compare(e2, e1)),
            }

            if let Some(max) = index.max {
                child_entries.truncate(max as usize);
            }
        }

        Ok(IndexedSource {
            source: self,
            by_name,
            references,
            children,
        })
    }

    /// Parse a source directory to create a new source.
    pub fn new<P: AsRef<Path>>(root: P) -> Result<Self, AnnotatedError<SourceError>> {
        Self::_new(root.as_ref())
    }

    // avoid exporting large generic functions.
    fn _new(root: &Path) -> Result<Self, AnnotatedError<SourceError>> {
        let config_path = root.join("gazetta.yaml");
        let mut source = Source::from_config(root, &config_path)
            .map_err(|e| AnnotatedError::new(config_path, e))?;
        source.reload()?;
        Ok(source)
    }

    /// Reload from the source directory.
    ///
    /// Call this after changing source files.
    pub fn reload(&mut self) -> Result<(), AnnotatedError<SourceError>> {
        self.static_entries.clear();
        self.entries.clear();
        self.stylesheets.clear();
        self.javascript.clear();
        self.icon = None;
        self.well_known = None;
        self.load_entries("")?;
        self.load_assets()?;
        self.load_well_known()?;
        Ok(())
    }

    #[inline(always)]
    fn from_config(root: &Path, config_path: &Path) -> Result<Self, SourceError> {
        let mut config = yaml::load(config_path)?;
        let (origin, prefix) = match config.remove(&yaml::KEYS.base) {
            Some(Yaml::String(base)) => {
                let mut url = Url::parse(&base)?;
                if url.cannot_be_a_base() {
                    return Err("url cannot be a base".into());
                }
                if url.fragment().is_some() {
                    return Err("base url must not specify a fragment".into());
                }
                if url.query().is_some() {
                    return Err("base url must not specify a query".into());
                }

                let prefix = url.path().to_string();

                url.set_path("");
                let mut origin = url.to_string();
                // Trim a trailing /, if any.
                if origin.ends_with("/") {
                    origin.pop();
                }

                (origin, prefix)
            }
            Some(..) => return Err("the base url must be a string".into()),
            None => return Err("you must specify a base url".into()),
        };

        Ok(Source {
            title: match config.remove(&yaml::KEYS.title) {
                Some(Yaml::String(title)) => title,
                Some(..) => return Err("title must be a string".into()),
                None => return Err("must specify title".into()),
            },
            origin,
            prefix,
            root: root.to_owned(),
            well_known: None,
            entries: Vec::new(),
            static_entries: Vec::new(),
            stylesheets: Vec::new(),
            javascript: Vec::new(),
            icon: None,
            meta: SourceMeta::from_yaml(config)?,
        })
    }

    fn load_well_known(&mut self) -> Result<(), AnnotatedError<SourceError>> {
        let path = self.root.join(".well-known");
        if try_annotate!(util::exists(&path), path) {
            self.well_known = Some(path.clone());
        }
        Ok(())
    }

    fn load_assets(&mut self) -> Result<(), AnnotatedError<SourceError>> {
        let mut path = self.root.join("assets");

        path.push("icon.png");
        if try_annotate!(util::exists(&path), path) {
            self.icon = Some(path.clone());
        }

        path.set_file_name("javascript");
        if try_annotate!(util::exists(&path), path) {
            self.javascript = try_annotate!(util::walk_sorted(&path), path);
        }

        path.set_file_name("stylesheets");
        if try_annotate!(util::exists(&path), path) {
            self.stylesheets = try_annotate!(util::walk_sorted(&path), path);
        }
        Ok(())
    }

    fn load_entries(&mut self, dir: &str) -> Result<(), AnnotatedError<SourceError>> {
        let base_dir = self.root.join(dir);

        for dir_entry in try_annotate!(fs::read_dir(&base_dir), base_dir) {
            let dir_entry = try_annotate!(dir_entry, base_dir);
            let file_name = match dir_entry.file_name().into_string() {
                Ok(s) => {
                    if s.starts_with('.') {
                        continue;
                    } else {
                        s
                    }
                }
                Err(s) => {
                    // Can't possibly be a file we care about but, if it isn't hidden, we want to
                    // return an error and bail.
                    // FIXME: OsStr::starts_with
                    if s.to_string_lossy().starts_with('.') {
                        continue;
                    } else {
                        return Err(AnnotatedError::new(
                            dir_entry.path(),
                            "file names must be valid utf8".into(),
                        ));
                    }
                }
            };

            // Skip assets.
            if dir.is_empty() && file_name == "assets" {
                continue;
            }

            let file_type = try_annotate!(dir_entry.file_type(), dir_entry.path());

            if file_type.is_file() {
                if Path::new(&file_name).file_stem().unwrap() == "index" {
                    let entry =
                        try_annotate!(Entry::from_file(dir_entry.path(), dir), dir_entry.path());
                    self.entries.push(entry);
                }
            } else if file_type.is_dir() {
                let name = if dir.is_empty() {
                    file_name.to_owned()
                } else {
                    format!("{}/{}", dir, &file_name)
                };
                match &*file_name {
                    "static" => self.static_entries.push(StaticEntry {
                        name,
                        source: dir_entry.path(),
                    }),
                    "index" => {
                        return Err(AnnotatedError::new(
                            dir_entry.path(),
                            "paths ending in index are reserved for \
                             indices"
                                .into(),
                        ));
                    }
                    _ => self.load_entries(&name)?,
                }
            } else if file_type.is_symlink() {
                // TODO: Symlinks
                unimplemented!();
            }
        }
        Ok(())
    }
}