2023-10-18 20:06:30 -04:00
|
|
|
use serde::Deserialize;
|
|
|
|
use serde::Serialize;
|
|
|
|
|
2023-12-21 19:28:31 -05:00
|
|
|
/// This is the struct for the natter.toml config file that ends up in each site's root directory.
|
2023-12-19 14:54:12 -05:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
2023-10-18 21:25:37 -04:00
|
|
|
pub(crate) struct RawConfig {
|
2023-12-17 14:28:27 -05:00
|
|
|
pub(super) site_title: Option<String>,
|
2023-10-18 20:30:32 -04:00
|
|
|
author: Option<String>,
|
|
|
|
email: Option<String>,
|
2023-10-23 21:51:15 -04:00
|
|
|
pub(super) use_relative_paths: Option<bool>,
|
|
|
|
pub(super) web_root: Option<String>,
|
2023-12-17 16:57:37 -05:00
|
|
|
pub(super) stream: Option<RawConfigStream>,
|
2023-10-18 19:59:45 -04:00
|
|
|
}
|
2023-10-18 20:30:32 -04:00
|
|
|
|
2023-10-18 21:25:37 -04:00
|
|
|
impl Default for RawConfig {
|
2023-10-18 20:21:28 -04:00
|
|
|
fn default() -> Self {
|
2023-10-18 21:25:37 -04:00
|
|
|
RawConfig {
|
2023-12-17 14:28:27 -05:00
|
|
|
site_title: None,
|
2023-10-18 20:30:32 -04:00
|
|
|
author: None,
|
|
|
|
email: None,
|
2023-10-23 21:51:15 -04:00
|
|
|
use_relative_paths: None,
|
|
|
|
web_root: None,
|
2023-12-17 16:57:37 -05:00
|
|
|
stream: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-19 14:54:12 -05:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
2023-12-17 16:57:37 -05:00
|
|
|
pub(crate) struct RawConfigStream {
|
|
|
|
pub(super) entries_per_page: Option<usize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for RawConfigStream {
|
|
|
|
fn default() -> Self {
|
|
|
|
RawConfigStream {
|
|
|
|
entries_per_page: None,
|
2023-10-18 20:30:32 -04:00
|
|
|
}
|
2023-10-18 20:21:28 -04:00
|
|
|
}
|
|
|
|
}
|