blob: 43ad0c540e64a1b9125087a4e1c77374235a271b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Handle installing the Atuin CLI
// We can use the standard install script for this
use std::process::Command;
use tokio::{
fs::{read_to_string, OpenOptions},
io::AsyncWriteExt,
};
use atuin_common::shell::Shell;
#[tauri::command]
pub(crate) async fn install_cli() -> Result<(), String> {
let output = Command::new("sh")
.arg("-c")
.arg("curl --proto '=https' --tlsv1.2 -LsSf https://github.com/atuinsh/atuin/releases/latest/download/atuin-installer.sh | sh")
.output().map_err(|e|format!("Failed to execute Atuin installer: {e}"));
Ok(())
}
#[tauri::command]
pub(crate) async fn is_cli_installed() -> Result<bool, String> {
let shell = Shell::default_shell().map_err(|e| format!("Failed to get default shell: {e}"))?;
let output = if shell == Shell::Powershell {
shell.run_interactive(&["atuin --version; if ($?) {echo 'ATUIN FOUND'}"])
.map_err(|e| format!("Failed to run interactive command"))?
} else {
shell
.run_interactive(&["atuin --version && echo 'ATUIN FOUND'"])
.map_err(|e| format!("Failed to run interactive command"))?
};
Ok(output.contains("ATUIN FOUND"))
}
#[tauri::command]
pub(crate) async fn setup_cli() -> Result<(), String> {
let shell = Shell::default_shell().map_err(|e| format!("Failed to get default shell: {e}"))?;
let config_file_path = shell.config_file();
if config_file_path.is_none() {
return Err("Failed to fetch default config file".to_string());
}
let config_file_path = config_file_path.unwrap();
let config_file = read_to_string(config_file_path.clone())
.await
.map_err(|e| format!("Failed to read config file: {e}"))?;
if config_file.contains("atuin init") {
return Ok(());
}
let mut file = OpenOptions::new()
.write(true)
.append(true)
.open(config_file_path)
.await
.unwrap();
let config = format!(
"if [ -x \"$(command -v atuin)\" ]; then eval \"$(atuin init {})\"; fi",
shell.to_string()
);
file.write_all(config.as_bytes())
.await
.map_err(|e| format!("Failed to write Atuin shell init: {e}"));
Ok(())
}
|