2018-03-07 21:02:06 +08:00
|
|
|
#![allow(missing_docs)]
|
|
|
|
|
2020-06-22 22:34:25 +08:00
|
|
|
pub mod playground_editor;
|
2017-06-29 12:35:20 +08:00
|
|
|
|
2020-05-15 13:48:28 +08:00
|
|
|
pub mod fonts;
|
|
|
|
|
2018-03-07 21:02:06 +08:00
|
|
|
#[cfg(feature = "search")]
|
|
|
|
pub mod searcher;
|
|
|
|
|
2015-08-13 16:46:56 +08:00
|
|
|
use std::fs::File;
|
2015-08-06 04:35:26 +08:00
|
|
|
use std::io::Read;
|
2018-07-24 01:45:01 +08:00
|
|
|
use std::path::Path;
|
2015-07-19 06:08:38 +08:00
|
|
|
|
2019-05-26 02:50:41 +08:00
|
|
|
use crate::errors::*;
|
2017-07-10 19:26:43 +08:00
|
|
|
|
2019-06-01 00:01:02 +08:00
|
|
|
pub static INDEX: &[u8] = include_bytes!("index.hbs");
|
2020-05-01 13:47:50 +08:00
|
|
|
pub static HEAD: &[u8] = include_bytes!("head.hbs");
|
2020-05-27 02:23:36 +08:00
|
|
|
pub static REDIRECT: &[u8] = include_bytes!("redirect.hbs");
|
2019-06-01 00:01:02 +08:00
|
|
|
pub static HEADER: &[u8] = include_bytes!("header.hbs");
|
|
|
|
pub static CHROME_CSS: &[u8] = include_bytes!("css/chrome.css");
|
|
|
|
pub static GENERAL_CSS: &[u8] = include_bytes!("css/general.css");
|
|
|
|
pub static PRINT_CSS: &[u8] = include_bytes!("css/print.css");
|
|
|
|
pub static VARIABLES_CSS: &[u8] = include_bytes!("css/variables.css");
|
2020-05-18 08:34:03 +08:00
|
|
|
pub static FAVICON_PNG: &[u8] = include_bytes!("favicon.png");
|
|
|
|
pub static FAVICON_SVG: &[u8] = include_bytes!("favicon.svg");
|
2019-06-01 00:01:02 +08:00
|
|
|
pub static JS: &[u8] = include_bytes!("book.js");
|
|
|
|
pub static HIGHLIGHT_JS: &[u8] = include_bytes!("highlight.js");
|
|
|
|
pub static TOMORROW_NIGHT_CSS: &[u8] = include_bytes!("tomorrow-night.css");
|
|
|
|
pub static HIGHLIGHT_CSS: &[u8] = include_bytes!("highlight.css");
|
|
|
|
pub static AYU_HIGHLIGHT_CSS: &[u8] = include_bytes!("ayu-highlight.css");
|
|
|
|
pub static CLIPBOARD_JS: &[u8] = include_bytes!("clipboard.min.js");
|
|
|
|
pub static FONT_AWESOME: &[u8] = include_bytes!("FontAwesome/css/font-awesome.min.css");
|
|
|
|
pub static FONT_AWESOME_EOT: &[u8] = include_bytes!("FontAwesome/fonts/fontawesome-webfont.eot");
|
|
|
|
pub static FONT_AWESOME_SVG: &[u8] = include_bytes!("FontAwesome/fonts/fontawesome-webfont.svg");
|
|
|
|
pub static FONT_AWESOME_TTF: &[u8] = include_bytes!("FontAwesome/fonts/fontawesome-webfont.ttf");
|
|
|
|
pub static FONT_AWESOME_WOFF: &[u8] = include_bytes!("FontAwesome/fonts/fontawesome-webfont.woff");
|
|
|
|
pub static FONT_AWESOME_WOFF2: &[u8] =
|
2018-05-16 01:18:02 +08:00
|
|
|
include_bytes!("FontAwesome/fonts/fontawesome-webfont.woff2");
|
2019-06-01 00:01:02 +08:00
|
|
|
pub static FONT_AWESOME_OTF: &[u8] = include_bytes!("FontAwesome/fonts/FontAwesome.otf");
|
2015-07-19 20:02:21 +08:00
|
|
|
|
2017-05-19 19:04:37 +08:00
|
|
|
/// The `Theme` struct should be used instead of the static variables because
|
2018-04-10 07:02:53 +08:00
|
|
|
/// the `new()` method will look if the user has a theme directory in their
|
2017-07-10 19:26:43 +08:00
|
|
|
/// source folder and use the users theme instead of the default.
|
2015-08-11 22:13:41 +08:00
|
|
|
///
|
2017-07-10 19:26:43 +08:00
|
|
|
/// You should only ever use the static variables directly if you want to
|
|
|
|
/// override the user's theme with the defaults.
|
|
|
|
#[derive(Debug, PartialEq)]
|
2015-08-06 04:35:26 +08:00
|
|
|
pub struct Theme {
|
2015-08-11 22:13:41 +08:00
|
|
|
pub index: Vec<u8>,
|
2020-05-01 13:47:50 +08:00
|
|
|
pub head: Vec<u8>,
|
2020-05-27 02:23:36 +08:00
|
|
|
pub redirect: Vec<u8>,
|
2017-09-28 07:06:30 +08:00
|
|
|
pub header: Vec<u8>,
|
2018-07-26 04:51:09 +08:00
|
|
|
pub chrome_css: Vec<u8>,
|
|
|
|
pub general_css: Vec<u8>,
|
|
|
|
pub print_css: Vec<u8>,
|
|
|
|
pub variables_css: Vec<u8>,
|
2020-05-18 08:34:03 +08:00
|
|
|
pub favicon_png: Vec<u8>,
|
|
|
|
pub favicon_svg: Vec<u8>,
|
2015-08-06 04:35:26 +08:00
|
|
|
pub js: Vec<u8>,
|
|
|
|
pub highlight_css: Vec<u8>,
|
2015-09-14 17:08:48 +08:00
|
|
|
pub tomorrow_night_css: Vec<u8>,
|
2017-06-07 04:35:44 +08:00
|
|
|
pub ayu_highlight_css: Vec<u8>,
|
2015-08-06 04:35:26 +08:00
|
|
|
pub highlight_js: Vec<u8>,
|
2017-06-01 03:51:19 +08:00
|
|
|
pub clipboard_js: Vec<u8>,
|
2015-07-19 20:02:21 +08:00
|
|
|
}
|
|
|
|
|
2015-08-06 04:35:26 +08:00
|
|
|
impl Theme {
|
2018-03-07 21:02:06 +08:00
|
|
|
/// Creates a `Theme` from the given `theme_dir`.
|
|
|
|
/// If a file is found in the theme dir, it will override the default version.
|
2017-07-10 19:26:43 +08:00
|
|
|
pub fn new<P: AsRef<Path>>(theme_dir: P) -> Self {
|
|
|
|
let theme_dir = theme_dir.as_ref();
|
|
|
|
let mut theme = Theme::default();
|
2015-08-06 04:35:26 +08:00
|
|
|
|
2017-07-10 19:26:43 +08:00
|
|
|
// If the theme directory doesn't exist there's no point continuing...
|
|
|
|
if !theme_dir.exists() || !theme_dir.is_dir() {
|
2016-03-18 05:31:28 +08:00
|
|
|
return theme;
|
2015-08-06 04:35:26 +08:00
|
|
|
}
|
|
|
|
|
2017-07-10 19:12:24 +08:00
|
|
|
// Check for individual files, if they exist copy them across
|
|
|
|
{
|
2017-09-28 07:06:30 +08:00
|
|
|
let files = vec![
|
|
|
|
(theme_dir.join("index.hbs"), &mut theme.index),
|
2020-05-01 13:47:50 +08:00
|
|
|
(theme_dir.join("head.hbs"), &mut theme.head),
|
2020-05-27 02:23:36 +08:00
|
|
|
(theme_dir.join("redirect.hbs"), &mut theme.redirect),
|
2017-09-28 07:06:30 +08:00
|
|
|
(theme_dir.join("header.hbs"), &mut theme.header),
|
|
|
|
(theme_dir.join("book.js"), &mut theme.js),
|
2018-07-26 04:51:09 +08:00
|
|
|
(theme_dir.join("css/chrome.css"), &mut theme.chrome_css),
|
|
|
|
(theme_dir.join("css/general.css"), &mut theme.general_css),
|
|
|
|
(theme_dir.join("css/print.css"), &mut theme.print_css),
|
|
|
|
(
|
|
|
|
theme_dir.join("css/variables.css"),
|
|
|
|
&mut theme.variables_css,
|
|
|
|
),
|
2020-05-18 08:34:03 +08:00
|
|
|
(theme_dir.join("favicon.png"), &mut theme.favicon_png),
|
|
|
|
(theme_dir.join("favicon.svg"), &mut theme.favicon_svg),
|
2017-09-28 07:06:30 +08:00
|
|
|
(theme_dir.join("highlight.js"), &mut theme.highlight_js),
|
|
|
|
(theme_dir.join("clipboard.min.js"), &mut theme.clipboard_js),
|
|
|
|
(theme_dir.join("highlight.css"), &mut theme.highlight_css),
|
2018-07-24 01:45:01 +08:00
|
|
|
(
|
|
|
|
theme_dir.join("tomorrow-night.css"),
|
|
|
|
&mut theme.tomorrow_night_css,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
theme_dir.join("ayu-highlight.css"),
|
|
|
|
&mut theme.ayu_highlight_css,
|
|
|
|
),
|
2017-09-28 07:06:30 +08:00
|
|
|
];
|
2017-07-10 19:12:24 +08:00
|
|
|
|
|
|
|
for (filename, dest) in files {
|
2017-07-10 19:26:43 +08:00
|
|
|
if !filename.exists() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Err(e) = load_file_contents(&filename, dest) {
|
|
|
|
warn!("Couldn't load custom file, {}: {}", filename.display(), e);
|
|
|
|
}
|
2017-07-10 19:12:24 +08:00
|
|
|
}
|
2017-06-01 03:51:19 +08:00
|
|
|
}
|
|
|
|
|
2017-07-10 19:12:24 +08:00
|
|
|
theme
|
|
|
|
}
|
|
|
|
}
|
2015-08-06 00:28:59 +08:00
|
|
|
|
2017-07-10 19:26:43 +08:00
|
|
|
impl Default for Theme {
|
|
|
|
fn default() -> Theme {
|
|
|
|
Theme {
|
|
|
|
index: INDEX.to_owned(),
|
2020-05-01 13:47:50 +08:00
|
|
|
head: HEAD.to_owned(),
|
2020-05-27 02:23:36 +08:00
|
|
|
redirect: REDIRECT.to_owned(),
|
2017-09-28 07:06:30 +08:00
|
|
|
header: HEADER.to_owned(),
|
2018-07-26 04:51:09 +08:00
|
|
|
chrome_css: CHROME_CSS.to_owned(),
|
|
|
|
general_css: GENERAL_CSS.to_owned(),
|
|
|
|
print_css: PRINT_CSS.to_owned(),
|
|
|
|
variables_css: VARIABLES_CSS.to_owned(),
|
2020-05-18 08:34:03 +08:00
|
|
|
favicon_png: FAVICON_PNG.to_owned(),
|
|
|
|
favicon_svg: FAVICON_SVG.to_owned(),
|
2017-07-10 19:26:43 +08:00
|
|
|
js: JS.to_owned(),
|
|
|
|
highlight_css: HIGHLIGHT_CSS.to_owned(),
|
|
|
|
tomorrow_night_css: TOMORROW_NIGHT_CSS.to_owned(),
|
|
|
|
ayu_highlight_css: AYU_HIGHLIGHT_CSS.to_owned(),
|
|
|
|
highlight_js: HIGHLIGHT_JS.to_owned(),
|
|
|
|
clipboard_js: CLIPBOARD_JS.to_owned(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if a file exists, if so, the destination buffer will be filled with
|
|
|
|
/// its contents.
|
|
|
|
fn load_file_contents<P: AsRef<Path>>(filename: P, dest: &mut Vec<u8>) -> Result<()> {
|
2017-07-10 19:12:24 +08:00
|
|
|
let filename = filename.as_ref();
|
2015-09-14 17:08:48 +08:00
|
|
|
|
2017-07-10 19:26:43 +08:00
|
|
|
let mut buffer = Vec::new();
|
|
|
|
File::open(filename)?.read_to_end(&mut buffer)?;
|
|
|
|
|
|
|
|
// We needed the buffer so we'd only overwrite the existing content if we
|
|
|
|
// could successfully load the file into memory.
|
|
|
|
dest.clear();
|
|
|
|
dest.append(&mut buffer);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2018-07-26 04:51:09 +08:00
|
|
|
use std::fs;
|
2017-07-10 19:26:43 +08:00
|
|
|
use std::path::PathBuf;
|
2018-07-24 01:45:01 +08:00
|
|
|
use tempfile::Builder as TempFileBuilder;
|
2017-07-10 19:26:43 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn theme_uses_defaults_with_nonexistent_src_dir() {
|
|
|
|
let non_existent = PathBuf::from("/non/existent/directory/");
|
|
|
|
assert!(!non_existent.exists());
|
|
|
|
|
|
|
|
let should_be = Theme::default();
|
|
|
|
let got = Theme::new(&non_existent);
|
|
|
|
|
|
|
|
assert_eq!(got, should_be);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn theme_dir_overrides_defaults() {
|
2018-07-26 04:51:09 +08:00
|
|
|
let files = [
|
|
|
|
"index.hbs",
|
2020-05-01 13:47:50 +08:00
|
|
|
"head.hbs",
|
2020-05-27 02:23:36 +08:00
|
|
|
"redirect.hbs",
|
2018-07-26 04:51:09 +08:00
|
|
|
"header.hbs",
|
|
|
|
"favicon.png",
|
2020-05-18 08:34:03 +08:00
|
|
|
"favicon.svg",
|
2018-07-26 04:51:09 +08:00
|
|
|
"css/chrome.css",
|
2020-05-15 13:48:28 +08:00
|
|
|
"css/fonts.css",
|
2018-07-26 04:51:09 +08:00
|
|
|
"css/general.css",
|
|
|
|
"css/print.css",
|
|
|
|
"css/variables.css",
|
|
|
|
"book.js",
|
|
|
|
"highlight.js",
|
|
|
|
"tomorrow-night.css",
|
|
|
|
"highlight.css",
|
|
|
|
"ayu-highlight.css",
|
|
|
|
"clipboard.min.js",
|
|
|
|
];
|
|
|
|
|
|
|
|
let temp = TempFileBuilder::new().prefix("mdbook-").tempdir().unwrap();
|
|
|
|
fs::create_dir(temp.path().join("css")).unwrap();
|
2017-07-10 19:26:43 +08:00
|
|
|
|
|
|
|
// "touch" all of the special files so we have empty copies
|
2018-07-26 04:51:09 +08:00
|
|
|
for file in &files {
|
|
|
|
File::create(&temp.path().join(file)).unwrap();
|
2017-06-07 04:35:44 +08:00
|
|
|
}
|
2017-07-10 19:26:43 +08:00
|
|
|
|
|
|
|
let got = Theme::new(temp.path());
|
|
|
|
|
|
|
|
let empty = Theme {
|
|
|
|
index: Vec::new(),
|
2020-05-01 13:47:50 +08:00
|
|
|
head: Vec::new(),
|
2020-05-27 02:23:36 +08:00
|
|
|
redirect: Vec::new(),
|
2017-09-28 07:06:30 +08:00
|
|
|
header: Vec::new(),
|
2018-07-26 04:51:09 +08:00
|
|
|
chrome_css: Vec::new(),
|
|
|
|
general_css: Vec::new(),
|
|
|
|
print_css: Vec::new(),
|
|
|
|
variables_css: Vec::new(),
|
2020-05-18 08:34:03 +08:00
|
|
|
favicon_png: Vec::new(),
|
|
|
|
favicon_svg: Vec::new(),
|
2017-07-10 19:26:43 +08:00
|
|
|
js: Vec::new(),
|
|
|
|
highlight_css: Vec::new(),
|
|
|
|
tomorrow_night_css: Vec::new(),
|
|
|
|
ayu_highlight_css: Vec::new(),
|
|
|
|
highlight_js: Vec::new(),
|
|
|
|
clipboard_js: Vec::new(),
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(got, empty);
|
2015-08-06 04:35:26 +08:00
|
|
|
}
|
2017-07-10 19:26:43 +08:00
|
|
|
}
|