mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 17:47:13 +00:00
290 lines
8.4 KiB
Rust
290 lines
8.4 KiB
Rust
use crate::shadow;
|
|
use crate::utils::{self, exec_cmd};
|
|
|
|
use directories_next::ProjectDirs;
|
|
use std::fs;
|
|
use std::path::PathBuf;
|
|
use std::time::Duration;
|
|
|
|
#[cfg(feature = "http")]
|
|
const GIT_IO_BASE_URL: &str = "https://git.io/";
|
|
|
|
pub fn create() {
|
|
println!("{}\n", shadow::version().trim());
|
|
let os_info = os_info::get();
|
|
|
|
let environment = Environment {
|
|
os_type: os_info.os_type(),
|
|
os_version: os_info.version().to_owned(),
|
|
shell_info: get_shell_info(),
|
|
terminal_info: get_terminal_info(),
|
|
starship_config: get_starship_config(),
|
|
};
|
|
|
|
let link = make_github_issue_link(environment);
|
|
let short_link = shorten_link(&link);
|
|
|
|
if open::that(&link)
|
|
.map(|status| status.success())
|
|
.unwrap_or(false)
|
|
{
|
|
println!("Take a look at your browser. A GitHub issue has been populated with your configuration.");
|
|
println!("If your browser has failed to open, please click this link:\n");
|
|
} else {
|
|
println!("Click this link to create a GitHub issue populated with your configuration:\n");
|
|
}
|
|
|
|
println!(" {}", short_link.unwrap_or(link));
|
|
}
|
|
|
|
#[cfg(feature = "http")]
|
|
fn shorten_link(link: &str) -> Option<String> {
|
|
attohttpc::post(&format!("{}{}", GIT_IO_BASE_URL, "create"))
|
|
.form(&[("url", link)])
|
|
.ok()
|
|
.and_then(|r| r.send().ok())
|
|
.and_then(|r| r.text().ok())
|
|
.map(|slug| format!("{}{}", GIT_IO_BASE_URL, slug))
|
|
}
|
|
|
|
#[cfg(not(feature = "http"))]
|
|
fn shorten_link(_url: &str) -> Option<String> {
|
|
None
|
|
}
|
|
|
|
const UNKNOWN_SHELL: &str = "<unknown shell>";
|
|
const UNKNOWN_TERMINAL: &str = "<unknown terminal>";
|
|
const UNKNOWN_VERSION: &str = "<unknown version>";
|
|
const UNKNOWN_CONFIG: &str = "<unknown config>";
|
|
const GITHUB_CHAR_LIMIT: usize = 8100; // Magic number accepted by Github
|
|
|
|
struct Environment {
|
|
os_type: os_info::Type,
|
|
os_version: os_info::Version,
|
|
shell_info: ShellInfo,
|
|
terminal_info: TerminalInfo,
|
|
starship_config: String,
|
|
}
|
|
|
|
fn get_pkg_branch_tag() -> &'static str {
|
|
if !shadow::TAG.is_empty() {
|
|
return shadow::TAG;
|
|
}
|
|
shadow::BRANCH
|
|
}
|
|
|
|
fn make_github_issue_link(environment: Environment) -> String {
|
|
let body = urlencoding::encode(&format!("#### Current Behavior
|
|
<!-- A clear and concise description of the behavior. -->
|
|
|
|
#### Expected Behavior
|
|
<!-- A clear and concise description of what you expected to happen. -->
|
|
|
|
#### Additional context/Screenshots
|
|
<!-- Add any other context about the problem here. If applicable, add screenshots to help explain. -->
|
|
|
|
#### Possible Solution
|
|
<!--- Only if you have suggestions on a fix for the bug -->
|
|
|
|
#### Environment
|
|
- Starship version: {starship_version}
|
|
- {shell_name} version: {shell_version}
|
|
- Operating system: {os_name} {os_version}
|
|
- Terminal emulator: {terminal_name} {terminal_version}
|
|
- Git Commit Hash: {git_commit_hash}
|
|
- Branch/Tag: {pkg_branch_tag}
|
|
- Rust Version: {rust_version}
|
|
- Rust channel: {rust_channel} {build_rust_channel}
|
|
- Build Time: {build_time}
|
|
#### Relevant Shell Configuration
|
|
|
|
```bash
|
|
{shell_config}
|
|
```
|
|
|
|
#### Starship Configuration
|
|
|
|
```toml
|
|
{starship_config}
|
|
```",
|
|
starship_version = shadow::PKG_VERSION,
|
|
shell_name = environment.shell_info.name,
|
|
shell_version = environment.shell_info.version,
|
|
terminal_name = environment.terminal_info.name,
|
|
terminal_version = environment.terminal_info.version,
|
|
os_name = environment.os_type,
|
|
os_version = environment.os_version,
|
|
shell_config = environment.shell_info.config,
|
|
starship_config = environment.starship_config,
|
|
git_commit_hash = shadow::SHORT_COMMIT,
|
|
pkg_branch_tag = get_pkg_branch_tag(),
|
|
rust_version = shadow::RUST_VERSION,
|
|
rust_channel = shadow::RUST_CHANNEL,
|
|
build_rust_channel = shadow::BUILD_RUST_CHANNEL,
|
|
build_time = shadow::BUILD_TIME,
|
|
))
|
|
.replace("%20", "+");
|
|
|
|
format!(
|
|
"https://github.com/starship/starship/issues/new?template={}&body={}",
|
|
urlencoding::encode("Bug_report.md"),
|
|
body
|
|
)
|
|
.chars()
|
|
.take(GITHUB_CHAR_LIMIT)
|
|
.collect()
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
struct ShellInfo {
|
|
name: String,
|
|
version: String,
|
|
config: String,
|
|
}
|
|
|
|
fn get_shell_info() -> ShellInfo {
|
|
let shell = std::env::var("STARSHIP_SHELL");
|
|
if shell.is_err() {
|
|
return ShellInfo {
|
|
name: UNKNOWN_SHELL.to_string(),
|
|
version: UNKNOWN_VERSION.to_string(),
|
|
config: UNKNOWN_CONFIG.to_string(),
|
|
};
|
|
}
|
|
|
|
let shell = shell.unwrap();
|
|
|
|
let version = exec_cmd(&shell, &["--version"], Duration::from_millis(500))
|
|
.map(|output| output.stdout.trim().to_string())
|
|
.unwrap_or_else(|| UNKNOWN_VERSION.to_string());
|
|
|
|
let config = get_config_path(&shell)
|
|
.and_then(|config_path| fs::read_to_string(config_path).ok())
|
|
.map(|config| config.trim().to_string())
|
|
.unwrap_or_else(|| UNKNOWN_CONFIG.to_string());
|
|
|
|
ShellInfo {
|
|
name: shell,
|
|
version,
|
|
config,
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
struct TerminalInfo {
|
|
name: String,
|
|
version: String,
|
|
}
|
|
|
|
fn get_terminal_info() -> TerminalInfo {
|
|
let terminal = std::env::var("TERM_PROGRAM")
|
|
.or_else(|_| std::env::var("LC_TERMINAL"))
|
|
.unwrap_or_else(|_| UNKNOWN_TERMINAL.to_string());
|
|
|
|
let version = std::env::var("TERM_PROGRAM_VERSION")
|
|
.or_else(|_| std::env::var("LC_TERMINAL_VERSION"))
|
|
.unwrap_or_else(|_| UNKNOWN_VERSION.to_string());
|
|
|
|
TerminalInfo {
|
|
name: terminal,
|
|
version,
|
|
}
|
|
}
|
|
|
|
fn get_config_path(shell: &str) -> Option<PathBuf> {
|
|
if shell == "nu" {
|
|
return ProjectDirs::from("org", "nushell", "nu")
|
|
.map(|project_dirs| project_dirs.config_dir().join("config.toml"));
|
|
}
|
|
|
|
utils::home_dir().and_then(|home_dir| {
|
|
match shell {
|
|
"bash" => Some(".bashrc"),
|
|
"fish" => Some(".config/fish/config.fish"),
|
|
"ion" => Some(".config/ion/initrc"),
|
|
"powershell" => {
|
|
if cfg!(windows) {
|
|
Some("Documents/PowerShell/Microsoft.PowerShell_profile.ps1")
|
|
} else {
|
|
Some(".config/powershell/Microsoft.PowerShell_profile.ps1")
|
|
}
|
|
}
|
|
"zsh" => Some(".zshrc"),
|
|
"elvish" => Some(".elvish/rc.elv"),
|
|
"tcsh" => Some(".tcshrc"),
|
|
_ => None,
|
|
}
|
|
.map(|path| home_dir.join(path))
|
|
})
|
|
}
|
|
|
|
fn get_starship_config() -> String {
|
|
std::env::var("STARSHIP_CONFIG")
|
|
.map(PathBuf::from)
|
|
.ok()
|
|
.or_else(|| {
|
|
utils::home_dir().map(|mut home_dir| {
|
|
home_dir.push(".config/starship.toml");
|
|
home_dir
|
|
})
|
|
})
|
|
.and_then(|config_path| fs::read_to_string(config_path).ok())
|
|
.unwrap_or_else(|| UNKNOWN_CONFIG.to_string())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use std::env;
|
|
|
|
#[test]
|
|
fn test_make_github_link() {
|
|
let environment = Environment {
|
|
os_type: os_info::Type::Linux,
|
|
os_version: os_info::Version::Semantic(1, 2, 3),
|
|
shell_info: ShellInfo {
|
|
name: "test_shell".to_string(),
|
|
version: "2.3.4".to_string(),
|
|
config: "No config".to_string(),
|
|
},
|
|
terminal_info: TerminalInfo {
|
|
name: "test_terminal".to_string(),
|
|
version: "5.6.7".to_string(),
|
|
},
|
|
starship_config: "No Starship config".to_string(),
|
|
};
|
|
|
|
let link = make_github_issue_link(environment);
|
|
|
|
assert!(link.contains(clap::crate_version!()));
|
|
assert!(link.contains("Linux"));
|
|
assert!(link.contains("1.2.3"));
|
|
assert!(link.contains("test_shell"));
|
|
assert!(link.contains("2.3.4"));
|
|
assert!(link.contains("No+config"));
|
|
assert!(link.contains("No+Starship+config"));
|
|
}
|
|
|
|
#[test]
|
|
fn test_get_shell_info() {
|
|
env::remove_var("STARSHIP_SHELL");
|
|
let unknown_shell = get_shell_info();
|
|
assert_eq!(UNKNOWN_SHELL, &unknown_shell.name);
|
|
|
|
env::set_var("STARSHIP_SHELL", "fish");
|
|
|
|
let fish_shell = get_shell_info();
|
|
assert_eq!("fish", &fish_shell.name);
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(not(windows))]
|
|
fn test_get_config_path() {
|
|
let config_path = get_config_path("bash");
|
|
assert_eq!(
|
|
utils::home_dir().unwrap().join(".bashrc"),
|
|
config_path.unwrap()
|
|
);
|
|
}
|
|
}
|