2024-09-06 00:39:10 +01:00
|
|
|
use crate::{Command, ListNode, Tab};
|
2024-08-13 22:55:59 +01:00
|
|
|
use ego_tree::{NodeMut, Tree};
|
2024-09-06 00:39:10 +01:00
|
|
|
use include_dir::{include_dir, Dir};
|
2024-08-11 03:52:49 +01:00
|
|
|
use serde::Deserialize;
|
2024-08-13 22:55:59 +01:00
|
|
|
use std::path::{Path, PathBuf};
|
2024-09-06 00:39:10 +01:00
|
|
|
use tempdir::TempDir;
|
|
|
|
|
2024-09-20 01:09:53 +01:00
|
|
|
const TAB_DATA: Dir = include_dir!("$CARGO_MANIFEST_DIR/tabs");
|
2024-09-06 00:39:10 +01:00
|
|
|
|
|
|
|
pub fn get_tabs(validate: bool) -> Vec<Tab> {
|
|
|
|
let tab_files = TabList::get_tabs();
|
|
|
|
let tabs = tab_files.into_iter().map(|path| {
|
|
|
|
let directory = path.parent().unwrap().to_owned();
|
|
|
|
let data = std::fs::read_to_string(path).expect("Failed to read tab data");
|
|
|
|
let mut tab_data: TabEntry = toml::from_str(&data).expect("Failed to parse tab data");
|
|
|
|
|
|
|
|
if validate {
|
|
|
|
filter_entries(&mut tab_data.data);
|
|
|
|
}
|
|
|
|
(tab_data, directory)
|
|
|
|
});
|
|
|
|
|
|
|
|
let tabs: Vec<Tab> = tabs
|
2024-09-19 19:15:30 +01:00
|
|
|
.map(
|
|
|
|
|(
|
|
|
|
TabEntry {
|
|
|
|
name,
|
|
|
|
data,
|
|
|
|
multi_selectable,
|
|
|
|
},
|
|
|
|
directory,
|
|
|
|
)| {
|
|
|
|
let mut tree = Tree::new(ListNode {
|
|
|
|
name: "root".to_string(),
|
|
|
|
description: String::new(),
|
|
|
|
command: Command::None,
|
|
|
|
});
|
|
|
|
let mut root = tree.root_mut();
|
|
|
|
create_directory(data, &mut root, &directory);
|
|
|
|
Tab {
|
|
|
|
name,
|
|
|
|
tree,
|
|
|
|
multi_selectable,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
2024-09-06 00:39:10 +01:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
if tabs.is_empty() {
|
|
|
|
panic!("No tabs found");
|
|
|
|
}
|
|
|
|
tabs
|
|
|
|
}
|
2024-08-09 10:22:19 +01:00
|
|
|
|
2024-08-11 03:52:49 +01:00
|
|
|
#[derive(Deserialize)]
|
2024-08-15 07:09:31 +01:00
|
|
|
struct TabList {
|
|
|
|
directories: Vec<PathBuf>,
|
2024-08-13 22:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
2024-08-15 07:09:31 +01:00
|
|
|
struct TabEntry {
|
|
|
|
name: String,
|
|
|
|
data: Vec<Entry>,
|
2024-09-19 19:15:30 +01:00
|
|
|
#[serde(default = "default_multi_selectable")]
|
|
|
|
multi_selectable: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn default_multi_selectable() -> bool {
|
|
|
|
true
|
2024-08-13 22:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
2024-08-15 07:09:31 +01:00
|
|
|
struct Entry {
|
2024-08-13 22:55:59 +01:00
|
|
|
name: String,
|
2024-08-11 04:05:19 +01:00
|
|
|
#[allow(dead_code)]
|
2024-08-11 03:52:49 +01:00
|
|
|
#[serde(default)]
|
|
|
|
description: String,
|
|
|
|
#[serde(default)]
|
|
|
|
preconditions: Option<Vec<Precondition>>,
|
2024-08-15 07:09:31 +01:00
|
|
|
#[serde(default)]
|
|
|
|
entries: Option<Vec<Entry>>,
|
|
|
|
#[serde(default)]
|
|
|
|
command: Option<String>,
|
|
|
|
#[serde(default)]
|
|
|
|
script: Option<PathBuf>,
|
2024-08-11 03:52:49 +01:00
|
|
|
}
|
2024-08-09 10:22:19 +01:00
|
|
|
|
2024-08-15 07:09:31 +01:00
|
|
|
impl Entry {
|
2024-08-11 03:52:49 +01:00
|
|
|
fn is_supported(&self) -> bool {
|
|
|
|
self.preconditions.as_deref().map_or(true, |preconditions| {
|
|
|
|
preconditions.iter().all(
|
|
|
|
|Precondition {
|
|
|
|
matches,
|
|
|
|
data,
|
|
|
|
values,
|
|
|
|
}| {
|
|
|
|
match data {
|
|
|
|
SystemDataType::Environment(var_name) => std::env::var(var_name)
|
|
|
|
.map_or(false, |var| values.contains(&var) == *matches),
|
|
|
|
SystemDataType::File(path) => {
|
|
|
|
std::fs::read_to_string(path).map_or(false, |data| {
|
|
|
|
values
|
|
|
|
.iter()
|
|
|
|
.any(|matching_value| data.contains(matching_value))
|
|
|
|
== *matches
|
|
|
|
})
|
|
|
|
}
|
2024-08-16 16:48:09 +01:00
|
|
|
SystemDataType::CommandExists => values
|
|
|
|
.iter()
|
|
|
|
.all(|command| which::which(command).is_ok() == *matches),
|
2024-08-11 03:52:49 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct Precondition {
|
|
|
|
// If true, the data must be contained within the list of values.
|
|
|
|
// Otherwise, the data must not be contained within the list of values
|
|
|
|
matches: bool,
|
|
|
|
data: SystemDataType,
|
|
|
|
values: Vec<String>,
|
|
|
|
}
|
2024-08-09 10:22:19 +01:00
|
|
|
|
2024-08-11 03:52:49 +01:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
enum SystemDataType {
|
|
|
|
#[serde(rename = "environment")]
|
|
|
|
Environment(String),
|
|
|
|
#[serde(rename = "file")]
|
|
|
|
File(PathBuf),
|
2024-08-16 16:48:09 +01:00
|
|
|
#[serde(rename = "command_exists")]
|
|
|
|
CommandExists,
|
2024-08-11 03:52:49 +01:00
|
|
|
}
|
|
|
|
|
2024-08-13 22:55:59 +01:00
|
|
|
fn filter_entries(entries: &mut Vec<Entry>) {
|
2024-08-15 07:09:31 +01:00
|
|
|
entries.retain_mut(|entry| {
|
|
|
|
if !entry.is_supported() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if let Some(entries) = &mut entry.entries {
|
|
|
|
filter_entries(entries);
|
|
|
|
!entries.is_empty()
|
|
|
|
} else {
|
|
|
|
true
|
2024-08-13 22:55:59 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2024-08-11 03:52:49 +01:00
|
|
|
|
2024-08-13 22:55:59 +01:00
|
|
|
fn create_directory(data: Vec<Entry>, node: &mut NodeMut<ListNode>, command_dir: &Path) {
|
|
|
|
for entry in data {
|
2024-08-15 07:09:31 +01:00
|
|
|
if [
|
|
|
|
entry.entries.is_some(),
|
|
|
|
entry.command.is_some(),
|
|
|
|
entry.script.is_some(),
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.filter(|&&x| x)
|
|
|
|
.count()
|
|
|
|
> 1
|
|
|
|
{
|
|
|
|
panic!("Entry must have only one data type");
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(entries) = entry.entries {
|
|
|
|
let mut node = node.append(ListNode {
|
|
|
|
name: entry.name,
|
2024-09-19 01:17:08 +01:00
|
|
|
description: entry.description,
|
2024-08-15 07:09:31 +01:00
|
|
|
command: Command::None,
|
|
|
|
});
|
|
|
|
create_directory(entries, &mut node, command_dir);
|
|
|
|
} else if let Some(command) = entry.command {
|
|
|
|
node.append(ListNode {
|
|
|
|
name: entry.name,
|
2024-09-19 01:17:08 +01:00
|
|
|
description: entry.description,
|
2024-08-15 07:09:31 +01:00
|
|
|
command: Command::Raw(command),
|
|
|
|
});
|
|
|
|
} else if let Some(script) = entry.script {
|
|
|
|
let dir = command_dir.join(script);
|
|
|
|
if !dir.exists() {
|
|
|
|
panic!("Script {} does not exist", dir.display());
|
2024-08-13 22:55:59 +01:00
|
|
|
}
|
2024-08-15 07:09:31 +01:00
|
|
|
node.append(ListNode {
|
|
|
|
name: entry.name,
|
2024-09-19 01:17:08 +01:00
|
|
|
description: entry.description,
|
2024-08-15 07:09:31 +01:00
|
|
|
command: Command::LocalFile(dir),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
panic!("Entry must have data");
|
2024-08-13 22:55:59 +01:00
|
|
|
}
|
|
|
|
}
|
2024-08-11 03:52:49 +01:00
|
|
|
}
|
2024-09-06 00:39:10 +01:00
|
|
|
|
2024-08-15 07:09:31 +01:00
|
|
|
impl TabList {
|
2024-09-06 00:39:10 +01:00
|
|
|
fn get_tabs() -> Vec<PathBuf> {
|
|
|
|
let temp_dir = TempDir::new("linutil_scripts").unwrap().into_path();
|
|
|
|
TAB_DATA
|
|
|
|
.extract(&temp_dir)
|
|
|
|
.expect("Failed to extract the saved directory");
|
|
|
|
|
|
|
|
let tab_files =
|
|
|
|
std::fs::read_to_string(temp_dir.join("tabs.toml")).expect("Failed to read tabs.toml");
|
2024-08-15 07:09:31 +01:00
|
|
|
let data: Self = toml::from_str(&tab_files).expect("Failed to parse tabs.toml");
|
|
|
|
|
|
|
|
data.directories
|
2024-09-06 00:39:10 +01:00
|
|
|
.iter()
|
|
|
|
.map(|path| temp_dir.join(path).join("tab_data.toml"))
|
2024-08-15 07:09:31 +01:00
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
}
|