1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-26 11:42:36 +00:00
starship/src/modules/package.rs

110 lines
3.0 KiB
Rust
Raw Normal View History

2019-05-01 20:34:24 +00:00
use super::{Context, Module};
2019-05-01 14:45:56 +00:00
use ansi_term::Color;
use serde_json;
use std::fs::File;
use std::io;
use std::io::Read;
use std::path::PathBuf;
use toml;
/// Creates a segment with the current package version
///
/// Will display if a version is defined for your Node.js or Rust project (if one exists)
2019-05-01 20:34:24 +00:00
pub fn segment(context: &Context) -> Option<Module> {
2019-05-01 14:45:56 +00:00
match get_package_version(context) {
Some(package_version) => {
2019-05-01 20:34:24 +00:00
const PACKAGE_CHAR: &str = "📦 ";
let module_color = Color::Red.bold();
2019-05-01 14:45:56 +00:00
2019-05-01 20:34:24 +00:00
let mut module = Module::new("package");
module.set_style(module_color);
module.get_prefix().set_value("is ");
2019-05-01 14:45:56 +00:00
2019-05-01 20:34:24 +00:00
module.new_segment("symbol", PACKAGE_CHAR);
module.new_segment("version", package_version);
2019-05-01 14:45:56 +00:00
2019-05-01 20:34:24 +00:00
Some(module)
2019-05-01 14:45:56 +00:00
}
None => None,
}
}
// TODO: Combine into one function and just call for different file names!
fn is_cargo_toml(dir_entry: &PathBuf) -> bool {
dir_entry.is_file() && dir_entry.file_name().unwrap_or_default() == "Cargo.toml"
}
fn is_package_json(dir_entry: &PathBuf) -> bool {
dir_entry.is_file() && dir_entry.file_name().unwrap_or_default() == "package.json"
}
// TODO: Move to `utils.rs` file and import
fn read_file(file_name: &str) -> io::Result<String> {
let mut file = File::open(file_name)?;
let mut data = String::new();
file.read_to_string(&mut data)?;
Ok(data)
}
fn extract_cargo_version(file_contents: String) -> Option<String> {
let cargo_toml = file_contents.parse::<toml::Value>().ok()?;
match cargo_toml["package"]["version"].as_str() {
Some(raw_version) => {
let version = format_version(raw_version.to_string());
Some(version)
}
None => None,
}
}
fn extract_package_version(file_contents: String) -> Option<String> {
let json: Option<serde_json::Value> = serde_json::from_str(&file_contents).ok()?;
match json {
Some(json) => {
let raw_version = json["version"].to_string();
if raw_version == "null" {
None
} else {
Some(format_version(raw_version))
}
}
None => None,
}
}
fn get_package_version(context: &Context) -> Option<String> {
let has_cargo_toml = context.dir_files.iter().any(is_cargo_toml);
if has_cargo_toml {
let file_contents = read_file("Cargo.toml").ok()?;
return extract_cargo_version(file_contents);
}
let has_package_json = context.dir_files.iter().any(is_package_json);
if has_package_json {
let file_contents = read_file("package.json").ok()?;
return extract_package_version(file_contents);
}
None
}
fn format_version(version: String) -> String {
format!("v{}", version.replace('"', "").trim())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_format_version() {
let input = String::from("0.1.0");
assert_eq!(format_version(input), "v0.1.0");
}
}