use std::path::PathBuf;
use crate::fs_util::atomic_write;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum SourceKind {
Host,
Tunnel,
Container,
Snippet,
Action,
}
impl SourceKind {
pub fn section_label(self) -> &'static str {
match self {
Self::Host => "HOSTS",
Self::Tunnel => "TUNNELS",
Self::Container => "CONTAINERS",
Self::Snippet => "SNIPPETS",
Self::Action => "ACTIONS",
}
}
pub fn render_order() -> [Self; 5] {
[
Self::Host,
Self::Tunnel,
Self::Container,
Self::Snippet,
Self::Action,
]
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum JumpHit {
Action(JumpAction),
Host(HostHit),
Tunnel(TunnelHit),
Container(ContainerHit),
Snippet(SnippetHit),
}
impl JumpHit {
pub fn kind(&self) -> SourceKind {
match self {
Self::Action(_) => SourceKind::Action,
Self::Host(_) => SourceKind::Host,
Self::Tunnel(_) => SourceKind::Tunnel,
Self::Container(_) => SourceKind::Container,
Self::Snippet(_) => SourceKind::Snippet,
}
}
pub fn haystacks(&self) -> Vec<&str> {
match self {
Self::Action(a) => {
let mut v = Vec::with_capacity(2 + a.aliases.len());
v.push(a.label);
v.push(a.key_str);
for alias in a.aliases {
v.push(*alias);
}
v
}
Self::Host(h) => {
let mut v = Vec::with_capacity(7 + h.tags.len());
v.push(h.alias.as_str());
v.push(h.hostname.as_str());
if let Some(p) = &h.provider {
v.push(p.as_str());
}
for t in &h.tags {
v.push(t.as_str());
}
if !h.user.is_empty() {
v.push(h.user.as_str());
}
if !h.identity_file.is_empty() {
v.push(h.identity_file.as_str());
}
if !h.proxy_jump.is_empty() {
v.push(h.proxy_jump.as_str());
}
if let Some(role) = &h.vault_ssh {
v.push(role.as_str());
}
v
}
Self::Tunnel(t) => vec![t.alias.as_str(), t.destination.as_str(), &t.bind_port_str],
Self::Container(c) => vec![
c.container_name.as_str(),
c.alias.as_str(),
c.container_id.as_str(),
],
Self::Snippet(s) => vec![s.name.as_str(), s.command_preview.as_str()],
}
}
pub fn identity(&self) -> RecentRef {
match self {
Self::Action(a) => RecentRef::new(SourceKind::Action, a.key.to_string()),
Self::Host(h) => RecentRef::new(SourceKind::Host, h.alias.clone()),
Self::Tunnel(t) => {
RecentRef::new(SourceKind::Tunnel, format!("{}:{}", t.alias, t.bind_port))
}
Self::Container(c) => RecentRef::new(
SourceKind::Container,
format!("{}/{}", c.alias, c.container_name),
),
Self::Snippet(s) => RecentRef::new(SourceKind::Snippet, s.name.clone()),
}
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct JumpAction {
pub key: char,
pub key_str: &'static str,
pub label: &'static str,
pub aliases: &'static [&'static str],
pub target: JumpActionTarget,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum JumpActionTarget {
Hosts,
Tunnels,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct HostHit {
pub alias: String,
pub hostname: String,
pub tags: Vec<String>,
pub provider: Option<String>,
pub user: String,
pub identity_file: String,
pub proxy_jump: String,
pub vault_ssh: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TunnelHit {
pub alias: String,
pub bind_port: u16,
pub bind_port_str: String,
pub destination: String,
pub active: bool,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ContainerHit {
pub alias: String,
pub container_name: String,
pub container_id: String,
pub state: String,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SnippetHit {
pub name: String,
pub command_preview: String,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize)]
pub struct RecentRef {
pub kind: SourceKind,
pub key: String,
}
impl RecentRef {
pub fn new(kind: SourceKind, key: String) -> Self {
Self { kind, key }
}
}
#[derive(Debug, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub struct RecentEntry {
#[serde(flatten)]
pub target: RecentRef,
pub last_used_unix: i64,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct RecentsFile {
pub version: u32,
pub entries: Vec<RecentEntry>,
}
impl Default for RecentsFile {
fn default() -> Self {
Self {
version: 1,
entries: Vec::new(),
}
}
}
const RECENTS_VERSION: u32 = 1;
const RECENTS_CAP: usize = 50;
pub fn recents_path() -> Option<PathBuf> {
if let Some(p) = recents_path_override() {
return Some(p);
}
let home = dirs::home_dir()?;
Some(home.join(".purple").join("recents.json"))
}
#[cfg(test)]
pub mod test_path {
use std::cell::RefCell;
use std::path::PathBuf;
thread_local! {
static OVERRIDE: RefCell<Option<PathBuf>> = const { RefCell::new(None) };
}
pub fn set(path: PathBuf) {
OVERRIDE.with(|cell| *cell.borrow_mut() = Some(path));
}
pub fn clear() {
OVERRIDE.with(|cell| *cell.borrow_mut() = None);
}
pub fn get() -> Option<PathBuf> {
OVERRIDE.with(|cell| cell.borrow().clone())
}
}
#[cfg(test)]
fn recents_path_override() -> Option<PathBuf> {
test_path::get()
}
#[cfg(not(test))]
fn recents_path_override() -> Option<PathBuf> {
None
}
pub fn load_recents() -> RecentsFile {
#[cfg(test)]
{
if test_path::get().is_none() {
return RecentsFile::default();
}
}
let Some(path) = recents_path() else {
return RecentsFile::default();
};
let bytes = match std::fs::read(&path) {
Ok(b) => b,
Err(_) => return RecentsFile::default(),
};
serde_json::from_slice(&bytes).unwrap_or_default()
}
pub fn save_recents(file: &RecentsFile) -> std::io::Result<()> {
#[cfg(test)]
{
if test_path::get().is_none() {
return Ok(());
}
}
let Some(path) = recents_path() else {
return Ok(());
};
if let Some(parent) = path.parent() {
std::fs::create_dir_all(parent)?;
}
let bytes = serde_json::to_vec_pretty(file).map_err(std::io::Error::other)?;
atomic_write(&path, &bytes)
}
pub fn touch_recent(file: &mut RecentsFile, target: RecentRef) {
file.version = RECENTS_VERSION;
file.entries.retain(|e| e.target != target);
let now = current_unix_ts();
file.entries.insert(
0,
RecentEntry {
target,
last_used_unix: now,
},
);
if file.entries.len() > RECENTS_CAP {
file.entries.truncate(RECENTS_CAP);
}
}
fn current_unix_ts() -> i64 {
std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_secs() as i64)
.unwrap_or(0)
}
#[cfg(test)]
pub mod tests {
use super::*;
use std::sync::Mutex;
pub(crate) static PATH_LOCK: Mutex<()> = Mutex::new(());
fn with_temp<F: FnOnce(&std::path::Path)>(f: F) {
let _g = PATH_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = tempfile::tempdir().unwrap();
let path = dir.path().join("recents.json");
test_path::set(path.clone());
f(&path);
test_path::clear();
}
#[test]
fn section_labels_are_uppercase() {
for k in SourceKind::render_order() {
let label = k.section_label();
assert_eq!(label, label.to_uppercase(), "{:?} not uppercase", k);
}
}
#[test]
fn render_order_starts_with_hosts() {
assert_eq!(SourceKind::render_order()[0], SourceKind::Host);
assert_eq!(SourceKind::render_order()[4], SourceKind::Action);
}
#[test]
fn touch_moves_existing_to_front_and_caps() {
let mut f = RecentsFile::default();
for i in 0..(RECENTS_CAP + 5) {
touch_recent(&mut f, RecentRef::new(SourceKind::Host, format!("h{i}")));
}
assert_eq!(f.entries.len(), RECENTS_CAP);
let target = RecentRef::new(SourceKind::Host, format!("h{}", RECENTS_CAP + 2));
touch_recent(&mut f, target.clone());
assert_eq!(f.entries[0].target, target);
assert_eq!(f.entries.len(), RECENTS_CAP);
}
#[test]
fn save_then_load_roundtrip() {
with_temp(|_path| {
let mut f = RecentsFile::default();
touch_recent(&mut f, RecentRef::new(SourceKind::Action, "F".into()));
touch_recent(&mut f, RecentRef::new(SourceKind::Host, "web-01".into()));
save_recents(&f).expect("save");
let loaded = load_recents();
assert_eq!(loaded.version, RECENTS_VERSION);
assert_eq!(loaded.entries.len(), 2);
assert_eq!(loaded.entries[0].target.key, "web-01");
assert_eq!(loaded.entries[1].target.key, "F");
});
}
#[test]
fn missing_file_loads_empty() {
with_temp(|_path| {
let loaded = load_recents();
assert!(loaded.entries.is_empty());
});
}
#[test]
fn corrupt_file_loads_empty() {
with_temp(|path| {
std::fs::write(path, b"not json").unwrap();
let loaded = load_recents();
assert!(loaded.entries.is_empty());
});
}
}