mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-28 07:46:28 +00:00
feat: Implement the prompt module for username (#56)
This commit is contained in:
parent
a213114e9a
commit
08b238114e
3
.gitignore
vendored
3
.gitignore
vendored
@ -10,3 +10,6 @@ Cargo.lock
|
|||||||
|
|
||||||
# VSCode configuration
|
# VSCode configuration
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
|
# Intellij IDE configuration
|
||||||
|
.idea/
|
@ -40,6 +40,8 @@ pub fn segment(context: &Context) -> Option<Module> {
|
|||||||
let truncated_dir_string = truncate(dir_string, DIR_TRUNCATION_LENGTH);
|
let truncated_dir_string = truncate(dir_string, DIR_TRUNCATION_LENGTH);
|
||||||
module.new_segment("path", truncated_dir_string);
|
module.new_segment("path", truncated_dir_string);
|
||||||
|
|
||||||
|
module.get_prefix().set_value("in ");
|
||||||
|
|
||||||
Some(module)
|
Some(module)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ mod nodejs;
|
|||||||
mod package;
|
mod package;
|
||||||
mod python;
|
mod python;
|
||||||
mod rust;
|
mod rust;
|
||||||
|
mod username;
|
||||||
|
|
||||||
use crate::context::Context;
|
use crate::context::Context;
|
||||||
use crate::module::Module;
|
use crate::module::Module;
|
||||||
@ -24,6 +25,7 @@ pub fn handle(module: &str, context: &Context) -> Option<Module> {
|
|||||||
"package" => package::segment(context),
|
"package" => package::segment(context),
|
||||||
"git_branch" => git_branch::segment(context),
|
"git_branch" => git_branch::segment(context),
|
||||||
"git_status" => git_status::segment(context),
|
"git_status" => git_status::segment(context),
|
||||||
|
"username" => username::segment(context),
|
||||||
|
|
||||||
_ => panic!("Unknown module: {}", module),
|
_ => panic!("Unknown module: {}", module),
|
||||||
}
|
}
|
||||||
|
49
src/modules/username.rs
Normal file
49
src/modules/username.rs
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
use ansi_term::{Color, Style};
|
||||||
|
use std::env;
|
||||||
|
use std::process::Command;
|
||||||
|
|
||||||
|
use super::{Context, Module};
|
||||||
|
|
||||||
|
/// Creates a segment with the current user's username
|
||||||
|
///
|
||||||
|
/// Will display the usename if any of the following criteria are met:
|
||||||
|
/// - The current user isn't the same as the one that is logged in ($LOGNAME != $USER)
|
||||||
|
/// - The current user is root (UID = 0)
|
||||||
|
/// - The user is currently connected as an SSH session ($SSH_CONNECTION)
|
||||||
|
pub fn segment(_context: &Context) -> Option<Module> {
|
||||||
|
let user = env::var("USER").ok();
|
||||||
|
let logname = env::var("LOGNAME").ok();
|
||||||
|
let ssh_connection = env::var("SSH_CONNECTION").ok();
|
||||||
|
|
||||||
|
let mut module_color = Color::Yellow.bold();
|
||||||
|
|
||||||
|
if user != logname || ssh_connection.is_some() || is_root(&mut module_color) {
|
||||||
|
let mut module = Module::new("username");
|
||||||
|
module.set_style(module_color);
|
||||||
|
module.new_segment("username", user?);
|
||||||
|
|
||||||
|
return Some(module);
|
||||||
|
}
|
||||||
|
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_uid() -> Option<u32> {
|
||||||
|
match Command::new("id").arg("-u").output() {
|
||||||
|
Ok(output) => String::from_utf8(output.stdout)
|
||||||
|
.map(|uid| uid.trim().parse::<u32>().ok())
|
||||||
|
.ok()?,
|
||||||
|
Err(_) => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn is_root(style: &mut Style) -> bool {
|
||||||
|
match get_uid() {
|
||||||
|
Some(uid) if uid == 0 => {
|
||||||
|
style.clone_from(&Color::Red.bold());
|
||||||
|
|
||||||
|
true
|
||||||
|
}
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
@ -8,6 +8,7 @@ use crate::modules;
|
|||||||
|
|
||||||
pub fn prompt(args: ArgMatches) {
|
pub fn prompt(args: ArgMatches) {
|
||||||
let prompt_order = vec![
|
let prompt_order = vec![
|
||||||
|
"username",
|
||||||
"directory",
|
"directory",
|
||||||
"git_branch",
|
"git_branch",
|
||||||
"git_status",
|
"git_status",
|
||||||
|
@ -12,7 +12,7 @@ mod common;
|
|||||||
fn home_directory() -> io::Result<()> {
|
fn home_directory() -> io::Result<()> {
|
||||||
let dir = Path::new("~");
|
let dir = Path::new("~");
|
||||||
|
|
||||||
let expected = format!("via {} ", Color::Cyan.bold().paint("~").to_string());
|
let expected = format!("in {} ", Color::Cyan.bold().paint("~").to_string());
|
||||||
let actual = common::render_module("dir", &dir);
|
let actual = common::render_module("dir", &dir);
|
||||||
assert_eq!(expected, actual);
|
assert_eq!(expected, actual);
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ fn directory_in_home() -> io::Result<()> {
|
|||||||
fs::create_dir_all(&dir)?;
|
fs::create_dir_all(&dir)?;
|
||||||
|
|
||||||
let expected = format!(
|
let expected = format!(
|
||||||
"via {} ",
|
"in {} ",
|
||||||
Color::Cyan.bold().paint("~/starship/engine").to_string()
|
Color::Cyan.bold().paint("~/starship/engine").to_string()
|
||||||
);
|
);
|
||||||
let actual = common::render_module("dir", &dir);
|
let actual = common::render_module("dir", &dir);
|
||||||
@ -42,7 +42,7 @@ fn truncated_directory_in_home() -> io::Result<()> {
|
|||||||
fs::create_dir_all(&dir)?;
|
fs::create_dir_all(&dir)?;
|
||||||
|
|
||||||
let expected = format!(
|
let expected = format!(
|
||||||
"via {} ",
|
"in {} ",
|
||||||
Color::Cyan
|
Color::Cyan
|
||||||
.bold()
|
.bold()
|
||||||
.paint("starship/engine/schematics")
|
.paint("starship/engine/schematics")
|
||||||
@ -58,7 +58,7 @@ fn truncated_directory_in_home() -> io::Result<()> {
|
|||||||
fn root_directory() -> io::Result<()> {
|
fn root_directory() -> io::Result<()> {
|
||||||
let dir = Path::new("/");
|
let dir = Path::new("/");
|
||||||
|
|
||||||
let expected = format!("via {} ", Color::Cyan.bold().paint("/").to_string());
|
let expected = format!("in {} ", Color::Cyan.bold().paint("/").to_string());
|
||||||
let actual = common::render_module("dir", &dir);
|
let actual = common::render_module("dir", &dir);
|
||||||
assert_eq!(expected, actual);
|
assert_eq!(expected, actual);
|
||||||
|
|
||||||
@ -69,7 +69,7 @@ fn root_directory() -> io::Result<()> {
|
|||||||
fn directory_in_root() -> io::Result<()> {
|
fn directory_in_root() -> io::Result<()> {
|
||||||
let dir = Path::new("/tmp");
|
let dir = Path::new("/tmp");
|
||||||
|
|
||||||
let expected = format!("via {} ", Color::Cyan.bold().paint("/tmp").to_string());
|
let expected = format!("in {} ", Color::Cyan.bold().paint("/tmp").to_string());
|
||||||
let actual = common::render_module("dir", &dir);
|
let actual = common::render_module("dir", &dir);
|
||||||
assert_eq!(expected, actual);
|
assert_eq!(expected, actual);
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ fn truncated_directory_in_root() -> io::Result<()> {
|
|||||||
fs::create_dir_all(&dir)?;
|
fs::create_dir_all(&dir)?;
|
||||||
|
|
||||||
let expected = format!(
|
let expected = format!(
|
||||||
"via {} ",
|
"in {} ",
|
||||||
Color::Cyan
|
Color::Cyan
|
||||||
.bold()
|
.bold()
|
||||||
.paint("starship/thrusters/rocket")
|
.paint("starship/thrusters/rocket")
|
||||||
@ -105,7 +105,7 @@ fn git_repo_root() -> io::Result<()> {
|
|||||||
Repository::init(&repo_dir).unwrap();
|
Repository::init(&repo_dir).unwrap();
|
||||||
|
|
||||||
let expected = format!(
|
let expected = format!(
|
||||||
"via {} ",
|
"in {} ",
|
||||||
Color::Cyan.bold().paint("rocket-controls").to_string()
|
Color::Cyan.bold().paint("rocket-controls").to_string()
|
||||||
);
|
);
|
||||||
let actual = common::render_module("dir", &repo_dir);
|
let actual = common::render_module("dir", &repo_dir);
|
||||||
@ -125,7 +125,7 @@ fn directory_in_git_repo() -> io::Result<()> {
|
|||||||
Repository::init(&repo_dir).unwrap();
|
Repository::init(&repo_dir).unwrap();
|
||||||
|
|
||||||
let expected = format!(
|
let expected = format!(
|
||||||
"via {} ",
|
"in {} ",
|
||||||
Color::Cyan.bold().paint("rocket-controls/src").to_string()
|
Color::Cyan.bold().paint("rocket-controls/src").to_string()
|
||||||
);
|
);
|
||||||
let actual = common::render_module("dir", &dir);
|
let actual = common::render_module("dir", &dir);
|
||||||
@ -145,7 +145,7 @@ fn truncated_directory_in_git_repo() -> io::Result<()> {
|
|||||||
Repository::init(&repo_dir).unwrap();
|
Repository::init(&repo_dir).unwrap();
|
||||||
|
|
||||||
let expected = format!(
|
let expected = format!(
|
||||||
"via {} ",
|
"in {} ",
|
||||||
Color::Cyan
|
Color::Cyan
|
||||||
.bold()
|
.bold()
|
||||||
.paint("src/meters/fuel-gauge")
|
.paint("src/meters/fuel-gauge")
|
||||||
|
Loading…
Reference in New Issue
Block a user