use dprint_core::types::ErrBox;
use std::path::{Path, PathBuf};
use crate::cache::Cache;
use crate::cli::{CliArgs, SubCommand};
use crate::environment::Environment;
use crate::utils::{resolve_url_or_file_path, PathSource, ResolvedPath};
const DEFAULT_CONFIG_FILE_NAME: &'static str = "dprint.json";
const HIDDEN_CONFIG_FILE_NAME: &'static str = ".dprint.json";
const OLD_CONFIG_FILE_NAME: &'static str = ".dprintrc.json";
#[derive(Debug)]
pub struct ResolvedConfigPath {
pub resolved_path: ResolvedPath,
pub base_path: PathBuf,
}
pub fn resolve_main_config_path<'a, TEnvironment: Environment>(
args: &CliArgs,
cache: &Cache<TEnvironment>,
environment: &TEnvironment,
) -> Result<ResolvedConfigPath, ErrBox> {
return Ok(if let Some(config) = &args.config {
let base_path = environment.cwd();
let resolved_path = resolve_url_or_file_path(config, &PathSource::new_local(base_path.clone()), cache, environment)?;
ResolvedConfigPath { resolved_path, base_path }
} else {
get_default_paths(args, environment)
});
fn get_default_paths(args: &CliArgs, environment: &impl Environment) -> ResolvedConfigPath {
let start_search_dir = get_start_search_directory(args, environment);
let config_file_path = get_config_file_in_dir(&start_search_dir, environment);
if let Some(config_file_path) = config_file_path {
ResolvedConfigPath {
resolved_path: ResolvedPath::local(config_file_path),
base_path: start_search_dir,
}
} else if let Some(resolved_config_path) = get_default_config_file_in_ancestor_directories(environment) {
resolved_config_path
} else {
ResolvedConfigPath {
resolved_path: ResolvedPath::local(environment.cwd().join(DEFAULT_CONFIG_FILE_NAME)),
base_path: environment.cwd(),
}
}
}
fn get_start_search_directory(args: &CliArgs, environment: &impl Environment) -> PathBuf {
if let SubCommand::StdInFmt(command) = &args.sub_command {
if environment.is_absolute_path(&command.file_name_or_path) {
PathBuf::from(&command.file_name_or_path)
.parent()
.map(|p| p.to_owned())
.unwrap_or(environment.cwd())
} else {
environment.cwd()
}
} else {
environment.cwd()
}
}
fn get_default_config_file_in_ancestor_directories(environment: &impl Environment) -> Option<ResolvedConfigPath> {
let cwd = environment.cwd();
for ancestor_dir in cwd.ancestors() {
let ancestor_dir = ancestor_dir.to_path_buf();
if let Some(ancestor_config_path) = get_config_file_in_dir(&ancestor_dir, environment) {
return Some(ResolvedConfigPath {
resolved_path: ResolvedPath::local(ancestor_config_path),
base_path: ancestor_dir,
});
}
}
None
}
fn get_config_file_in_dir(dir: &Path, environment: &impl Environment) -> Option<PathBuf> {
if let Some(path) = get_config_file_in_dir_with_name(dir, DEFAULT_CONFIG_FILE_NAME, environment) {
Some(path)
} else if let Some(path) = get_config_file_in_dir_with_name(dir, HIDDEN_CONFIG_FILE_NAME, environment) {
Some(path)
} else if let Some(path) = get_config_file_in_dir_with_name(dir, OLD_CONFIG_FILE_NAME, environment) {
environment.log_error("WARNING: .dprintrc.json will be deprecated soon. Please rename it to dprint.json");
Some(path)
} else {
None
}
}
fn get_config_file_in_dir_with_name(dir: &Path, file_name: &str, environment: &impl Environment) -> Option<PathBuf> {
let config_path = dir.join(file_name);
if environment.path_exists(&config_path) {
return Some(config_path);
}
let config_path = dir.join("config").join(file_name);
if environment.path_exists(&config_path) {
environment.log_error("WARNING: Automatic resolution of the configuration file in the config sub directory will be deprecated soon. Please move the configuration file to the parent directory.");
return Some(config_path);
}
None
}
}