use eframe::egui; use log::info; use std::sync::mpsc; use crate::gui::common::{load_settings, KhmSettings}; use crate::gui::admin::{AdminState, AdminOperation, render_statistics, render_search_controls, render_bulk_actions, render_keys_table, KeyAction, BulkAction}; use crate::gui::api::{SshKey, bulk_deprecate_servers, bulk_restore_servers, deprecate_key, restore_key, delete_key}; use super::connection::{ConnectionTab, SettingsTab}; use super::ui::{render_connection_tab, add_log_entry}; pub struct SettingsWindow { settings: KhmSettings, auto_sync_interval_str: String, current_tab: SettingsTab, connection_tab: ConnectionTab, admin_state: AdminState, admin_receiver: Option, String>>>, operation_receiver: Option>>, operation_log: Vec, } impl SettingsWindow { pub fn new() -> Self { let settings = load_settings(); let auto_sync_interval_str = settings.auto_sync_interval_minutes.to_string(); Self { settings, auto_sync_interval_str, current_tab: SettingsTab::Connection, connection_tab: ConnectionTab::default(), admin_state: AdminState::default(), admin_receiver: None, operation_receiver: None, operation_log: Vec::new(), } } } impl eframe::App for SettingsWindow { fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) { // Check for admin operation results self.check_admin_results(ctx); // Apply enhanced modern dark theme apply_modern_theme(ctx); egui::CentralPanel::default() .frame(egui::Frame::none().inner_margin(egui::Margin::same(20.0))) .show(ctx, |ui| { // Header with title ui.horizontal(|ui| { ui.heading(egui::RichText::new("🔑 KHM Settings").size(24.0)); }); ui.add_space(10.0); // Tab selector ui.horizontal(|ui| { ui.selectable_value(&mut self.current_tab, SettingsTab::Connection, "📃 Settings"); ui.selectable_value(&mut self.current_tab, SettingsTab::Admin, "🔧 Admin"); }); ui.separator(); ui.add_space(15.0); match self.current_tab { SettingsTab::Connection => { render_connection_tab( ui, ctx, &mut self.settings, &mut self.auto_sync_interval_str, &mut self.connection_tab, &mut self.operation_log ); } SettingsTab::Admin => { self.render_admin_tab(ui, ctx); } } }); } } impl SettingsWindow { fn check_admin_results(&mut self, ctx: &egui::Context) { // Check for admin keys loading result if let Some(receiver) = &self.admin_receiver { if let Ok(result) = receiver.try_recv() { self.admin_state.handle_keys_loaded(result); self.admin_receiver = None; ctx.request_repaint(); } } // Check for operation results if let Some(receiver) = &self.operation_receiver { if let Ok(result) = receiver.try_recv() { match result { Ok(message) => { info!("Operation completed: {}", message); add_log_entry(&mut self.operation_log, format!("✅ {}", message)); // Reload keys after operation self.load_admin_keys(ctx); } Err(error) => { add_log_entry(&mut self.operation_log, format!("❌ Operation failed: {}", error)); } } self.admin_state.current_operation = AdminOperation::None; self.operation_receiver = None; ctx.request_repaint(); } } } fn render_admin_tab(&mut self, ui: &mut egui::Ui, ctx: &egui::Context) { // Admin tab header ui.horizontal(|ui| { ui.label(egui::RichText::new("🔧 Admin Panel").size(18.0).strong()); ui.with_layout(egui::Layout::right_to_left(egui::Align::Center), |ui| { if ui.button("🔁 Refresh").clicked() { self.load_admin_keys(ctx); } if let Some(last_load) = self.admin_state.last_load_time { let elapsed = last_load.elapsed().as_secs(); ui.label(format!("Updated {}s ago", elapsed)); } }); }); ui.separator(); ui.add_space(10.0); // Check if connection is configured if self.settings.host.is_empty() || self.settings.flow.is_empty() { ui.vertical_centered(|ui| { ui.label(egui::RichText::new("❗ Please configure connection settings first") .size(16.0) .color(egui::Color32::YELLOW)); ui.add_space(10.0); if ui.button("Go to Connection Settings").clicked() { self.current_tab = SettingsTab::Connection; } }); return; } // Load keys automatically on first view if self.admin_state.keys.is_empty() && !matches!(self.admin_state.current_operation, AdminOperation::LoadingKeys) { self.load_admin_keys(ctx); } // Show loading state if matches!(self.admin_state.current_operation, AdminOperation::LoadingKeys) { ui.vertical_centered(|ui| { ui.spinner(); ui.label("Loading keys..."); }); return; } // Statistics section render_statistics(ui, &self.admin_state); ui.add_space(10.0); // Search and filters render_search_controls(ui, &mut self.admin_state); ui.add_space(10.0); // Bulk actions let bulk_action = render_bulk_actions(ui, &mut self.admin_state); self.handle_bulk_action(bulk_action, ctx); if self.admin_state.selected_servers.values().any(|&v| v) { ui.add_space(8.0); } // Keys table egui::ScrollArea::vertical() .max_height(450.0) .auto_shrink([false; 2]) .show(ui, |ui| { let key_action = render_keys_table(ui, &mut self.admin_state); self.handle_key_action(key_action, ctx); }); } fn load_admin_keys(&mut self, ctx: &egui::Context) { if let Some(receiver) = self.admin_state.load_keys(&self.settings, ctx) { self.admin_receiver = Some(receiver); } } fn handle_bulk_action(&mut self, action: BulkAction, ctx: &egui::Context) { match action { BulkAction::DeprecateSelected => { let selected = self.admin_state.get_selected_servers(); if !selected.is_empty() { self.start_bulk_deprecate(selected, ctx); } } BulkAction::RestoreSelected => { let selected = self.admin_state.get_selected_servers(); if !selected.is_empty() { self.start_bulk_restore(selected, ctx); } } BulkAction::ClearSelection => { // Selection already cleared in UI } BulkAction::None => {} } } fn handle_key_action(&mut self, action: KeyAction, ctx: &egui::Context) { match action { KeyAction::DeprecateKey(server) | KeyAction::DeprecateServer(server) => { self.start_deprecate_key(&server, ctx); } KeyAction::RestoreKey(server) | KeyAction::RestoreServer(server) => { self.start_restore_key(&server, ctx); } KeyAction::DeleteKey(server) => { self.start_delete_key(&server, ctx); } KeyAction::None => {} } } fn start_bulk_deprecate(&mut self, servers: Vec, ctx: &egui::Context) { self.admin_state.current_operation = AdminOperation::BulkDeprecating; add_log_entry(&mut self.operation_log, format!("Deprecating {} servers...", servers.len())); let (tx, rx) = mpsc::channel(); self.operation_receiver = Some(rx); let host = self.settings.host.clone(); let flow = self.settings.flow.clone(); let basic_auth = self.settings.basic_auth.clone(); let ctx_clone = ctx.clone(); std::thread::spawn(move || { let rt = tokio::runtime::Runtime::new().unwrap(); let result = rt.block_on(async { bulk_deprecate_servers(host, flow, basic_auth, servers).await }); let _ = tx.send(result); ctx_clone.request_repaint(); }); } fn start_bulk_restore(&mut self, servers: Vec, ctx: &egui::Context) { self.admin_state.current_operation = AdminOperation::BulkRestoring; add_log_entry(&mut self.operation_log, format!("Restoring {} servers...", servers.len())); let (tx, rx) = mpsc::channel(); self.operation_receiver = Some(rx); let host = self.settings.host.clone(); let flow = self.settings.flow.clone(); let basic_auth = self.settings.basic_auth.clone(); let ctx_clone = ctx.clone(); std::thread::spawn(move || { let rt = tokio::runtime::Runtime::new().unwrap(); let result = rt.block_on(async { bulk_restore_servers(host, flow, basic_auth, servers).await }); let _ = tx.send(result); ctx_clone.request_repaint(); }); } fn start_deprecate_key(&mut self, server: &str, ctx: &egui::Context) { self.admin_state.current_operation = AdminOperation::DeprecatingKey; add_log_entry(&mut self.operation_log, format!("Deprecating key for server: {}", server)); let (tx, rx) = mpsc::channel(); self.operation_receiver = Some(rx); let host = self.settings.host.clone(); let flow = self.settings.flow.clone(); let basic_auth = self.settings.basic_auth.clone(); let server_name = server.to_string(); let ctx_clone = ctx.clone(); std::thread::spawn(move || { let rt = tokio::runtime::Runtime::new().unwrap(); let result = rt.block_on(async { deprecate_key(host, flow, basic_auth, server_name).await }); let _ = tx.send(result); ctx_clone.request_repaint(); }); } fn start_restore_key(&mut self, server: &str, ctx: &egui::Context) { self.admin_state.current_operation = AdminOperation::RestoringKey; add_log_entry(&mut self.operation_log, format!("Restoring key for server: {}", server)); let (tx, rx) = mpsc::channel(); self.operation_receiver = Some(rx); let host = self.settings.host.clone(); let flow = self.settings.flow.clone(); let basic_auth = self.settings.basic_auth.clone(); let server_name = server.to_string(); let ctx_clone = ctx.clone(); std::thread::spawn(move || { let rt = tokio::runtime::Runtime::new().unwrap(); let result = rt.block_on(async { restore_key(host, flow, basic_auth, server_name).await }); let _ = tx.send(result); ctx_clone.request_repaint(); }); } fn start_delete_key(&mut self, server: &str, ctx: &egui::Context) { self.admin_state.current_operation = AdminOperation::DeletingKey; add_log_entry(&mut self.operation_log, format!("Deleting key for server: {}", server)); let (tx, rx) = mpsc::channel(); self.operation_receiver = Some(rx); let host = self.settings.host.clone(); let flow = self.settings.flow.clone(); let basic_auth = self.settings.basic_auth.clone(); let server_name = server.to_string(); let ctx_clone = ctx.clone(); std::thread::spawn(move || { let rt = tokio::runtime::Runtime::new().unwrap(); let result = rt.block_on(async { delete_key(host, flow, basic_auth, server_name).await }); let _ = tx.send(result); ctx_clone.request_repaint(); }); } } /// Apply modern dark theme for the settings window fn apply_modern_theme(ctx: &egui::Context) { let mut visuals = egui::Visuals::dark(); visuals.window_fill = egui::Color32::from_gray(25); visuals.panel_fill = egui::Color32::from_gray(30); visuals.faint_bg_color = egui::Color32::from_gray(35); visuals.extreme_bg_color = egui::Color32::from_gray(15); visuals.button_frame = true; visuals.collapsing_header_frame = true; visuals.indent_has_left_vline = true; visuals.menu_rounding = egui::Rounding::same(8.0); visuals.window_rounding = egui::Rounding::same(12.0); visuals.widgets.noninteractive.rounding = egui::Rounding::same(6.0); visuals.widgets.inactive.rounding = egui::Rounding::same(6.0); visuals.widgets.hovered.rounding = egui::Rounding::same(6.0); visuals.widgets.active.rounding = egui::Rounding::same(6.0); ctx.set_visuals(visuals); } /// Create window icon for settings window pub fn create_window_icon() -> egui::IconData { // Create a simple programmatic icon (blue square with white border) let icon_size = 32; let icon_data: Vec = (0..icon_size * icon_size) .flat_map(|i| { let y = i / icon_size; let x = i % icon_size; if x < 2 || x >= 30 || y < 2 || y >= 30 { [255, 255, 255, 255] // White border } else { [64, 128, 255, 255] // Blue center } }) .collect(); egui::IconData { rgba: icon_data, width: icon_size as u32, height: icon_size as u32, } } /// Run the settings window application pub fn run_settings_window() { let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default() .with_title("KHM Settings") .with_inner_size([600.0, 800.0]) .with_min_inner_size([500.0, 650.0]) .with_resizable(true) .with_icon(create_window_icon()), ..Default::default() }; let _ = eframe::run_native( "KHM Settings", options, Box::new(|_cc| Ok(Box::new(SettingsWindow::new()))), ); }