fix zola serve not respecting preserve_dotfiles_in_output (#2113)

* fix `zola serve` not  respecting `preserve_dotfiles_in_output`
This commit is contained in:
Felix Zwettler 2023-02-23 22:01:02 +01:00 committed by Vincent Prouillet
parent 64feaeb3ee
commit 5ad9f84a81
3 changed files with 47 additions and 38 deletions

View file

@ -7,7 +7,6 @@ pub mod tpls;
use std::borrow::Cow; use std::borrow::Cow;
use std::collections::{HashMap, HashSet}; use std::collections::{HashMap, HashSet};
use std::fs::{remove_dir_all, remove_file};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::sync::{Arc, Mutex, RwLock}; use std::sync::{Arc, Mutex, RwLock};
@ -18,13 +17,13 @@ use libs::walkdir::{DirEntry, WalkDir};
use config::{get_config, Config, IndexFormat}; use config::{get_config, Config, IndexFormat};
use content::{Library, Page, Paginator, Section, Taxonomy}; use content::{Library, Page, Paginator, Section, Taxonomy};
use errors::{anyhow, bail, Context as ErrorContext, Result}; use errors::{anyhow, bail, Result};
use libs::relative_path::RelativePathBuf; use libs::relative_path::RelativePathBuf;
use std::time::Instant; use std::time::Instant;
use templates::{load_tera, render_redirect_template}; use templates::{load_tera, render_redirect_template};
use utils::fs::{ use utils::fs::{
copy_directory, copy_file_if_needed, create_directory, create_file, ensure_directory_exists, clean_site_output_folder, copy_directory, copy_file_if_needed, create_directory, create_file,
is_dotfile, ensure_directory_exists,
}; };
use utils::net::{get_available_port, is_external_link}; use utils::net::{get_available_port, is_external_link};
use utils::templates::{render_template, ShortcodeDefinition}; use utils::templates::{render_template, ShortcodeDefinition};
@ -613,34 +612,7 @@ impl Site {
/// Deletes the `public` directory if it exists and the `preserve_dotfiles_in_output` option is set to false, /// Deletes the `public` directory if it exists and the `preserve_dotfiles_in_output` option is set to false,
/// or if set to true: its contents except for the dotfiles at the root level. /// or if set to true: its contents except for the dotfiles at the root level.
pub fn clean(&self) -> Result<()> { pub fn clean(&self) -> Result<()> {
if self.output_path.exists() { clean_site_output_folder(&self.output_path, self.config.preserve_dotfiles_in_output)
if !self.config.preserve_dotfiles_in_output {
return remove_dir_all(&self.output_path)
.context("Couldn't delete output directory");
}
for entry in self.output_path.read_dir().context(format!(
"Couldn't read output directory `{}`",
self.output_path.display()
))? {
let entry = entry.context("Couldn't read entry in output directory")?.path();
// Skip dotfiles if the preserve_dotfiles_in_output configuration option is set
if is_dotfile(&entry) {
continue;
}
if entry.is_dir() {
remove_dir_all(entry)
.context("Couldn't delete folder while cleaning the output directory")?;
} else {
remove_file(entry)
.context("Couldn't delete file while cleaning the output directory")?;
}
}
}
Ok(())
} }
/// Handles whether to write to disk or to memory /// Handles whether to write to disk or to memory

View file

@ -1,6 +1,6 @@
use libs::filetime::{set_file_mtime, FileTime}; use libs::filetime::{set_file_mtime, FileTime};
use libs::walkdir::WalkDir; use libs::walkdir::WalkDir;
use std::fs::{copy, create_dir_all, metadata, File}; use std::fs::{copy, create_dir_all, metadata, remove_dir_all, remove_file, File};
use std::io::prelude::*; use std::io::prelude::*;
use std::path::Path; use std::path::Path;
use std::time::SystemTime; use std::time::SystemTime;
@ -201,6 +201,41 @@ pub fn is_temp_file(path: &Path) -> bool {
} }
} }
/// Deletes the `output_path` directory if it exists and `preserve_dotfiles_in_output` is set to false,
/// or if set to true: its contents except for the dotfiles at the root level.
pub fn clean_site_output_folder(
output_path: &Path,
preserve_dotfiles_in_output: bool,
) -> Result<()> {
if output_path.exists() {
if !preserve_dotfiles_in_output {
return remove_dir_all(output_path).context("Couldn't delete output directory");
}
for entry in output_path
.read_dir()
.context(format!("Couldn't read output directory `{}`", output_path.display()))?
{
let entry = entry.context("Couldn't read entry in output directory")?.path();
// Skip dotfiles if the preserve_dotfiles_in_output configuration option is set
if is_dotfile(&entry) {
continue;
}
if entry.is_dir() {
remove_dir_all(entry)
.context("Couldn't delete folder while cleaning the output directory")?;
} else {
remove_file(entry)
.context("Couldn't delete file while cleaning the output directory")?;
}
}
}
Ok(())
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use std::fs::{metadata, read_to_string, File}; use std::fs::{metadata, read_to_string, File};

View file

@ -21,7 +21,7 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
use std::fs::{read_dir, remove_dir_all}; use std::fs::read_dir;
use std::net::{SocketAddrV4, TcpListener}; use std::net::{SocketAddrV4, TcpListener};
use std::path::{Path, PathBuf, MAIN_SEPARATOR}; use std::path::{Path, PathBuf, MAIN_SEPARATOR};
use std::sync::mpsc::channel; use std::sync::mpsc::channel;
@ -47,7 +47,7 @@ use errors::{anyhow, Context, Result};
use pathdiff::diff_paths; use pathdiff::diff_paths;
use site::sass::compile_sass; use site::sass::compile_sass;
use site::{Site, SITE_CONTENT}; use site::{Site, SITE_CONTENT};
use utils::fs::{copy_file, is_temp_file}; use utils::fs::{clean_site_output_folder, copy_file, is_temp_file};
use crate::messages; use crate::messages;
use std::ffi::OsStr; use std::ffi::OsStr;
@ -441,12 +441,14 @@ pub fn serve(
watchers.join(",") watchers.join(",")
); );
let preserve_dotfiles_in_output = site.config.preserve_dotfiles_in_output;
println!("Press Ctrl+C to stop\n"); println!("Press Ctrl+C to stop\n");
// Delete the output folder on ctrl+C // Clean the output folder on ctrl+C
ctrlc::set_handler(move || { ctrlc::set_handler(move || {
match remove_dir_all(&output_path) { match clean_site_output_folder(&output_path, preserve_dotfiles_in_output) {
Ok(()) => (), Ok(()) => (),
Err(e) => println!("Errored while deleting output folder: {}", e), Err(e) => println!("Errored while cleaning output folder: {}", e),
} }
::std::process::exit(0); ::std::process::exit(0);
}) })