2019-07-02 20:12:53 +00:00
|
|
|
use crate::config::{Config, TableExt};
|
2019-06-10 14:56:17 +00:00
|
|
|
use crate::module::Module;
|
|
|
|
|
2019-04-19 20:57:14 +00:00
|
|
|
use clap::ArgMatches;
|
2019-04-27 02:07:07 +00:00
|
|
|
use git2::Repository;
|
2019-04-19 20:57:14 +00:00
|
|
|
use std::env;
|
2019-05-12 17:37:23 +00:00
|
|
|
use std::ffi::OsStr;
|
2019-04-23 18:51:08 +00:00
|
|
|
use std::fs;
|
2019-04-19 20:57:14 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2019-07-15 22:18:19 +00:00
|
|
|
/// Context contains data or common methods that may be used by multiple modules.
|
|
|
|
/// The data contained within Context will be relevant to this particular rendering
|
|
|
|
/// of the prompt.
|
2019-04-19 20:57:14 +00:00
|
|
|
pub struct Context<'a> {
|
2019-07-15 22:18:19 +00:00
|
|
|
/// The deserialized configuration map from the user's `starship.toml` file.
|
2019-06-10 14:56:17 +00:00
|
|
|
pub config: Config,
|
2019-07-15 22:18:19 +00:00
|
|
|
|
|
|
|
/// The current working directory that starship is being called in.
|
2019-04-19 20:57:14 +00:00
|
|
|
pub current_dir: PathBuf,
|
2019-07-15 22:18:19 +00:00
|
|
|
|
|
|
|
/// A vector containing the full paths of all the files in `current_dir`.
|
2019-04-23 18:51:08 +00:00
|
|
|
pub dir_files: Vec<PathBuf>,
|
2019-07-15 22:18:19 +00:00
|
|
|
|
|
|
|
/// The map of arguments that were passed when starship was called.
|
2019-04-19 20:57:14 +00:00
|
|
|
pub arguments: ArgMatches<'a>,
|
2019-07-15 22:18:19 +00:00
|
|
|
|
|
|
|
/// If `current_dir` is a git repository or is contained within one,
|
|
|
|
/// this is the path to the root of that repo.
|
2019-05-10 03:51:50 +00:00
|
|
|
pub repo_root: Option<PathBuf>,
|
2019-07-15 22:18:19 +00:00
|
|
|
|
|
|
|
/// If `current_dir` is a git repository or is contained within one,
|
|
|
|
/// this is the current branch name of that repo.
|
2019-05-14 04:43:11 +00:00
|
|
|
pub branch_name: Option<String>,
|
2019-04-19 20:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Context<'a> {
|
2019-07-15 22:18:19 +00:00
|
|
|
/// Identify the current working directory and create an instance of Context
|
|
|
|
/// for it.
|
2019-04-19 20:57:14 +00:00
|
|
|
pub fn new(arguments: ArgMatches) -> Context {
|
2019-06-06 12:18:00 +00:00
|
|
|
// Retreive the "path" flag. If unavailable, use the current directory instead.
|
|
|
|
let path = arguments
|
|
|
|
.value_of("path")
|
|
|
|
.map(From::from)
|
|
|
|
.unwrap_or_else(|| env::current_dir().expect("Unable to identify current directory."));
|
|
|
|
|
|
|
|
Context::new_with_dir(arguments, path)
|
2019-04-19 20:57:14 +00:00
|
|
|
}
|
|
|
|
|
2019-07-15 22:18:19 +00:00
|
|
|
/// Create a new instance of Context for the provided directory
|
2019-04-19 20:57:14 +00:00
|
|
|
pub fn new_with_dir<T>(arguments: ArgMatches, dir: T) -> Context
|
|
|
|
where
|
|
|
|
T: Into<PathBuf>,
|
|
|
|
{
|
2019-06-10 14:56:17 +00:00
|
|
|
let config = Config::initialize();
|
|
|
|
|
2019-04-23 18:51:08 +00:00
|
|
|
// TODO: Currently gets the physical directory. Get the logical directory.
|
|
|
|
let current_dir = Context::expand_tilde(dir.into());
|
|
|
|
|
|
|
|
let dir_files = fs::read_dir(¤t_dir)
|
|
|
|
.unwrap_or_else(|_| {
|
|
|
|
panic!(
|
|
|
|
"Unable to read current directory: {}",
|
|
|
|
current_dir.to_string_lossy()
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.filter_map(Result::ok)
|
|
|
|
.map(|entry| entry.path())
|
|
|
|
.collect::<Vec<PathBuf>>();
|
|
|
|
|
2019-05-14 04:43:11 +00:00
|
|
|
let repository = Repository::discover(¤t_dir).ok();
|
|
|
|
let repo_root = repository
|
|
|
|
.as_ref()
|
2019-05-10 03:51:50 +00:00
|
|
|
.and_then(|repo| repo.workdir().map(|repo| repo.to_path_buf()));
|
2019-05-14 04:43:11 +00:00
|
|
|
let branch_name = repository
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|repo| get_current_branch(&repo));
|
2019-04-27 02:07:07 +00:00
|
|
|
|
2019-04-19 20:57:14 +00:00
|
|
|
Context {
|
2019-06-10 14:56:17 +00:00
|
|
|
config,
|
2019-04-19 20:57:14 +00:00
|
|
|
arguments,
|
2019-04-27 02:07:07 +00:00
|
|
|
current_dir,
|
2019-04-23 18:51:08 +00:00
|
|
|
dir_files,
|
2019-05-10 03:51:50 +00:00
|
|
|
repo_root,
|
2019-05-14 04:43:11 +00:00
|
|
|
branch_name,
|
2019-04-23 18:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert a `~` in a path to the home directory
|
|
|
|
fn expand_tilde(dir: PathBuf) -> PathBuf {
|
|
|
|
if dir.starts_with("~") {
|
|
|
|
let without_home = dir.strip_prefix("~").unwrap();
|
|
|
|
return dirs::home_dir().unwrap().join(without_home);
|
2019-04-19 20:57:14 +00:00
|
|
|
}
|
2019-04-23 18:51:08 +00:00
|
|
|
dir
|
2019-04-19 20:57:14 +00:00
|
|
|
}
|
2019-05-12 17:37:23 +00:00
|
|
|
|
2019-07-02 20:12:53 +00:00
|
|
|
/// Create a new module
|
|
|
|
///
|
|
|
|
/// Will return `None` if the module is disabled by configuration, by setting
|
|
|
|
/// the `disabled` key to `true` in the configuration for that module.
|
|
|
|
pub fn new_module(&self, name: &str) -> Option<Module> {
|
|
|
|
let config = self.config.get_module_config(name);
|
|
|
|
|
|
|
|
// If the segment has "disabled" set to "true", don't show it
|
|
|
|
let disabled = config
|
|
|
|
.map(|table| table.get_as_bool("disabled"))
|
|
|
|
.unwrap_or(None);
|
|
|
|
|
|
|
|
if disabled == Some(true) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(Module::new(name, config))
|
2019-06-10 14:56:17 +00:00
|
|
|
}
|
|
|
|
|
2019-05-12 17:37:23 +00:00
|
|
|
// returns a new ScanDir struct with reference to current dir_files of context
|
|
|
|
// see ScanDir for methods
|
|
|
|
pub fn new_scan_dir(&'a self) -> ScanDir<'a> {
|
|
|
|
ScanDir {
|
|
|
|
dir_files: self.dir_files.as_ref(),
|
|
|
|
files: &[],
|
|
|
|
folders: &[],
|
|
|
|
extensions: &[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// A struct of Criteria which will be used to verify current PathBuf is
|
|
|
|
// of X language, criteria can be set via the builder pattern
|
|
|
|
pub struct ScanDir<'a> {
|
|
|
|
dir_files: &'a Vec<PathBuf>, // Replace with reference
|
|
|
|
files: &'a [&'a str],
|
|
|
|
folders: &'a [&'a str],
|
|
|
|
extensions: &'a [&'a str],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ScanDir<'a> {
|
|
|
|
pub fn set_files(mut self, files: &'a [&'a str]) -> Self {
|
|
|
|
self.files = files;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_extensions(mut self, extensions: &'a [&'a str]) -> Self {
|
|
|
|
self.extensions = extensions;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_folders(mut self, folders: &'a [&'a str]) -> Self {
|
|
|
|
self.folders = folders;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// based on the current Pathbuf check to see
|
|
|
|
/// if any of this criteria match or exist and returning a boolean
|
|
|
|
pub fn scan(&mut self) -> bool {
|
|
|
|
self.dir_files.iter().any(|path| {
|
2019-05-22 16:04:51 +00:00
|
|
|
if path.is_dir() {
|
|
|
|
return path_has_name(&path, &self.folders);
|
|
|
|
} else {
|
|
|
|
return path_has_name(&path, &self.files) || has_extension(&path, &self.extensions);
|
|
|
|
}
|
2019-05-12 17:37:23 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// checks to see if the pathbuf matches a file or folder name
|
|
|
|
pub fn path_has_name<'a>(dir_entry: &PathBuf, names: &'a [&'a str]) -> bool {
|
2019-07-14 21:54:45 +00:00
|
|
|
let found_file_or_folder_name = names.iter().find(|file_or_folder_name| {
|
2019-05-12 17:37:23 +00:00
|
|
|
dir_entry
|
|
|
|
.file_name()
|
|
|
|
.and_then(OsStr::to_str)
|
|
|
|
.unwrap_or_default()
|
|
|
|
== **file_or_folder_name
|
|
|
|
});
|
|
|
|
|
|
|
|
match found_file_or_folder_name {
|
|
|
|
Some(name) => !name.is_empty(),
|
|
|
|
None => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// checks if pathbuf matches the extension provided
|
|
|
|
pub fn has_extension<'a>(dir_entry: &PathBuf, extensions: &'a [&'a str]) -> bool {
|
2019-07-14 21:54:45 +00:00
|
|
|
let found_ext = extensions.iter().find(|ext| {
|
2019-05-12 17:37:23 +00:00
|
|
|
dir_entry
|
|
|
|
.extension()
|
|
|
|
.and_then(OsStr::to_str)
|
|
|
|
.unwrap_or_default()
|
|
|
|
== **ext
|
|
|
|
});
|
|
|
|
|
|
|
|
match found_ext {
|
|
|
|
Some(extension) => !extension.is_empty(),
|
|
|
|
None => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 16:04:51 +00:00
|
|
|
fn get_current_branch(repository: &Repository) -> Option<String> {
|
|
|
|
let head = repository.head().ok()?;
|
|
|
|
let shorthand = head.shorthand();
|
|
|
|
|
|
|
|
shorthand.map(|branch| branch.to_string())
|
|
|
|
}
|
|
|
|
|
2019-05-12 17:37:23 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_has_name() {
|
|
|
|
let mut buf = PathBuf::from("/");
|
|
|
|
let files = vec!["package.json"];
|
|
|
|
|
|
|
|
assert_eq!(path_has_name(&buf, &files), false);
|
|
|
|
|
|
|
|
buf.set_file_name("some-file.js");
|
|
|
|
assert_eq!(path_has_name(&buf, &files), false);
|
|
|
|
|
|
|
|
buf.set_file_name("package.json");
|
|
|
|
assert_eq!(path_has_name(&buf, &files), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_has_extension() {
|
|
|
|
let mut buf = PathBuf::from("/");
|
|
|
|
let extensions = vec!["js"];
|
|
|
|
|
|
|
|
assert_eq!(has_extension(&buf, &extensions), false);
|
|
|
|
|
|
|
|
buf.set_file_name("some-file.rs");
|
|
|
|
assert_eq!(has_extension(&buf, &extensions), false);
|
|
|
|
|
|
|
|
buf.set_file_name("some-file.js");
|
|
|
|
assert_eq!(has_extension(&buf, &extensions), true)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-05-22 16:04:51 +00:00
|
|
|
fn test_criteria_scan_fails() {
|
2019-05-12 17:37:23 +00:00
|
|
|
let mut failing_criteria = ScanDir {
|
|
|
|
dir_files: &vec![PathBuf::new()],
|
|
|
|
files: &["package.json"],
|
|
|
|
extensions: &["js"],
|
|
|
|
folders: &["node_modules"],
|
|
|
|
};
|
|
|
|
|
|
|
|
// fails if buffer does not match any criteria
|
|
|
|
assert_eq!(failing_criteria.scan(), false);
|
|
|
|
|
2019-05-22 16:04:51 +00:00
|
|
|
let mut failing_dir_criteria = ScanDir {
|
|
|
|
dir_files: &vec![PathBuf::from("/package.js/dog.go")],
|
|
|
|
files: &["package.json"],
|
|
|
|
extensions: &["js"],
|
|
|
|
folders: &["node_modules"],
|
|
|
|
};
|
|
|
|
|
|
|
|
// fails when passed a pathbuf dir matches extension path
|
|
|
|
assert_eq!(failing_dir_criteria.scan(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_criteria_scan_passes() {
|
2019-05-12 17:37:23 +00:00
|
|
|
let mut passing_criteria = ScanDir {
|
|
|
|
dir_files: &vec![PathBuf::from("package.json")],
|
|
|
|
files: &["package.json"],
|
|
|
|
extensions: &["js"],
|
|
|
|
folders: &["node_modules"],
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(passing_criteria.scan(), true);
|
|
|
|
}
|
2019-04-19 20:57:14 +00:00
|
|
|
}
|