Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
+175
View File
@@ -0,0 +1,175 @@
use std::fs;
use std::os::unix::fs::symlink;
use std::path::{Path, PathBuf};
use anyhow::{anyhow, Context, Result};
use command::blocking::Command;
use warp_core::channel::ChannelState;
use warp_util::path::ShellFamily;
/// Compute the target path where the symlink should be installed, based on channel
fn cli_install_target_path() -> PathBuf {
PathBuf::from("/usr/local/bin").join(ChannelState::channel().cli_command_name())
}
/// Create a symlink with elevated privileges using osascript
///
/// This function uses macOS's osascript to prompt for administrator privileges
/// and create a symlink
fn create_symlink_with_admin(source: &Path, target: &Path) -> Result<()> {
let source_str = source
.to_str()
.ok_or_else(|| anyhow!("Source path contains invalid UTF-8: {source:?}"))?;
let target_str = target
.to_str()
.ok_or_else(|| anyhow!("Target path contains invalid UTF-8: {target:?}"))?;
let escaped_source = ShellFamily::Posix.shell_escape(source_str);
let escaped_target = ShellFamily::Posix.shell_escape(target_str);
// Use osascript to run the ln command with admin privileges, with a custom prompt
let script = format!(
"do shell script \"ln -sf {escaped_source} {escaped_target}\" with prompt \"Warp needs administrator privileges to install the command in /usr/local/bin.\" with administrator privileges"
);
log::debug!("Creating symlink with admin privileges");
let output = Command::new("osascript")
.arg("-e")
.arg(&script)
.output()
.context("Failed to execute osascript for admin privileges")?;
if !output.status.success() {
let stderr = String::from_utf8_lossy(&output.stderr);
if stderr.contains("User canceled") || stderr.contains("cancelled") {
return Err(anyhow!("Installation cancelled by user."));
}
return Err(anyhow!(
"Failed to create symlink with admin privileges: {stderr}"
));
}
Ok(())
}
/// Remove a file with elevated privileges using osascript
///
/// This function uses macOS's osascript to prompt for administrator privileges
/// and remove a file, used for CLI uninstallation.
fn remove_file_with_admin(target: &Path) -> Result<()> {
let target_str = target
.to_str()
.ok_or_else(|| anyhow!("Target path contains invalid UTF-8: {target:?}"))?;
let escaped_target = ShellFamily::Posix.shell_escape(target_str);
let script = format!(
"do shell script \"rm {escaped_target}\" with prompt \"Warp needs administrator privileges to uninstall the command from /usr/local/bin.\" with administrator privileges"
);
log::debug!("Removing file with admin privileges");
let output = Command::new("osascript")
.arg("-e")
.arg(&script)
.output()
.context("Failed to execute osascript for admin privileges")?;
if !output.status.success() {
let stderr = String::from_utf8_lossy(&output.stderr);
if stderr.contains("User canceled") || stderr.contains("cancelled") {
return Err(anyhow!("Uninstallation cancelled by user."));
}
return Err(anyhow!(
"Failed to remove file with admin privileges: {stderr}"
));
}
Ok(())
}
/// Install the CLI by creating a symlink (channel-specific target)
///
/// This function:
/// 1. Detects the current Warp channel and finds the appropriate binary
/// 2. Attempts to create a symlink without admin privileges first
/// 3. Falls back to prompting for admin privileges if needed
/// 4. Handles existing installations and edge cases
pub fn install_cli() -> Result<()> {
let cli_path = cli_install_target_path();
let current_binary =
std::env::current_exe().context("Failed to get current executable path")?;
// Check if target file exists and handle conflicts
if cli_path.exists() && !cli_path.is_symlink() {
return Err(anyhow!(
"Cannot install: {:?} exists but is not a symlink. Please remove it manually first.",
cli_path
));
}
// Try to create symlink without admin privileges first
let symlink_result = symlink(&current_binary, &cli_path);
match symlink_result {
Ok(_) => {
log::debug!(
"CLI installed successfully without admin privileges: {:?} -> {}",
cli_path,
current_binary.display()
);
}
Err(_) => {
log::debug!("Symlink creation failed, trying with admin privileges");
create_symlink_with_admin(&current_binary, &cli_path)
.context("Failed to create symlink even with admin privileges")?;
log::debug!("CLI installed successfully with admin privileges");
}
}
Ok(())
}
/// Uninstall the CLI by removing the symlink (channel-specific target)
///
/// This function:
/// 1. Verifies that the target is actually a symlink (safety check)
/// 2. Attempts to remove without admin privileges first
/// 3. Falls back to prompting for admin privileges if needed
pub fn uninstall_cli() -> Result<()> {
let cli_path = cli_install_target_path();
if !cli_path.exists() {
return Err(anyhow!("Oz command is not currently installed."));
}
// Safety check: verify it's actually a symlink before removing
if !cli_path.is_symlink() {
return Err(anyhow!(
"Cannot uninstall: {:?} exists but is not a symlink. Please remove it manually.",
cli_path
));
}
// Try to remove without admin privileges first
let remove_result = fs::remove_file(&cli_path);
match remove_result {
Ok(_) => {
log::debug!("CLI uninstalled successfully without admin privileges");
}
Err(_) => {
log::debug!("File removal failed, trying with admin privileges");
remove_file_with_admin(&cli_path)
.context("Failed to remove symlink even with admin privileges")?;
log::debug!("CLI uninstalled successfully with admin privileges");
}
}
Ok(())
}