Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1dbbcff5d5 | |||
| f080b0034f | |||
| 57d0f12000 | |||
| 0dbc744471 | |||
| 7a912bddab | |||
| 24211c318b | |||
| 630e0a3cdf | |||
| 797d0f4462 | |||
| 59bb97ec4e | |||
| 0ac3b54d89 | |||
| 154a7efcc8 | |||
| ab5f00d8e7 | |||
| 3ab803c12e | |||
| 98cb23e5ea | |||
| 0aabbfd36e | |||
| b19eeb6c96 | |||
| 76bd3a6087 |
@@ -23,19 +23,438 @@
|
||||
|
||||
import logging
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
import dotenv
|
||||
from textual.app import App, ComposeResult
|
||||
from textual.containers import Vertical
|
||||
from textual.message import Message
|
||||
from textual.reactive import reactive
|
||||
from textual.screen import Screen
|
||||
from textual.widgets import (
|
||||
Button,
|
||||
DirectoryTree,
|
||||
Footer,
|
||||
Header,
|
||||
Static,
|
||||
Tab,
|
||||
Tabs,
|
||||
)
|
||||
import urllib3
|
||||
|
||||
from models.agent import Agent
|
||||
from models.policy import Policy
|
||||
from services.API import AirlockAPIWrapper
|
||||
from services.security import getAPI
|
||||
from TUI.TUI import run_Loxide
|
||||
from utils.configmanager import get_system_value
|
||||
from utils.setup import setup
|
||||
from utils.utils import irtang
|
||||
from TUI.Screens.moveagentworkflowscreen import MoveAgentWorkflowScreen
|
||||
from TUI.Screens.otpactivityscreen import OTPActivitiesScreen
|
||||
from TUI.Screens.otprevokescreen import OTPRevokeScreen
|
||||
from TUI.Screens.otpworkflowscreen import OTPWorkflowScreen
|
||||
from TUI.Screens.policyprepworkflowscreen import PolicyPrepWorkflowScreen
|
||||
from TUI.Screens.quietagentworkflowscreen import QuietAgentWorkflowScreen
|
||||
from TUI.Themes.theme_amber_terminal import get_amber_terminal_theme
|
||||
from TUI.Themes.theme_retro_terminal import get_retro_terminal_theme
|
||||
from TUI.Themes.themeselector import ThemeSelector
|
||||
from TUI.Widgets.agentmoveoperations import AgentMoveOperations
|
||||
from TUI.Widgets.multiagentselector import MultiAgentSelector
|
||||
from TUI.Widgets.policytreewidget import PolicyTreeWidget
|
||||
from TUI.Widgets.resultsdisplay import ResultsDisplay
|
||||
from utils.configmanager import (
|
||||
get_system_value,
|
||||
get_user_value,
|
||||
load_env,
|
||||
save_user_config,
|
||||
)
|
||||
from utils.setup import get_base_directory, setup
|
||||
from utils.utils import irtang, open_directory
|
||||
|
||||
dotenv.load_dotenv()
|
||||
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# GLOBAL STASH
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
_APP_RESTART_REASON = None
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# helper to persist TEXTUAL_THEME to *user* config and mirror to .env
|
||||
# ---------------------------------------------------------------------------
|
||||
def _persist_user_theme(theme_name: str) -> None:
|
||||
"""
|
||||
Store the chosen Textual theme in the user's config using the config manager.
|
||||
No need to touch .env - config manager handles everything.
|
||||
"""
|
||||
base_dir = get_base_directory()
|
||||
config_dir = base_dir / "config"
|
||||
|
||||
try:
|
||||
save_user_config(config_dir, {"TEXTUAL_THEME": theme_name})
|
||||
logger.debug("Updated user config with TEXTUAL_THEME=%s", theme_name)
|
||||
except Exception as exc:
|
||||
logger.error("Failed to save TEXTUAL_THEME: %s", exc)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 1) SCREEN
|
||||
# ---------------------------------------------------------------------------
|
||||
class MainMenuScreen(Screen):
|
||||
api: AirlockAPIWrapper
|
||||
current_tab = reactive("")
|
||||
|
||||
BUTTON_DEFS = {
|
||||
"agent_actions": [
|
||||
(
|
||||
"🖥️ - Find agent, Move agent, or Generate One Time Pass",
|
||||
"move_agent_workflow_button",
|
||||
),
|
||||
("🎫 - Review and approve OTP Activities", "otp_activities_button"),
|
||||
("🛑 - Revoke Active OTP Session", "otp_revoke_button"),
|
||||
],
|
||||
"policy": [
|
||||
("⚖️ - Prepare Policy For Enforcement", "policy_prep_button"),
|
||||
("🔕 - Find and Move Quiet Hosts to Enforcement", "find_quiet_button"),
|
||||
],
|
||||
}
|
||||
|
||||
def __init__(self) -> None:
|
||||
super().__init__()
|
||||
self.extras = get_user_value("EXTRAS", str, "NOTTODAY")
|
||||
wd = load_env("WORKING_DIR") or os.getcwd()
|
||||
if not os.path.isdir(wd):
|
||||
wd = os.getcwd()
|
||||
self.working_dir = wd
|
||||
|
||||
def _make_buttons_for(self, tab_id: str) -> Vertical:
|
||||
defs = self.BUTTON_DEFS.get(tab_id, [])
|
||||
buttons = []
|
||||
for label, btn_id in defs:
|
||||
btn = Button(label, id=btn_id)
|
||||
btn.styles.width = "100%"
|
||||
buttons.append(btn)
|
||||
return Vertical(*buttons)
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
yield Header(show_clock=True, icon="⚙")
|
||||
|
||||
tabs = [
|
||||
Tab("Tree View", id="p_tree"),
|
||||
Tab("Agents", id="agent_actions"),
|
||||
Tab("Directory", id="dir"),
|
||||
Tab("Settings", id="settings"),
|
||||
]
|
||||
|
||||
if self.extras == "POLICYPREP":
|
||||
tabs.insert(2, Tab("Policy Prep", id="policy"))
|
||||
|
||||
yield Tabs(*tabs, id="tabs")
|
||||
yield Vertical(id="content")
|
||||
yield Footer()
|
||||
|
||||
def on_mount(self) -> None:
|
||||
self.switch_tab("agent_actions")
|
||||
|
||||
# focus helpers
|
||||
def _get_content_buttons(self) -> list[Button]:
|
||||
content = self.query_one("#content", Vertical)
|
||||
return list(content.query(Button))
|
||||
|
||||
def _focus_first_button(self) -> None:
|
||||
buttons = self._get_content_buttons()
|
||||
if buttons:
|
||||
buttons[0].focus()
|
||||
|
||||
def _focus_tabs(self) -> None:
|
||||
tabs = self.query_one("#tabs", Tabs)
|
||||
tabs.focus()
|
||||
|
||||
def _focus_nearby_button(self, direction: int) -> None:
|
||||
buttons = self._get_content_buttons()
|
||||
if not buttons:
|
||||
return
|
||||
|
||||
try:
|
||||
current = next(i for i, b in enumerate(buttons) if b.has_focus)
|
||||
except StopIteration:
|
||||
if direction > 0:
|
||||
buttons[0].focus()
|
||||
else:
|
||||
buttons[-1].focus()
|
||||
return
|
||||
|
||||
if direction < 0 and current == 0:
|
||||
self._focus_tabs()
|
||||
return
|
||||
|
||||
new_index = current + direction
|
||||
if 0 <= new_index < len(buttons):
|
||||
buttons[new_index].focus()
|
||||
|
||||
def switch_tab(self, tab_id: str) -> None:
|
||||
self.current_tab = tab_id
|
||||
content = self.query_one("#content", Vertical)
|
||||
content.remove_children()
|
||||
|
||||
if tab_id in self.BUTTON_DEFS:
|
||||
content.mount(self._make_buttons_for(tab_id))
|
||||
self.call_later(self._focus_first_button)
|
||||
elif tab_id == "dir":
|
||||
content.mount(DirectoryTree(self.working_dir, id="dir_tree"))
|
||||
elif tab_id == "p_tree":
|
||||
content.mount(PolicyTreeWidget(self.app.policies, self.app.devices))
|
||||
elif tab_id == "settings":
|
||||
content.mount(ThemeSelector())
|
||||
else:
|
||||
content.mount(Static(f"Unknown tab: {tab_id}"))
|
||||
|
||||
def on_tabs_tab_activated(self, event: Tabs.TabActivated) -> None:
|
||||
self.switch_tab(event.tab.id)
|
||||
|
||||
def on_multi_agent_selector_agents_selected(
|
||||
self, message: MultiAgentSelector.AgentsSelected
|
||||
) -> None:
|
||||
"""Handle selected agents from AgentSelector."""
|
||||
global _APP_RESTART_REASON
|
||||
selected_agents = message.selected_agents
|
||||
logger.info("Selected agents: %s", selected_agents)
|
||||
# TODO: Implement actual handling of selected agents
|
||||
_APP_RESTART_REASON = ("multi_agent_action", selected_agents)
|
||||
self.app.exit()
|
||||
|
||||
def on_theme_selector_theme_selected(
|
||||
self, message: ThemeSelector.ThemeSelected
|
||||
) -> None:
|
||||
"""Handle theme selection from ThemeSelector."""
|
||||
global _APP_RESTART_REASON
|
||||
_persist_user_theme(message.theme_name)
|
||||
_APP_RESTART_REASON = ("restart",)
|
||||
self.app.exit()
|
||||
|
||||
def on_agent_move_operations_operation_complete(
|
||||
self, message: AgentMoveOperations.OperationComplete
|
||||
) -> None:
|
||||
"""Handle completion of agent move operation - show results."""
|
||||
logger.info(
|
||||
"Agent move operation completed: %s, %d successful, %d unsuccessful",
|
||||
message.operation,
|
||||
len(message.successful),
|
||||
len(message.unsuccessful),
|
||||
)
|
||||
|
||||
# Format results for display
|
||||
successful_text = "\n".join(
|
||||
[f"{agent.hostname}" for agent, _ in message.successful]
|
||||
)
|
||||
unsuccessful_text = "\n".join(
|
||||
[f"{agent.hostname}: {error}" for agent, error in message.unsuccessful]
|
||||
)
|
||||
|
||||
# Remove the operations widget
|
||||
try:
|
||||
ops_widget = self.query_one(AgentMoveOperations)
|
||||
ops_widget.remove()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
# Show results
|
||||
self.query_one("#content", Vertical).mount(
|
||||
ResultsDisplay(message.operation, successful_text, unsuccessful_text)
|
||||
)
|
||||
|
||||
def on_results_display_go_back(self, message: ResultsDisplay.GoBack) -> None:
|
||||
"""Handle back button from results display."""
|
||||
try:
|
||||
results_widget = self.query_one(ResultsDisplay)
|
||||
results_widget.remove()
|
||||
except Exception:
|
||||
pass
|
||||
# Return to main menu
|
||||
self.app.pop_screen()
|
||||
|
||||
def on_directory_tree_file_selected(
|
||||
self, event: DirectoryTree.FileSelected
|
||||
) -> None:
|
||||
path = event.path
|
||||
logger.debug("Directory file selected: %s", path)
|
||||
try:
|
||||
open_directory(str(path))
|
||||
except Exception as exc:
|
||||
logger.error("Failed to open %s: %s", path, exc)
|
||||
self.app.bell()
|
||||
|
||||
def on_button_pressed(self, event: Button.Pressed) -> None:
|
||||
button_id = event.button.id
|
||||
logger.debug("Button pressed: %s", button_id)
|
||||
|
||||
match button_id:
|
||||
case "move_agent_workflow_button":
|
||||
self.app.push_screen(MoveAgentWorkflowScreen(self.app.devices))
|
||||
event.stop()
|
||||
|
||||
case "otp_generate_button":
|
||||
self.app.push_screen(OTPWorkflowScreen(self.app.devices))
|
||||
event.stop()
|
||||
|
||||
case "find_quiet_button":
|
||||
self.app.push_screen(
|
||||
QuietAgentWorkflowScreen(self.app.api, self.app.policies)
|
||||
)
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case "otp_activities_button":
|
||||
self.app.push_screen(OTPActivitiesScreen())
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case "otp_revoke_button":
|
||||
self.app.push_screen(OTPRevokeScreen())
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case "policy_prep_button":
|
||||
# Use the new TUI workflow screen instead of legacy
|
||||
self.app.push_screen(
|
||||
PolicyPrepWorkflowScreen(self.app.api, self.app.policies)
|
||||
)
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case _:
|
||||
self.app.bell()
|
||||
logger.warning("Unknown button pressed: %s", button_id)
|
||||
return
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 2) APP
|
||||
# ---------------------------------------------------------------------------
|
||||
class Loxide(App[Message]):
|
||||
api: AirlockAPIWrapper
|
||||
working_dir: str
|
||||
policies: Optional[list[Policy]]
|
||||
devices: Optional[list[Agent]]
|
||||
|
||||
CSS = """
|
||||
#logo {
|
||||
width: 100%;
|
||||
content-align: center middle;
|
||||
text-align: center;
|
||||
}
|
||||
"""
|
||||
BINDINGS = [
|
||||
("q", "quit", "Quit"),
|
||||
("f", "open_fe", "Launch Explorer"),
|
||||
("r", "refresh", "Refresh"),
|
||||
]
|
||||
|
||||
def __init__(self, api: AirlockAPIWrapper):
|
||||
self._textual_theme = get_user_value("TEXTUAL_THEME", str, "textual-dark")
|
||||
super().__init__()
|
||||
self.api = api
|
||||
wd = load_env("WORKING_DIR") or os.getcwd()
|
||||
if not os.path.isdir(wd):
|
||||
wd = os.getcwd()
|
||||
self.working_dir = wd
|
||||
# Initial data load
|
||||
self.refresh_data()
|
||||
|
||||
def refresh_data(self) -> None:
|
||||
"""Public method to refresh policies and devices from the API."""
|
||||
try:
|
||||
self.policies = [
|
||||
Policy(**row.to_dict())
|
||||
for _, row in self.api.policy_find_all().iterrows()
|
||||
]
|
||||
self.devices = [
|
||||
Agent(**row.to_dict())
|
||||
for _, row in self.api.agent_find_all().iterrows()
|
||||
]
|
||||
if self.policies and self.devices:
|
||||
for agent in self.devices:
|
||||
agent.enrich_with_policies(self.policies)
|
||||
logger.debug(
|
||||
f"Enriched {len(self.devices)} agents with policy information"
|
||||
)
|
||||
except Exception as exc:
|
||||
logger.error("Failed to load policies/devices: %s", exc)
|
||||
self.policies = None
|
||||
self.devices = None
|
||||
|
||||
def on_mount(self, api: AirlockAPIWrapper) -> None:
|
||||
self.register_theme(get_retro_terminal_theme())
|
||||
self.register_theme(get_amber_terminal_theme())
|
||||
self.theme = self._textual_theme
|
||||
self.push_screen(MainMenuScreen())
|
||||
|
||||
def action_refresh(self) -> None:
|
||||
self.refresh_data()
|
||||
|
||||
def action_quit(self) -> None:
|
||||
global _APP_RESTART_REASON
|
||||
_APP_RESTART_REASON = None
|
||||
self.exit()
|
||||
|
||||
def action_open_fe(self) -> None:
|
||||
"""Open the working directory in the OS file manager (footer binding)."""
|
||||
path_to_open = self.working_dir or os.getcwd()
|
||||
try:
|
||||
open_directory(path_to_open)
|
||||
except Exception as exc:
|
||||
logger.error("Failed to open directory %s: %s", path_to_open, exc)
|
||||
self.bell() # optional feedback
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 3) PUBLIC ENTRYPOINT
|
||||
# ---------------------------------------------------------------------------
|
||||
def run_Loxide(api: AirlockAPIWrapper) -> None:
|
||||
global _APP_RESTART_REASON
|
||||
base_dir = get_base_directory()
|
||||
env_path = base_dir / ".env"
|
||||
dotenv.load_dotenv(dotenv_path=env_path, override=True)
|
||||
|
||||
max_attempts = 5
|
||||
attempts = 0
|
||||
|
||||
while attempts < max_attempts:
|
||||
attempts += 1
|
||||
logger.debug("Starting app loop iteration (attempt %d)", attempts)
|
||||
_APP_RESTART_REASON = None
|
||||
app = Loxide(api)
|
||||
|
||||
try:
|
||||
app.run()
|
||||
except SystemExit as exc:
|
||||
if exc.code != 0:
|
||||
logger.debug("Caught SystemExit from Textual: %s", exc)
|
||||
raise
|
||||
|
||||
reason = _APP_RESTART_REASON
|
||||
logger.debug("After app.run(), _APP_RESTART_REASON = %r", reason)
|
||||
|
||||
if not reason:
|
||||
logger.debug("No restart reason, exiting loop")
|
||||
break
|
||||
|
||||
if reason[0] == "restart":
|
||||
logger.debug("Restarting app loop")
|
||||
continue
|
||||
|
||||
if reason[0] == "multi_agent_action":
|
||||
logger.info("Multi-agent action with selected agents: %s", reason[1])
|
||||
continue
|
||||
|
||||
logger.error("Unknown restart reason: %r", reason)
|
||||
break
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 4) MAIN FUNCTION
|
||||
# ---------------------------------------------------------------------------
|
||||
def main():
|
||||
irtang()
|
||||
# Determine working directory, setup directory, configure logging, sent env, get API and URL if not already stored
|
||||
|
||||
@@ -58,9 +58,14 @@ class OTPRevokeWidget(Static):
|
||||
}
|
||||
#button_container {
|
||||
height: auto;
|
||||
width: 100%;
|
||||
padding: 1;
|
||||
align: center middle;
|
||||
}
|
||||
#button_container Button {
|
||||
min-width: 16;
|
||||
margin: 0 1;
|
||||
}
|
||||
#result_container {
|
||||
height: auto;
|
||||
max-height: 10;
|
||||
@@ -87,29 +92,10 @@ class OTPRevokeWidget(Static):
|
||||
|
||||
# Action buttons
|
||||
with Horizontal(id="button_container"):
|
||||
self.refresh_button = Button("🔄 Refresh", id="refresh_btn")
|
||||
self.refresh_button.styles.width = "15%"
|
||||
self.refresh_button.styles.margin = (1, 1, 1, 1)
|
||||
yield self.refresh_button
|
||||
|
||||
self.select_all_button = Button("☑️ Select All", id="select_all_btn")
|
||||
self.select_all_button.styles.width = "15%"
|
||||
self.select_all_button.styles.margin = (1, 1, 1, 1)
|
||||
yield self.select_all_button
|
||||
|
||||
self.select_none_button = Button(
|
||||
"❌ Clear Selection", id="select_none_btn"
|
||||
)
|
||||
self.select_none_button.styles.width = "20%"
|
||||
self.select_none_button.styles.margin = (1, 1, 1, 1)
|
||||
yield self.select_none_button
|
||||
|
||||
self.revoke_button = Button(
|
||||
"🛑 Revoke Selected", id="revoke_btn", variant="error"
|
||||
)
|
||||
self.revoke_button.styles.width = "20%"
|
||||
self.revoke_button.styles.margin = (1, 1, 1, 1)
|
||||
yield self.revoke_button
|
||||
yield Button("Refresh", id="refresh_btn")
|
||||
yield Button("Select All", id="select_all_btn")
|
||||
yield Button("Clear Selection", id="select_none_btn")
|
||||
yield Button("Revoke Selected", id="revoke_btn", variant="error")
|
||||
|
||||
# Results display
|
||||
with Vertical(id="result_container"):
|
||||
@@ -122,7 +108,7 @@ class OTPRevokeWidget(Static):
|
||||
# Configure sessions table
|
||||
self.sessions_table.clear()
|
||||
self.sessions_table.add_columns(
|
||||
"☐", "OTP ID", "Hostname", "Status", "Purpose", "Granted"
|
||||
"", "OTP ID", "Hostname", "Status", "Purpose", "Granted"
|
||||
)
|
||||
|
||||
# Enable row selection with checkbox column
|
||||
@@ -213,7 +199,11 @@ class OTPRevokeWidget(Static):
|
||||
|
||||
elif btn.id == "select_all_btn":
|
||||
# Select all visible rows
|
||||
if self._filtered_df is not None:
|
||||
if (
|
||||
self._filtered_df is not None
|
||||
and not self._filtered_df.empty
|
||||
and "otpid" in self._filtered_df.columns
|
||||
):
|
||||
self._selected_otpids = set(str(x) for x in self._filtered_df["otpid"])
|
||||
await self._refresh_table()
|
||||
|
||||
@@ -235,7 +225,12 @@ class OTPRevokeWidget(Static):
|
||||
# Get the row index from the cursor row
|
||||
row_index = self.sessions_table.cursor_row
|
||||
|
||||
if self._filtered_df is not None and row_index < len(self._filtered_df):
|
||||
if (
|
||||
self._filtered_df is not None
|
||||
and not self._filtered_df.empty
|
||||
and "otpid" in self._filtered_df.columns
|
||||
and row_index < len(self._filtered_df)
|
||||
):
|
||||
# Get the OTP ID for this row
|
||||
otpid = str(self._filtered_df.iloc[row_index]["otpid"])
|
||||
|
||||
@@ -257,12 +252,12 @@ class OTPRevokeWidget(Static):
|
||||
async def _revoke_selected(self) -> None:
|
||||
"""Revoke the selected OTP sessions."""
|
||||
if not self._selected_otpids:
|
||||
self.results_display.update("❌ No sessions selected for revocation")
|
||||
self.results_display.update("No sessions selected for revocation")
|
||||
return
|
||||
|
||||
api = getattr(self.app, "api", None)
|
||||
if not api:
|
||||
self.results_display.update("❌ API not available")
|
||||
self.results_display.update("API not available")
|
||||
return
|
||||
|
||||
# Collect results
|
||||
@@ -303,13 +298,13 @@ class OTPRevokeWidget(Static):
|
||||
else "No response"
|
||||
)
|
||||
results.append(
|
||||
f"❌ Failed to revoke OTP {otpid} for {hostname}: {error_msg}"
|
||||
f"Failed to revoke OTP {otpid} for {hostname}: {error_msg}"
|
||||
)
|
||||
logger.error(f"Failed to revoke OTP {otpid}: {error_msg}")
|
||||
|
||||
except Exception as e:
|
||||
failure_count += 1
|
||||
results.append(f"❌ Error revoking OTP {otpid}: {str(e)}")
|
||||
results.append(f"Error revoking OTP {otpid}: {str(e)}")
|
||||
logger.exception(f"Exception revoking OTP {otpid}: {e}")
|
||||
|
||||
# Update results display
|
||||
@@ -368,7 +363,11 @@ class OTPRevokeScreen(Screen):
|
||||
|
||||
async def action_select_all(self) -> None:
|
||||
"""Select all visible sessions."""
|
||||
if self.widget._filtered_df is not None:
|
||||
if (
|
||||
self.widget._filtered_df is not None
|
||||
and not self.widget._filtered_df.empty
|
||||
and "otpid" in self.widget._filtered_df.columns
|
||||
):
|
||||
self.widget._selected_otpids = set(
|
||||
str(x) for x in self.widget._filtered_df["otpid"]
|
||||
)
|
||||
|
||||
+1621
-305
File diff suppressed because it is too large
Load Diff
@@ -34,7 +34,7 @@ from textual.app import ComposeResult
|
||||
from textual.containers import Horizontal, Vertical
|
||||
from textual.reactive import reactive
|
||||
from textual.screen import Screen
|
||||
from textual.widgets import Button, DataTable, Footer, Header, Static
|
||||
from textual.widgets import Button, DataTable, Footer, Header, Input, Static
|
||||
|
||||
from models.policy import Policy
|
||||
from services.API import AirlockAPIWrapper
|
||||
@@ -51,16 +51,17 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
|
||||
This screen provides a multi-step workflow:
|
||||
1. Select initial policy to analyze
|
||||
2. View categorized agents (enforce ready vs. non-enforce ready)
|
||||
3. Select target policies for each category
|
||||
4. Execute agent migrations
|
||||
2. Configure analysis parameters (history period and quiet time period)
|
||||
3. View categorized agents (enforce ready vs. non-enforce ready)
|
||||
4. Select target policies for each category
|
||||
5. Execute agent migrations
|
||||
|
||||
Attributes:
|
||||
api (AirlockAPIWrapper): API wrapper for Airlock operations
|
||||
policies (List[Policy]): List of all available policies
|
||||
selected_policy (Optional[Policy]): The initially selected policy to analyze
|
||||
history_days (int): Number of days of history to pull (default: 150)
|
||||
quiet_days (int): Number of days without execution to be considered quiet (default: 45)
|
||||
history_days (int): Number of days of history to pull (default: 150, range: 1-365)
|
||||
quiet_days (int): Number of days without execution to be considered quiet (default: 45, range: 1-365)
|
||||
agents_df (Optional[pd.DataFrame]): DataFrame of all agents with analysis results
|
||||
enforce_ready_df (Optional[pd.DataFrame]): DataFrame of agents ready for enforcement
|
||||
non_enforce_ready_df (Optional[pd.DataFrame]): DataFrame of agents not ready for enforcement
|
||||
@@ -86,7 +87,7 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
self.api = api
|
||||
self.policies = policies
|
||||
self.selected_policy: Optional[Policy] = None
|
||||
self.history_days = 150 # Fixed as per requirements
|
||||
self.history_days = 150 # Default value, user-selectable
|
||||
self.quiet_days = 45 # Default value
|
||||
self.agents_df: Optional[pd.DataFrame] = None
|
||||
self.enforce_ready_df: Optional[pd.DataFrame] = None
|
||||
@@ -130,7 +131,7 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
|
||||
stage_messages = {
|
||||
"select_policy": "Step 1: Select Policy to Analyze",
|
||||
"select_quiet_days": "Step 2: Select Quiet Time Period",
|
||||
"select_history_days": "Step 2: Configure Analysis Parameters",
|
||||
"analyzing": "Analyzing agent activity...",
|
||||
"view_results": "Step 3: Review Categorized Agents",
|
||||
"select_enforce_target": "Step 4: Select Target Policy for Enforce Ready Agents",
|
||||
@@ -161,7 +162,7 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
# Initial policy selection for analysis
|
||||
self.selected_policy = message.policy
|
||||
logger.info(f"Selected policy for analysis: {self.selected_policy.name}")
|
||||
self._show_quiet_days_selection()
|
||||
self._show_history_days_selection()
|
||||
elif self.workflow_stage == "select_enforce_target":
|
||||
# Target policy selection for enforce ready agents
|
||||
self.enforce_ready_target_policy = message.policy
|
||||
@@ -177,48 +178,167 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
)
|
||||
self._show_migration_confirmation()
|
||||
|
||||
def _show_quiet_days_selection(self) -> None:
|
||||
"""Show the quiet days selection screen."""
|
||||
self.workflow_stage = "select_quiet_days"
|
||||
def _show_history_days_selection(self) -> None:
|
||||
"""Show the history days and quiet days selection screen."""
|
||||
self.workflow_stage = "select_history_days"
|
||||
content = self.query_one("#content_area", Vertical)
|
||||
content.remove_children()
|
||||
|
||||
# Create info text
|
||||
info_widget = Static(
|
||||
f"Policy Selected: {self.selected_policy.name}\n\n"
|
||||
f"History Period: {self.history_days} days\n\n"
|
||||
"Select quiet time period (days without untrusted execution):",
|
||||
id="quiet_days_info",
|
||||
"Configure Analysis Parameters:",
|
||||
id="analysis_params_info",
|
||||
)
|
||||
info_widget.styles.margin = (0, 0, 2, 0)
|
||||
content.mount(info_widget)
|
||||
|
||||
# Create button container and mount it first
|
||||
button_container = Vertical(id="quiet_days_buttons")
|
||||
button_container.styles.height = "auto"
|
||||
content.mount(button_container)
|
||||
# Create input container
|
||||
input_container = Vertical(id="analysis_params_input_container")
|
||||
input_container.styles.height = "auto"
|
||||
content.mount(input_container)
|
||||
|
||||
# Now add buttons to the mounted container
|
||||
for days in [15, 30, 45, 60]:
|
||||
btn = Button(
|
||||
f"{days} days {'(Default)' if days == 45 else ''}",
|
||||
id=f"quiet_days_{days}",
|
||||
classes="quiet_day_btn",
|
||||
# History days label
|
||||
history_label = Static("History Period (days of execution history to pull):")
|
||||
history_label.styles.margin = (0, 0, 1, 0)
|
||||
input_container.mount(history_label)
|
||||
|
||||
# Add history days input field
|
||||
history_input = Input(
|
||||
placeholder="Enter days (1-365, default: 150)",
|
||||
value="150",
|
||||
id="history_days_input",
|
||||
)
|
||||
history_input.styles.width = "50"
|
||||
history_input.styles.margin = (0, 0, 2, 0)
|
||||
input_container.mount(history_input)
|
||||
|
||||
# Quiet days label
|
||||
quiet_label = Static(
|
||||
"Quiet Time Period (days without execution to be considered quiet):"
|
||||
)
|
||||
quiet_label.styles.margin = (0, 0, 1, 0)
|
||||
input_container.mount(quiet_label)
|
||||
|
||||
# Add quiet days input field
|
||||
quiet_input = Input(
|
||||
placeholder="Enter days (1-365, default: 45)",
|
||||
value="45",
|
||||
id="quiet_days_input",
|
||||
)
|
||||
quiet_input.styles.width = "50"
|
||||
quiet_input.styles.margin = (0, 0, 2, 0)
|
||||
input_container.mount(quiet_input)
|
||||
|
||||
# Add submit button
|
||||
submit_btn = Button(
|
||||
"Continue",
|
||||
id="analysis_params_submit",
|
||||
variant="primary",
|
||||
)
|
||||
submit_btn.styles.width = "50"
|
||||
submit_btn.styles.margin = (1, 0, 0, 0)
|
||||
input_container.mount(submit_btn)
|
||||
|
||||
# Focus the first input field
|
||||
history_input.focus()
|
||||
|
||||
def _validate_and_submit_history_days(self) -> None:
|
||||
"""Validate and submit the history days and quiet days inputs."""
|
||||
try:
|
||||
history_input = self.query_one("#history_days_input", Input)
|
||||
quiet_input = self.query_one("#quiet_days_input", Input)
|
||||
|
||||
history_value = history_input.value.strip()
|
||||
quiet_value = quiet_input.value.strip()
|
||||
|
||||
# Validate history days
|
||||
if not history_value:
|
||||
self.app.notify(
|
||||
"Please enter a history period value", severity="error", timeout=3
|
||||
)
|
||||
history_input.focus()
|
||||
return
|
||||
|
||||
try:
|
||||
history_days = int(history_value)
|
||||
except ValueError:
|
||||
self.app.notify(
|
||||
"Please enter a valid number for history period",
|
||||
severity="error",
|
||||
timeout=3,
|
||||
)
|
||||
history_input.focus()
|
||||
return
|
||||
|
||||
if history_days < 1 or history_days > 365:
|
||||
self.app.notify(
|
||||
"History period must be between 1 and 365 days",
|
||||
severity="error",
|
||||
timeout=3,
|
||||
)
|
||||
history_input.focus()
|
||||
return
|
||||
|
||||
# Validate quiet days
|
||||
if not quiet_value:
|
||||
self.app.notify(
|
||||
"Please enter a quiet time period value",
|
||||
severity="error",
|
||||
timeout=3,
|
||||
)
|
||||
quiet_input.focus()
|
||||
return
|
||||
|
||||
try:
|
||||
quiet_days = int(quiet_value)
|
||||
except ValueError:
|
||||
self.app.notify(
|
||||
"Please enter a valid number for quiet time period",
|
||||
severity="error",
|
||||
timeout=3,
|
||||
)
|
||||
quiet_input.focus()
|
||||
return
|
||||
|
||||
if quiet_days < 1 or quiet_days > 365:
|
||||
self.app.notify(
|
||||
"Quiet time period must be between 1 and 365 days",
|
||||
severity="error",
|
||||
timeout=3,
|
||||
)
|
||||
quiet_input.focus()
|
||||
return
|
||||
|
||||
# Check that quiet days doesn't exceed history days
|
||||
if quiet_days > history_days:
|
||||
self.app.notify(
|
||||
"Quiet time period cannot exceed history period",
|
||||
severity="error",
|
||||
timeout=3,
|
||||
)
|
||||
quiet_input.focus()
|
||||
return
|
||||
|
||||
# All validation passed
|
||||
self.history_days = history_days
|
||||
self.quiet_days = quiet_days
|
||||
logger.info(
|
||||
f"Selected history days: {history_days}, quiet days: {quiet_days}"
|
||||
)
|
||||
btn.styles.width = "100%"
|
||||
btn.styles.margin = (0, 0, 1, 0)
|
||||
button_container.mount(btn)
|
||||
self._start_analysis()
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"Error validating analysis parameters: {e}")
|
||||
self.app.notify(f"Error: {str(e)}", severity="error", timeout=3)
|
||||
|
||||
def on_button_pressed(self, event: Button.Pressed) -> None:
|
||||
"""Handle button press events."""
|
||||
button_id = event.button.id
|
||||
|
||||
# Quiet days selection buttons
|
||||
if button_id and button_id.startswith("quiet_days_"):
|
||||
days = int(button_id.split("_")[-1])
|
||||
self.quiet_days = days
|
||||
logger.info(f"Selected quiet days: {days}")
|
||||
self._start_analysis()
|
||||
# Analysis parameters submit button
|
||||
if button_id == "analysis_params_submit":
|
||||
self._validate_and_submit_history_days()
|
||||
return
|
||||
|
||||
# Navigation buttons
|
||||
@@ -258,46 +378,44 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
self._show_policy_selection()
|
||||
return
|
||||
|
||||
def on_input_submitted(self, event: Input.Submitted) -> None:
|
||||
"""Handle input submission (Enter key pressed)."""
|
||||
if event.input.id in ["history_days_input", "quiet_days_input"]:
|
||||
self._validate_and_submit_history_days()
|
||||
|
||||
def _start_analysis(self) -> None:
|
||||
"""Start the agent activity analysis."""
|
||||
self.workflow_stage = "analyzing"
|
||||
content = self.query_one("#content_area", Vertical)
|
||||
content.remove_children()
|
||||
|
||||
# Show analyzing message with detailed steps
|
||||
analyzing_msg = Static(
|
||||
f"Analyzing Agent Activity\n"
|
||||
f"{'=' * 50}\n\n"
|
||||
f"Policy: {self.selected_policy.name}\n"
|
||||
f"History Period: {self.history_days} days\n"
|
||||
f"Quiet Threshold: {self.quiet_days} days\n\n"
|
||||
f"Progress:\n"
|
||||
f"Step 1/4: Fetching agents from policy...\n"
|
||||
f"Step 2/4: Pulling execution history (this may take a moment)...\n"
|
||||
f"Step 3/4: Analyzing activity patterns...\n"
|
||||
f"Step 4/4: Categorizing agents...\n\n"
|
||||
f"Please wait - this operation cannot be cancelled.",
|
||||
id="analyzing_message",
|
||||
)
|
||||
analyzing_msg.styles.margin = (2, 1)
|
||||
content.mount(analyzing_msg)
|
||||
|
||||
# Show notification
|
||||
# Show notification that analysis is starting
|
||||
self.app.notify(
|
||||
"Starting analysis - this may take several minutes for large policies",
|
||||
severity="information",
|
||||
timeout=5,
|
||||
)
|
||||
|
||||
# Perform the analysis asynchronously
|
||||
self.call_later(self._perform_analysis)
|
||||
# Clear the screen to provide a blank canvas for Rust progress output
|
||||
# (Rust output displays over the TUI, so we clear everything except header/footer)
|
||||
try:
|
||||
# Clear title
|
||||
title_widget = self.query_one("#workflow_title", Static)
|
||||
title_widget.update("")
|
||||
|
||||
def _perform_analysis(self) -> None:
|
||||
# Clear status
|
||||
status_widget = self.query_one("#workflow_status", Static)
|
||||
status_widget.update("")
|
||||
|
||||
# Clear content area
|
||||
content = self.query_one("#content_area", Vertical)
|
||||
content.remove_children()
|
||||
except Exception as e:
|
||||
logger.debug(f"Could not clear screen for analysis: {e}")
|
||||
|
||||
# Delay the analysis start to ensure UI refresh completes first
|
||||
# This prevents Rust output from starting before the screen is cleared
|
||||
self.set_timer(0.5, self._perform_analysis_worker)
|
||||
|
||||
def _perform_analysis_worker(self) -> None:
|
||||
"""Perform the actual agent activity analysis."""
|
||||
try:
|
||||
# Update status: Fetching agents
|
||||
self._update_analysis_status("Step 1/4: Fetching agents from policy...")
|
||||
|
||||
# Get agents in the selected policy
|
||||
agents = self.api.agents_find_by_group(self.selected_policy.groupid)
|
||||
|
||||
@@ -310,32 +428,11 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
self._show_policy_selection()
|
||||
return
|
||||
|
||||
agent_count = len(agents)
|
||||
self.app.notify(
|
||||
f"Found {agent_count} agents - fetching execution history...",
|
||||
severity="information",
|
||||
timeout=3,
|
||||
)
|
||||
|
||||
# Update status: Pulling execution history
|
||||
self._update_analysis_status(
|
||||
f"Step 2/4: Pulling execution history for {agent_count} agents...\n"
|
||||
f"(This may take several minutes - progress shown in terminal)"
|
||||
)
|
||||
|
||||
# Get execution history (this shows progress bars in terminal via airlock_libs)
|
||||
policy_exec_history = getPolicyInfo(
|
||||
self.api, self.selected_policy, [1, 2, 6, 7], self.history_days
|
||||
)
|
||||
|
||||
# Update status: Analyzing patterns
|
||||
self._update_analysis_status("Step 3/4: Analyzing activity patterns...")
|
||||
self.app.notify(
|
||||
"History retrieved - analyzing patterns...",
|
||||
severity="information",
|
||||
timeout=2,
|
||||
)
|
||||
|
||||
if policy_exec_history.empty:
|
||||
logger.info(
|
||||
"No execution history found for the selected policy and time range."
|
||||
@@ -381,9 +478,6 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
lambda x: True if pd.isna(x) or x > self.quiet_days else False
|
||||
)
|
||||
|
||||
# Update status: Categorizing
|
||||
self._update_analysis_status("Step 4/4: Categorizing agents...")
|
||||
|
||||
# Sort agents
|
||||
agents = agents.sort_values(
|
||||
by=["execution_count", "hostname"], ascending=[True, True]
|
||||
@@ -394,7 +488,7 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
|
||||
# Categorize agents into DataFrames
|
||||
self.enforce_ready_df = agents[agents["enforce_ready"]].copy()
|
||||
self.non_enforce_ready_df = agents[not agents["enforce_ready"]].copy()
|
||||
self.non_enforce_ready_df = agents[~agents["enforce_ready"]].copy()
|
||||
|
||||
logger.info(
|
||||
f"Analysis complete: {len(self.enforce_ready_df)} enforce ready, "
|
||||
@@ -416,27 +510,6 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
self.app.notify(f"Analysis failed: {str(e)}", severity="error", timeout=5)
|
||||
self._show_policy_selection()
|
||||
|
||||
def _update_analysis_status(self, status_text: str) -> None:
|
||||
"""Update the analysis status message."""
|
||||
try:
|
||||
analyzing_msg = self.query_one("#analyzing_message", Static)
|
||||
|
||||
# Build updated message
|
||||
updated_text = (
|
||||
f"Analyzing Agent Activity\n"
|
||||
f"{'=' * 50}\n\n"
|
||||
f"Policy: {self.selected_policy.name}\n"
|
||||
f"History Period: {self.history_days} days\n"
|
||||
f"Quiet Threshold: {self.quiet_days} days\n\n"
|
||||
f"Progress:\n"
|
||||
f"{status_text}\n\n"
|
||||
f"Please wait - this operation cannot be cancelled."
|
||||
)
|
||||
|
||||
analyzing_msg.update(updated_text)
|
||||
except Exception as e:
|
||||
logger.debug(f"Could not update analysis status: {e}")
|
||||
|
||||
def _show_results(self) -> None:
|
||||
"""Show the categorized results."""
|
||||
self.workflow_stage = "view_results"
|
||||
@@ -821,7 +894,7 @@ class QuietAgentWorkflowScreen(Screen):
|
||||
# Depending on stage, go back to previous stage or exit
|
||||
if self.workflow_stage in ["select_policy", "view_results", "complete"]:
|
||||
self.app.pop_screen()
|
||||
elif self.workflow_stage == "select_quiet_days":
|
||||
elif self.workflow_stage == "select_history_days":
|
||||
self._show_policy_selection()
|
||||
elif self.workflow_stage == "select_enforce_target":
|
||||
self._show_results()
|
||||
|
||||
-444
@@ -1,444 +0,0 @@
|
||||
# Copyright (C) 2025 James Brotosky, Brandon Wickline
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
import logging
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
import dotenv
|
||||
from textual.app import App, ComposeResult
|
||||
from textual.containers import Vertical
|
||||
from textual.message import Message
|
||||
from textual.reactive import reactive
|
||||
from textual.screen import Screen
|
||||
from textual.widgets import (
|
||||
Button,
|
||||
DirectoryTree,
|
||||
Footer,
|
||||
Header,
|
||||
Static,
|
||||
Tab,
|
||||
Tabs,
|
||||
)
|
||||
|
||||
from models.agent import Agent
|
||||
from models.policy import Policy
|
||||
from services.API import AirlockAPIWrapper
|
||||
from TUI.Screens.moveagentworkflowscreen import MoveAgentWorkflowScreen
|
||||
from TUI.Screens.otpactivityscreen import OTPActivitiesScreen
|
||||
from TUI.Screens.otprevokescreen import OTPRevokeScreen
|
||||
from TUI.Screens.otpworkflowscreen import OTPWorkflowScreen
|
||||
from TUI.Screens.policyprepworkflowscreen import PolicyPrepWorkflowScreen
|
||||
from TUI.Screens.quietagentworkflowscreen import QuietAgentWorkflowScreen
|
||||
from TUI.Themes.theme_amber_terminal import get_amber_terminal_theme
|
||||
from TUI.Themes.theme_retro_terminal import get_retro_terminal_theme
|
||||
from TUI.Themes.themeselector import ThemeSelector
|
||||
from TUI.Widgets.agentmoveoperations import AgentMoveOperations
|
||||
from TUI.Widgets.multiagentselector import MultiAgentSelector
|
||||
from TUI.Widgets.policytreewidget import PolicyTreeWidget
|
||||
from TUI.Widgets.resultsdisplay import ResultsDisplay
|
||||
from utils.configmanager import get_user_value, load_env, save_user_config
|
||||
from utils.setup import get_base_directory
|
||||
from utils.utils import open_directory
|
||||
|
||||
dotenv.load_dotenv()
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# GLOBAL STASH
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
_APP_RESTART_REASON = None
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# helper to persist TEXTUAL_THEME to *user* config and mirror to .env
|
||||
# ---------------------------------------------------------------------------
|
||||
def _persist_user_theme(theme_name: str) -> None:
|
||||
"""
|
||||
Store the chosen Textual theme in the user's config using the config manager.
|
||||
No need to touch .env - config manager handles everything.
|
||||
"""
|
||||
base_dir = get_base_directory()
|
||||
config_dir = base_dir / "config"
|
||||
|
||||
try:
|
||||
save_user_config(config_dir, {"TEXTUAL_THEME": theme_name})
|
||||
logger.debug("Updated user config with TEXTUAL_THEME=%s", theme_name)
|
||||
except Exception as exc:
|
||||
logger.error("Failed to save TEXTUAL_THEME: %s", exc)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 1) SCREEN
|
||||
# ---------------------------------------------------------------------------
|
||||
class MainMenuScreen(Screen):
|
||||
api: AirlockAPIWrapper
|
||||
current_tab = reactive("")
|
||||
|
||||
BUTTON_DEFS = {
|
||||
"agent_actions": [
|
||||
(
|
||||
"🖥️ - Find, Move, or Generate OTP for Agents",
|
||||
"move_agent_workflow_button",
|
||||
),
|
||||
("🎫 - Review and appove OTP Activities", "otp_activities_button"),
|
||||
("🔕 - Find and Move Quiet Hosts to Enforcement", "find_quiet_button"),
|
||||
],
|
||||
"policy": [
|
||||
("⚖️ - Prepare Policy For Enforcement", "policy_prep_button"),
|
||||
("🛑 - Revoke OTPs", "otp_revoke_button"),
|
||||
],
|
||||
}
|
||||
|
||||
def __init__(self) -> None:
|
||||
super().__init__()
|
||||
self.extras = get_user_value("EXTRAS", str, "NOTTODAY")
|
||||
wd = load_env("WORKING_DIR") or os.getcwd()
|
||||
if not os.path.isdir(wd):
|
||||
wd = os.getcwd()
|
||||
self.working_dir = wd
|
||||
|
||||
def _make_buttons_for(self, tab_id: str) -> Vertical:
|
||||
defs = self.BUTTON_DEFS.get(tab_id, [])
|
||||
buttons = []
|
||||
for label, btn_id in defs:
|
||||
btn = Button(label, id=btn_id)
|
||||
btn.styles.width = "100%"
|
||||
buttons.append(btn)
|
||||
return Vertical(*buttons)
|
||||
|
||||
def compose(self) -> ComposeResult:
|
||||
yield Header(show_clock=True, icon="⚙")
|
||||
|
||||
tabs = [
|
||||
Tab("Tree View", id="p_tree"),
|
||||
Tab("Agents", id="agent_actions"),
|
||||
Tab("Directory", id="dir"),
|
||||
Tab("Settings", id="settings"),
|
||||
]
|
||||
|
||||
if self.extras == "POLICYPREP":
|
||||
tabs.insert(2, Tab("Policy Prep", id="policy"))
|
||||
|
||||
yield Tabs(*tabs, id="tabs")
|
||||
yield Vertical(id="content")
|
||||
yield Footer()
|
||||
|
||||
def on_mount(self) -> None:
|
||||
self.switch_tab("agent_actions")
|
||||
|
||||
# focus helpers
|
||||
def _get_content_buttons(self) -> list[Button]:
|
||||
content = self.query_one("#content", Vertical)
|
||||
return list(content.query(Button))
|
||||
|
||||
def _focus_first_button(self) -> None:
|
||||
buttons = self._get_content_buttons()
|
||||
if buttons:
|
||||
buttons[0].focus()
|
||||
|
||||
def _focus_tabs(self) -> None:
|
||||
tabs = self.query_one("#tabs", Tabs)
|
||||
tabs.focus()
|
||||
|
||||
def _focus_nearby_button(self, direction: int) -> None:
|
||||
buttons = self._get_content_buttons()
|
||||
if not buttons:
|
||||
return
|
||||
|
||||
try:
|
||||
current = next(i for i, b in enumerate(buttons) if b.has_focus)
|
||||
except StopIteration:
|
||||
if direction > 0:
|
||||
buttons[0].focus()
|
||||
else:
|
||||
buttons[-1].focus()
|
||||
return
|
||||
|
||||
if direction < 0 and current == 0:
|
||||
self._focus_tabs()
|
||||
return
|
||||
|
||||
new_index = current + direction
|
||||
if 0 <= new_index < len(buttons):
|
||||
buttons[new_index].focus()
|
||||
|
||||
def switch_tab(self, tab_id: str) -> None:
|
||||
self.current_tab = tab_id
|
||||
content = self.query_one("#content", Vertical)
|
||||
content.remove_children()
|
||||
|
||||
if tab_id in self.BUTTON_DEFS:
|
||||
content.mount(self._make_buttons_for(tab_id))
|
||||
self.call_later(self._focus_first_button)
|
||||
elif tab_id == "dir":
|
||||
content.mount(DirectoryTree(self.working_dir, id="dir_tree"))
|
||||
elif tab_id == "p_tree":
|
||||
content.mount(PolicyTreeWidget(self.app.policies, self.app.devices))
|
||||
elif tab_id == "settings":
|
||||
content.mount(ThemeSelector())
|
||||
else:
|
||||
content.mount(Static(f"Unknown tab: {tab_id}"))
|
||||
|
||||
def on_tabs_tab_activated(self, event: Tabs.TabActivated) -> None:
|
||||
self.switch_tab(event.tab.id)
|
||||
|
||||
def on_multi_agent_selector_agents_selected(
|
||||
self, message: MultiAgentSelector.AgentsSelected
|
||||
) -> None:
|
||||
"""Handle selected agents from AgentSelector."""
|
||||
global _APP_RESTART_REASON
|
||||
selected_agents = message.selected_agents
|
||||
logger.info("Selected agents: %s", selected_agents)
|
||||
# TODO: Implement actual handling of selected agents
|
||||
_APP_RESTART_REASON = ("multi_agent_action", selected_agents)
|
||||
self.app.exit()
|
||||
|
||||
def on_theme_selector_theme_selected(
|
||||
self, message: ThemeSelector.ThemeSelected
|
||||
) -> None:
|
||||
"""Handle theme selection from ThemeSelector."""
|
||||
global _APP_RESTART_REASON
|
||||
_persist_user_theme(message.theme_name)
|
||||
_APP_RESTART_REASON = ("restart",)
|
||||
self.app.exit()
|
||||
|
||||
def on_agent_move_operations_operation_complete(
|
||||
self, message: AgentMoveOperations.OperationComplete
|
||||
) -> None:
|
||||
"""Handle completion of agent move operation - show results."""
|
||||
logger.info(
|
||||
"Agent move operation completed: %s, %d successful, %d unsuccessful",
|
||||
message.operation,
|
||||
len(message.successful),
|
||||
len(message.unsuccessful),
|
||||
)
|
||||
|
||||
# Format results for display
|
||||
successful_text = "\n".join(
|
||||
[f"{agent.hostname}" for agent, _ in message.successful]
|
||||
)
|
||||
unsuccessful_text = "\n".join(
|
||||
[f"{agent.hostname}: {error}" for agent, error in message.unsuccessful]
|
||||
)
|
||||
|
||||
# Remove the operations widget
|
||||
try:
|
||||
ops_widget = self.query_one(AgentMoveOperations)
|
||||
ops_widget.remove()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
# Show results
|
||||
self.query_one("#content", Vertical).mount(
|
||||
ResultsDisplay(message.operation, successful_text, unsuccessful_text)
|
||||
)
|
||||
|
||||
def on_results_display_go_back(self, message: ResultsDisplay.GoBack) -> None:
|
||||
"""Handle back button from results display."""
|
||||
try:
|
||||
results_widget = self.query_one(ResultsDisplay)
|
||||
results_widget.remove()
|
||||
except Exception:
|
||||
pass
|
||||
# Return to main menu
|
||||
self.app.pop_screen()
|
||||
|
||||
def on_directory_tree_file_selected(
|
||||
self, event: DirectoryTree.FileSelected
|
||||
) -> None:
|
||||
path = event.path
|
||||
logger.debug("Directory file selected: %s", path)
|
||||
try:
|
||||
open_directory(str(path))
|
||||
except Exception as exc:
|
||||
logger.error("Failed to open %s: %s", path, exc)
|
||||
self.app.bell()
|
||||
|
||||
def on_button_pressed(self, event: Button.Pressed) -> None:
|
||||
button_id = event.button.id
|
||||
logger.debug("Button pressed: %s", button_id)
|
||||
|
||||
match button_id:
|
||||
case "move_agent_workflow_button":
|
||||
self.app.push_screen(MoveAgentWorkflowScreen(self.app.devices))
|
||||
event.stop()
|
||||
|
||||
case "otp_generate_button":
|
||||
self.app.push_screen(OTPWorkflowScreen(self.app.devices))
|
||||
event.stop()
|
||||
|
||||
case "find_quiet_button":
|
||||
self.app.push_screen(
|
||||
QuietAgentWorkflowScreen(self.app.api, self.app.policies)
|
||||
)
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case "otp_activities_button":
|
||||
self.app.push_screen(OTPActivitiesScreen())
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case "otp_revoke_button":
|
||||
self.app.push_screen(OTPRevokeScreen())
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case "policy_prep_button":
|
||||
# Use the new TUI workflow screen instead of legacy
|
||||
self.app.push_screen(
|
||||
PolicyPrepWorkflowScreen(self.app.api, self.app.policies)
|
||||
)
|
||||
event.stop()
|
||||
return
|
||||
|
||||
case _:
|
||||
self.app.bell()
|
||||
logger.warning("Unknown button pressed: %s", button_id)
|
||||
return
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 2) APP
|
||||
# ---------------------------------------------------------------------------
|
||||
class Loxide(App[Message]):
|
||||
api: AirlockAPIWrapper
|
||||
working_dir: str
|
||||
policies: Optional[list[Policy]]
|
||||
devices: Optional[list[Agent]]
|
||||
|
||||
CSS = """
|
||||
#logo {
|
||||
width: 100%;
|
||||
content-align: center middle;
|
||||
text-align: center;
|
||||
}
|
||||
"""
|
||||
BINDINGS = [
|
||||
("q", "quit", "Quit"),
|
||||
("f", "open_fe", "Launch Explorer"),
|
||||
("r", "refresh", "Refresh"),
|
||||
]
|
||||
|
||||
def __init__(self, api: AirlockAPIWrapper):
|
||||
self._textual_theme = get_user_value("TEXTUAL_THEME", str, "textual-dark")
|
||||
super().__init__()
|
||||
self.api = api
|
||||
wd = load_env("WORKING_DIR") or os.getcwd()
|
||||
if not os.path.isdir(wd):
|
||||
wd = os.getcwd()
|
||||
self.working_dir = wd
|
||||
# Initial data load
|
||||
self.refresh_data()
|
||||
|
||||
def refresh_data(self) -> None:
|
||||
"""Public method to refresh policies and devices from the API."""
|
||||
try:
|
||||
self.policies = [
|
||||
Policy(**row.to_dict())
|
||||
for _, row in self.api.policy_find_all().iterrows()
|
||||
]
|
||||
self.devices = [
|
||||
Agent(**row.to_dict())
|
||||
for _, row in self.api.agent_find_all().iterrows()
|
||||
]
|
||||
if self.policies and self.devices:
|
||||
for agent in self.devices:
|
||||
agent.enrich_with_policies(self.policies)
|
||||
logger.debug(
|
||||
f"Enriched {len(self.devices)} agents with policy information"
|
||||
)
|
||||
except Exception as exc:
|
||||
logger.error("Failed to load policies/devices: %s", exc)
|
||||
self.policies = None
|
||||
self.devices = None
|
||||
|
||||
def on_mount(self, api: AirlockAPIWrapper) -> None:
|
||||
self.register_theme(get_retro_terminal_theme())
|
||||
self.register_theme(get_amber_terminal_theme())
|
||||
self.theme = self._textual_theme
|
||||
self.push_screen(MainMenuScreen())
|
||||
|
||||
def action_refresh(self) -> None:
|
||||
self.refresh_data()
|
||||
|
||||
def action_quit(self) -> None:
|
||||
global _APP_RESTART_REASON
|
||||
_APP_RESTART_REASON = None
|
||||
self.exit()
|
||||
|
||||
def action_open_fe(self) -> None:
|
||||
"""Open the working directory in the OS file manager (footer binding)."""
|
||||
path_to_open = self.working_dir or os.getcwd()
|
||||
try:
|
||||
open_directory(path_to_open)
|
||||
except Exception as exc:
|
||||
logger.error("Failed to open directory %s: %s", path_to_open, exc)
|
||||
self.bell() # optional feedback
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 3) PUBLIC ENTRYPOINT
|
||||
# ---------------------------------------------------------------------------
|
||||
def run_Loxide(api: AirlockAPIWrapper) -> None:
|
||||
global _APP_RESTART_REASON
|
||||
base_dir = get_base_directory()
|
||||
env_path = base_dir / ".env"
|
||||
dotenv.load_dotenv(dotenv_path=env_path, override=True)
|
||||
|
||||
max_attempts = 5
|
||||
attempts = 0
|
||||
|
||||
while attempts < max_attempts:
|
||||
attempts += 1
|
||||
logger.debug("Starting app loop iteration (attempt %d)", attempts)
|
||||
_APP_RESTART_REASON = None
|
||||
app = Loxide(api)
|
||||
|
||||
try:
|
||||
app.run()
|
||||
except SystemExit as exc:
|
||||
if exc.code != 0:
|
||||
logger.debug("Caught SystemExit from Textual: %s", exc)
|
||||
raise
|
||||
|
||||
reason = _APP_RESTART_REASON
|
||||
logger.debug("After app.run(), _APP_RESTART_REASON = %r", reason)
|
||||
|
||||
if not reason:
|
||||
logger.debug("No restart reason, exiting loop")
|
||||
break
|
||||
|
||||
if reason[0] == "restart":
|
||||
logger.debug("Restarting app loop")
|
||||
continue
|
||||
|
||||
if reason[0] == "multi_agent_action":
|
||||
logger.info("Multi-agent action with selected agents: %s", reason[1])
|
||||
continue
|
||||
|
||||
logger.error("Unknown restart reason: %r", reason)
|
||||
break
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 4) DEV
|
||||
# ---------------------------------------------------------------------------
|
||||
if __name__ == "__main__":
|
||||
api = AirlockAPIWrapper()
|
||||
run_Loxide(api)
|
||||
+24
-24
@@ -88,9 +88,9 @@ def sortHashes(
|
||||
):
|
||||
working_dir = load_env("WORKING_DIR")
|
||||
history_days = Selector.select_value(
|
||||
prompt="Enter how many days of history to pull (1–150): ",
|
||||
prompt="Enter how many days of history to pull (1-365): ",
|
||||
value_type=int,
|
||||
valid_range=(1, 150),
|
||||
valid_range=(1, 365),
|
||||
)
|
||||
|
||||
logger.debug(f"{history_days} day selected for history")
|
||||
@@ -655,7 +655,7 @@ def section_header(title):
|
||||
|
||||
def printEnforceChecklist(selected_policies, destination_policy, destination_allowlist):
|
||||
working_dir = load_env("WORKING_DIR")
|
||||
section_header("Prepare to Enforce Policy ")
|
||||
section_header("Prepare to Enforce Policy")
|
||||
print(
|
||||
colorText(
|
||||
"\nSequentially follow these steps to prepare a policy for enforcement:",
|
||||
@@ -670,11 +670,11 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
)
|
||||
)
|
||||
if not selected_policies:
|
||||
print(colorText(" [✗] No policies have been chosen", "red"))
|
||||
print(colorText(" [âŒ] No policies have been chosen", "red"))
|
||||
else:
|
||||
print(colorText("The following policies have been chosen:", "green"))
|
||||
for policy in selected_policies:
|
||||
print(colorText(f" [✓] {policy.name}", "green"))
|
||||
print(colorText(f" [✅] {policy.name}", "green"))
|
||||
|
||||
# Step 2: Destination Policy and Allowlist
|
||||
print(
|
||||
@@ -683,22 +683,22 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
if destination_policy:
|
||||
print(
|
||||
colorText(
|
||||
f" [✓] {destination_policy[0].name} has been selected as the destination policy",
|
||||
f" [✅] {destination_policy[0].name} has been selected as the destination policy",
|
||||
"green",
|
||||
)
|
||||
)
|
||||
else:
|
||||
print(colorText(" [✗] No destination policy has been chosen", "red"))
|
||||
print(colorText(" [âŒ] No destination policy has been chosen", "red"))
|
||||
|
||||
if destination_allowlist:
|
||||
print(
|
||||
colorText(
|
||||
f" [✓] {destination_allowlist[0].name} has been selected as allowlist",
|
||||
f" [✅] {destination_allowlist[0].name} has been selected as allowlist",
|
||||
"green",
|
||||
)
|
||||
)
|
||||
else:
|
||||
print(colorText(" [✗] No allowlist has been chosen", "red"))
|
||||
print(colorText(" [âŒ] No allowlist has been chosen", "red"))
|
||||
|
||||
# Step 3: Data Preparation
|
||||
print(
|
||||
@@ -713,9 +713,9 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
print(
|
||||
colorText(
|
||||
(
|
||||
" [✓] Data has been fetched"
|
||||
" [✅] Data has been fetched"
|
||||
if os.path.exists(review_path)
|
||||
else " [✗] Data has not been fetched"
|
||||
else " [âŒ] Data has not been fetched"
|
||||
),
|
||||
"green" if os.path.exists(review_path) else "red",
|
||||
)
|
||||
@@ -723,7 +723,7 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
else:
|
||||
print(
|
||||
colorText(
|
||||
" [✗] No policies selected, cannot check data fetch status", "red"
|
||||
" [âŒ] No policies selected, cannot check data fetch status", "red"
|
||||
)
|
||||
)
|
||||
|
||||
@@ -756,9 +756,9 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
print(
|
||||
colorText(
|
||||
(
|
||||
" [✓] Reviewed hashes have been loaded"
|
||||
" [✅] Reviewed hashes have been loaded"
|
||||
if os.path.exists(approved_path)
|
||||
else " [✗] Reviewed hashes have not been loaded"
|
||||
else " [âŒ] Reviewed hashes have not been loaded"
|
||||
),
|
||||
"green" if os.path.exists(approved_path) else "red",
|
||||
)
|
||||
@@ -766,9 +766,9 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
print(
|
||||
colorText(
|
||||
(
|
||||
" [✓] Path review list created"
|
||||
" [✅] Path review list created"
|
||||
if os.path.exists(second_review_path)
|
||||
else " [✗] Path review list has not been created"
|
||||
else " [âŒ] Path review list has not been created"
|
||||
),
|
||||
"green" if os.path.exists(second_review_path) else "red",
|
||||
)
|
||||
@@ -776,7 +776,7 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
else:
|
||||
print(
|
||||
colorText(
|
||||
" [✗] No policies selected, cannot check reviewed hashes or path list",
|
||||
" [âŒ] No policies selected, cannot check reviewed hashes or path list",
|
||||
"red",
|
||||
)
|
||||
)
|
||||
@@ -812,9 +812,9 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
print(
|
||||
colorText(
|
||||
(
|
||||
" [✓] Reviewed path list detected"
|
||||
" [✅] Reviewed path list detected"
|
||||
if os.path.exists(reviewed_path)
|
||||
else " [✗] Path review list has not been detected"
|
||||
else " [âŒ] Path review list has not been detected"
|
||||
),
|
||||
"green" if os.path.exists(reviewed_path) else "red",
|
||||
)
|
||||
@@ -825,9 +825,9 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
print(
|
||||
colorText(
|
||||
(
|
||||
" [✓] Preflight Path Exclusion List has been generated"
|
||||
" [✅] Preflight Path Exclusion List has been generated"
|
||||
if preflight_ready
|
||||
else " [✗] Preflight Path Exclusion List has not been generated"
|
||||
else " [âŒ] Preflight Path Exclusion List has not been generated"
|
||||
),
|
||||
"green" if preflight_ready else "red",
|
||||
)
|
||||
@@ -835,7 +835,7 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
else:
|
||||
print(
|
||||
colorText(
|
||||
" [✗] No policies selected, cannot check preflight status", "red"
|
||||
" [âŒ] No policies selected, cannot check preflight status", "red"
|
||||
)
|
||||
)
|
||||
|
||||
@@ -866,5 +866,5 @@ def printEnforceChecklist(selected_policies, destination_policy, destination_all
|
||||
print(colorText(" Apply approved hashes to allowlist", "cyan"))
|
||||
|
||||
# Utility Options
|
||||
print(colorText("F. Open Working Directory", "cyan"))
|
||||
print(colorText("B. Back", "cyan"))
|
||||
print(colorText("F. Open Working Directory", "cyan"))
|
||||
print(colorText("B. Back", "cyan"))
|
||||
|
||||
Generated
+386
-587
File diff suppressed because it is too large
Load Diff
+13
-12
@@ -1,30 +1,31 @@
|
||||
[package]
|
||||
name = "airlock_libs"
|
||||
version = "5.0.1"
|
||||
version = "6.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
chrono = "0.4.42"
|
||||
indicatif = "0.18.2"
|
||||
mongodb = "3.3.0"
|
||||
opentelemetry = { version = "0.18.0", features = ["rt-tokio", "metrics", "trace"] }
|
||||
opentelemetry-otlp = { version = "0.11.0", features = ["trace", "metrics"] }
|
||||
opentelemetry-semantic-conventions = { version = "0.10.0" }
|
||||
opentelemetry-proto = { version = "0.1.0"}
|
||||
opentelemetry = { version = "0.27.0", features = ["logs", "metrics", "trace"] }
|
||||
opentelemetry-otlp = { version = "0.27.0", features = ["trace", "metrics", "grpc-tonic", "http-proto", "tls", "reqwest-client", "reqwest-rustls"] }
|
||||
opentelemetry-semantic-conventions = { version = "0.27.0" }
|
||||
opentelemetry-proto = { version = "0.27.0"}
|
||||
pyo3 = { version = "0.27.0", features = ["extension-module", "generate-import-lib"] }
|
||||
reqwest = { version = "0.12.24", features = ["json", "native-tls"] }
|
||||
reqwest = { version = "0.12.24", features = ["json", "native-tls", "rustls-tls"] }
|
||||
serde = "1.0.228"
|
||||
serde-pyobject = "0.8.0"
|
||||
serde_json = "1.0.145"
|
||||
tokio = { version = "1.48.0", features = ["full"] }
|
||||
tonic = { version = "0.8.2", features = ["tls-roots"] }
|
||||
tonic = { version = "0.12.3", features = ["tls-roots"] }
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = "0.3.20"
|
||||
tracing-opentelemetry = "0.32.0"
|
||||
pyo3-async-runtimes = { version = "0.27.0", features = ["async-std", "tokio"] }
|
||||
crossbeam = "0.8.4"
|
||||
log = "0.4.29"
|
||||
flexi_logger = "0.31.7"
|
||||
opentelemetry-appender-log = "0.27.0"
|
||||
opentelemetry_sdk = { version = "0.27.0", features = ["rt-tokio", "testing", "trace"] }
|
||||
|
||||
[package.metadata.maturin]
|
||||
generate-abi-stubs = true
|
||||
@@ -37,4 +38,4 @@ codegen-units = 1
|
||||
panic = 'abort'
|
||||
strip = true
|
||||
debug-assertions = false
|
||||
overflow-checks = false
|
||||
overflow-checks = true
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||
|
||||
[project]
|
||||
name = "airlock_libs"
|
||||
version = "5.0.1"
|
||||
version = "6.1.0"
|
||||
description = "Airlock Digital API Wrapper"
|
||||
readme = "README.md"
|
||||
license = { text = "AGPL-3.0-only" }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
use pyo3::prelude::*;
|
||||
pub mod modules;
|
||||
pub mod services;
|
||||
pub mod prelude;
|
||||
pub mod services;
|
||||
#[pymodule]
|
||||
fn airlock_libs(py: Python<'_>, m: &Bound<PyModule>) -> PyResult<()> {
|
||||
m.add_function(wrap_pyfunction!(services::pull_policy_exec_histories, py)?)?;
|
||||
|
||||
@@ -8,7 +8,32 @@ pub struct TelemetryConfig {
|
||||
}
|
||||
|
||||
impl TelemetryConfig {
|
||||
pub fn load() -> Self {
|
||||
pub fn init_tracer() -> opentelemetry_sdk::trace::TracerProvider {
|
||||
let cfg: TelemetryConfig = TelemetryConfig::load();
|
||||
if !cfg.TELEMETRY {
|
||||
return TracerProvider::builder().build();
|
||||
}
|
||||
let endpoint = cfg.TELEM_URL.unwrap_or_default();
|
||||
let channel = Channel::from_shared(endpoint.clone())
|
||||
.unwrap()
|
||||
.tls_config(ClientTlsConfig::new().with_native_roots())
|
||||
.unwrap()
|
||||
.connect_lazy();
|
||||
let exporter = opentelemetry_otlp::SpanExporter::builder()
|
||||
.with_tonic()
|
||||
.with_endpoint(endpoint.clone())
|
||||
.with_channel(channel)
|
||||
.build()
|
||||
.expect("Failed to build exporter");
|
||||
opentelemetry_sdk::trace::TracerProvider::builder()
|
||||
.with_simple_exporter(exporter)
|
||||
.with_resource(Resource::new(vec![KeyValue::new(
|
||||
"service.name",
|
||||
"LoxideLibs",
|
||||
)]))
|
||||
.build()
|
||||
}
|
||||
fn load() -> Self {
|
||||
let cfg_path = get_base_directory().join("config\\user_config.json");
|
||||
if !cfg_path.exists() {
|
||||
return Self {
|
||||
@@ -64,36 +89,30 @@ pub struct Group {
|
||||
pub(crate) localip: String,
|
||||
}
|
||||
|
||||
pub enum ExtractedValues {
|
||||
Headers(reqwest::header::HeaderMap),
|
||||
BaseUrl(String),
|
||||
pub struct PyData {
|
||||
pub headers: reqwest::header::HeaderMap,
|
||||
pub base_url: String,
|
||||
}
|
||||
|
||||
pub trait Converter {
|
||||
fn convert(py: Python<'_>, py_self: &Py<PyAny>, extract_headers: bool) -> ExtractedValues;
|
||||
}
|
||||
|
||||
pub struct PyData;
|
||||
|
||||
impl Converter for PyData {
|
||||
fn convert(py: Python<'_>, py_self: &Py<PyAny>, extract_headers: bool) -> ExtractedValues {
|
||||
if extract_headers {
|
||||
let headers = py_self.getattr(py, "headers").unwrap().to_string();
|
||||
let headers_replace = headers.replace('\'', "\"");
|
||||
let parsed: Value = serde_json::from_str(headers_replace.as_str()).unwrap();
|
||||
let mut header_map = HeaderMap::new();
|
||||
if let Some(obj) = parsed.as_object() {
|
||||
for (_key, value) in obj {
|
||||
if let Some(v) = value.as_str() {
|
||||
let val = HeaderValue::from_str(v).unwrap();
|
||||
header_map.insert(HeaderName::from_str("X-APIKey").unwrap(), val);
|
||||
}
|
||||
impl PyData {
|
||||
pub fn extract_data(py: Python<'_>, obj: &Py<PyAny>) -> Self {
|
||||
let headers_raw = obj.getattr(py, "headers").unwrap().to_string();
|
||||
let headers_json = headers_raw.replace('\'', "\"");
|
||||
let parsed: Value = serde_json::from_str(&headers_json).unwrap();
|
||||
let mut header_map = HeaderMap::new();
|
||||
if let Some(obj) = parsed.as_object() {
|
||||
for (key, val) in obj {
|
||||
if let Some(v) = val.as_str() {
|
||||
let header_name = HeaderName::from_str(key).unwrap();
|
||||
let header_value: HeaderValue = HeaderValue::from_str(v).unwrap();
|
||||
header_map.insert(header_name, header_value);
|
||||
}
|
||||
}
|
||||
ExtractedValues::Headers(header_map)
|
||||
} else {
|
||||
let base_url = py_self.getattr(py, "base_url").unwrap().to_string();
|
||||
ExtractedValues::BaseUrl(base_url)
|
||||
}
|
||||
let base_url = obj.getattr(py, "base_url").unwrap().to_string();
|
||||
Self {
|
||||
headers: header_map,
|
||||
base_url,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,4 +128,4 @@ impl SkipBack {
|
||||
let objectid_hex = format!("{}0000000000000000", hex_timestamp);
|
||||
ObjectId::parse_str(&objectid_hex).expect("Invalid ObjectId hex")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
pub mod datatypes;
|
||||
pub mod datatypes;
|
||||
|
||||
@@ -1,21 +1,25 @@
|
||||
pub use chrono::{Duration, Local, NaiveDate};
|
||||
pub use crossbeam::channel::unbounded;
|
||||
pub use indicatif::{MultiProgress, ProgressBar, ProgressDrawTarget, ProgressStyle};
|
||||
pub use mongodb::bson::oid::ObjectId;
|
||||
pub use opentelemetry::global::shutdown_tracer_provider;
|
||||
pub use opentelemetry::sdk::Resource;
|
||||
pub use opentelemetry::global::GlobalTracerProvider;
|
||||
pub use opentelemetry::trace::noop::NoopTracerProvider;
|
||||
pub use opentelemetry::trace::{Status, TraceContextExt, TraceError};
|
||||
pub use opentelemetry::{Context, KeyValue, sdk::trace as sdktrace, trace::Tracer};
|
||||
pub use opentelemetry::{Key, global};
|
||||
pub use opentelemetry::trace::{Status, TraceContextExt, Tracer};
|
||||
pub use opentelemetry::*;
|
||||
pub use opentelemetry_otlp::ExportConfig;
|
||||
pub use opentelemetry_otlp::WithExportConfig;
|
||||
pub use opentelemetry_otlp::WithTonicConfig;
|
||||
pub use opentelemetry_sdk::Resource;
|
||||
pub use opentelemetry_sdk::trace::{Config, TracerProvider};
|
||||
pub use pyo3::{prelude::*, types::PyString};
|
||||
pub use pyo3_async_runtimes::async_std;
|
||||
pub use reqwest::{
|
||||
Client,
|
||||
header::{HeaderMap, HeaderName, HeaderValue},
|
||||
};
|
||||
pub use serde::{Deserialize, Serialize};
|
||||
pub use serde_json::Value;
|
||||
pub use std::sync::{Arc, Mutex};
|
||||
pub use std::thread;
|
||||
pub use std::{
|
||||
collections::HashMap,
|
||||
env,
|
||||
@@ -24,4 +28,5 @@ pub use std::{
|
||||
io::{Read, Seek, SeekFrom},
|
||||
path::PathBuf,
|
||||
str::FromStr,
|
||||
};
|
||||
};
|
||||
pub use tonic::transport::{Channel, ClientTlsConfig};
|
||||
|
||||
+136
-149
@@ -1,5 +1,6 @@
|
||||
use crate::prelude::*;
|
||||
use crate::modules::datatypes::*;
|
||||
use crate::prelude::*;
|
||||
|
||||
#[pyfunction]
|
||||
pub fn pull_policy_exec_histories(
|
||||
py: Python<'_>,
|
||||
@@ -8,33 +9,27 @@ pub fn pull_policy_exec_histories(
|
||||
exec_types: String,
|
||||
days: i64,
|
||||
) -> Py<PyString> {
|
||||
let headers: HeaderMap = match PyData::convert(py, &py_self, true) {
|
||||
ExtractedValues::Headers(h) => h,
|
||||
ExtractedValues::BaseUrl(_) => std::process::abort(),
|
||||
};
|
||||
let base_url = match PyData::convert(py, &py_self, false) {
|
||||
ExtractedValues::Headers(_) => std::process::abort(),
|
||||
ExtractedValues::BaseUrl(b) => b,
|
||||
};
|
||||
let handle = std::thread::spawn(move || {
|
||||
let rt = match tokio::runtime::Runtime::new() {
|
||||
println!();
|
||||
let data: PyData = PyData::extract_data(py, &py_self);
|
||||
let headers: HeaderMap = data.headers;
|
||||
let base_url: String = data.base_url;
|
||||
let handle: thread::JoinHandle<String> = std::thread::spawn(move || {
|
||||
let rt: tokio::runtime::Runtime = match tokio::runtime::Runtime::new() {
|
||||
Ok(rt) => rt,
|
||||
Err(e) => {
|
||||
println!("Failed to build Tokio Runtime: {:?}", e);
|
||||
std::process::abort();
|
||||
}
|
||||
};
|
||||
rt.block_on(async {
|
||||
let _ = init_tracer();
|
||||
});
|
||||
let tracer = global::tracer("global_tracer");
|
||||
let _cx = Context::new();
|
||||
let tracer_provider = rt.block_on(async { TelemetryConfig::init_tracer() });
|
||||
global::set_tracer_provider(tracer_provider.clone());
|
||||
let tracer: global::BoxedTracer = global::tracer("tracer");
|
||||
let _cx: Context = Context::new();
|
||||
let file_path: PathBuf = format!(
|
||||
"{}\\cache\\chunkinator.json",
|
||||
get_base_directory().display()
|
||||
)
|
||||
.into();
|
||||
let writeable_filepath = file_path.clone();
|
||||
if !&file_path.exists() {
|
||||
if let Some(parent_dir) = &file_path.parent()
|
||||
&& !parent_dir.exists()
|
||||
@@ -55,13 +50,14 @@ pub fn pull_policy_exec_histories(
|
||||
}
|
||||
}
|
||||
}
|
||||
let data = ApiResponse {
|
||||
let data: ApiResponse = ApiResponse {
|
||||
error: "Success".to_string(),
|
||||
response: ExecHistories {
|
||||
exechistories: vec![],
|
||||
},
|
||||
};
|
||||
let data_write = serde_json::to_string_pretty(&data).expect("Failed to serialize");
|
||||
let writeable_filepath: PathBuf = file_path.clone();
|
||||
let data_write: String = serde_json::to_string_pretty(&data).expect("Failed to serialize");
|
||||
match fs::write(writeable_filepath.clone(), data_write) {
|
||||
Ok(_) => {}
|
||||
Err(e) => {
|
||||
@@ -70,17 +66,18 @@ pub fn pull_policy_exec_histories(
|
||||
}
|
||||
}
|
||||
let mut checkpoint_number: String = SkipBack::find_checkpoint(days).to_string();
|
||||
let multi_progress = MultiProgress::new();
|
||||
multi_progress.set_draw_target(ProgressDrawTarget::stdout());
|
||||
let progress_bar = multi_progress.add(ProgressBar::new(100));
|
||||
progress_bar.set_style(
|
||||
let progress_bar = Arc::new(Mutex::new(ProgressBar::new(100)));
|
||||
progress_bar
|
||||
.lock()
|
||||
.unwrap()
|
||||
.set_draw_target(ProgressDrawTarget::stderr());
|
||||
progress_bar.lock().unwrap().set_style(
|
||||
ProgressStyle::default_bar()
|
||||
.template("Total Completion: {spinner:.green} [{elapsed_precise}] [{bar:40.green/blue}] {pos}/{len}")
|
||||
.template("Total Completion: {spinner:.green} [{elapsed_precise}] [{bar:40.green/blue}] {pos}/{len} {message}")
|
||||
.unwrap(),
|
||||
);
|
||||
progress_bar.enable_steady_tick(std::time::Duration::from_millis(100));
|
||||
let client = tracer.in_span("Building HTTP Client", |cx| {
|
||||
let client_result = build_client(headers);
|
||||
let client: Client = tracer.in_span("Building HTTP Client", |cx| {
|
||||
let client_result: Result<Client, reqwest::Error> = build_client(headers);
|
||||
match client_result {
|
||||
Ok(client_result) => {
|
||||
cx.span().add_event(
|
||||
@@ -107,26 +104,85 @@ pub fn pull_policy_exec_histories(
|
||||
}
|
||||
}
|
||||
});
|
||||
let cutoff = Local::now().naive_local() - Duration::days(days);
|
||||
let mut f = match File::open(&writeable_filepath) {
|
||||
Ok(f) => f,
|
||||
Err(e) => {
|
||||
println!("Failed to Access {:?}: {}", &writeable_filepath, e);
|
||||
std::process::abort();
|
||||
}
|
||||
};
|
||||
tracer.in_span("Airlock Data Retreival", |cx| {
|
||||
let span = cx.span();
|
||||
span.set_attribute(Key::new("Days").string(days.to_string()));
|
||||
span.set_attribute(KeyValue::new("Policy Name", policy_names.clone()));
|
||||
loop {
|
||||
match f.seek(SeekFrom::Start(0)) {
|
||||
Ok(_) => {}
|
||||
Err(e) => {
|
||||
println!("Failed to seek start of {:?}: {}", f, e);
|
||||
std::process::abort();
|
||||
let cutoff: chrono::NaiveDateTime =
|
||||
Local::now().naive_local() - chrono::Duration::days(days);
|
||||
let (tx, rx) = unbounded::<Vec<Group>>();
|
||||
let pb_clone = progress_bar.clone();
|
||||
thread::spawn(move || {
|
||||
let mut seen: HashMap<(String, String, String), Group> = if writeable_filepath.exists()
|
||||
{
|
||||
let contents: String = fs::read_to_string(&writeable_filepath).unwrap_or_default();
|
||||
let existing: ApiResponse =
|
||||
serde_json::from_str(&contents).unwrap_or(ApiResponse {
|
||||
error: "Success".to_string(),
|
||||
response: ExecHistories {
|
||||
exechistories: vec![],
|
||||
},
|
||||
});
|
||||
existing
|
||||
.response
|
||||
.exechistories
|
||||
.into_iter()
|
||||
.map(|entry: Group| {
|
||||
(
|
||||
(
|
||||
entry.sha256.clone(),
|
||||
entry.filename.clone(),
|
||||
entry.hostname.clone(),
|
||||
),
|
||||
entry,
|
||||
)
|
||||
})
|
||||
.collect()
|
||||
} else {
|
||||
HashMap::new()
|
||||
};
|
||||
while let Ok(parsed_responses) = rx.recv() {
|
||||
for executions in parsed_responses {
|
||||
if executions.checkpoint.is_empty() || executions.datetime.is_empty() {
|
||||
continue;
|
||||
}
|
||||
let history_date: NaiveDate = match NaiveDate::parse_from_str(
|
||||
&executions.datetime.replace(" +0000 UTC", ""),
|
||||
"%Y-%m-%dT%H:%M:%SZ",
|
||||
) {
|
||||
Ok(date) => date,
|
||||
Err(_) => continue,
|
||||
};
|
||||
if history_date >= cutoff.into() {
|
||||
let key: (String, String, String) = (
|
||||
executions.sha256.clone(),
|
||||
executions.filename.clone(),
|
||||
executions.hostname.clone(),
|
||||
);
|
||||
seen.entry(key).or_insert(executions.clone());
|
||||
}
|
||||
}
|
||||
let final_response: ApiResponse = ApiResponse {
|
||||
error: "Success".to_string(),
|
||||
response: ExecHistories {
|
||||
exechistories: seen.values().cloned().collect(),
|
||||
},
|
||||
};
|
||||
let data_write: String = serde_json::to_string_pretty(&final_response).unwrap();
|
||||
match fs::write(&writeable_filepath, data_write) {
|
||||
Ok(_) => {}
|
||||
Err(e) => {
|
||||
println!("Failed to write to: {:?}: {}", &writeable_filepath, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
let mut first_date: Option<NaiveDate> = None;
|
||||
tracer.in_span("Airlock Data Retreival", |cx| {
|
||||
pb_clone
|
||||
.lock()
|
||||
.unwrap()
|
||||
.enable_steady_tick(std::time::Duration::from_millis(100));
|
||||
let span: opentelemetry::trace::SpanRef<'_> = cx.span();
|
||||
span.set_attribute(KeyValue::new("Days", days));
|
||||
span.set_attribute(KeyValue::new("Policy Name", policy_names.clone()));
|
||||
loop {
|
||||
let execution_histories = tracer.in_span(checkpoint_number.to_string(), |cx| {
|
||||
let results: ApiResponse = history_logging(
|
||||
&base_url,
|
||||
@@ -141,103 +197,53 @@ pub fn pull_policy_exec_histories(
|
||||
));
|
||||
results
|
||||
});
|
||||
let parsed_responses = execution_histories.response.exechistories;
|
||||
let parsed_responses: Vec<Group> = execution_histories.response.exechistories;
|
||||
if parsed_responses.is_empty() {
|
||||
break;
|
||||
}
|
||||
let mut seen: HashMap<(String, String, String), Group> =
|
||||
if writeable_filepath.exists() {
|
||||
let mut contents = String::new();
|
||||
f.read_to_string(&mut contents).unwrap();
|
||||
let existing_data: ApiResponse =
|
||||
serde_json::from_str(&contents).unwrap_or(ApiResponse {
|
||||
error: "Success".to_string(),
|
||||
response: ExecHistories {
|
||||
exechistories: vec![],
|
||||
},
|
||||
});
|
||||
existing_data
|
||||
.response
|
||||
.exechistories
|
||||
.into_iter()
|
||||
.map(|entry| {
|
||||
(
|
||||
(
|
||||
entry.sha256.clone(),
|
||||
entry.filename.clone(),
|
||||
entry.hostname.clone(),
|
||||
),
|
||||
entry,
|
||||
)
|
||||
})
|
||||
.collect()
|
||||
} else {
|
||||
HashMap::new()
|
||||
};
|
||||
for (index, executions) in parsed_responses.iter().enumerate() {
|
||||
if executions.checkpoint.is_empty() || executions.datetime.is_empty() {
|
||||
continue;
|
||||
}
|
||||
if index == parsed_responses.len() - 1 {
|
||||
checkpoint_number = executions.checkpoint.clone();
|
||||
break;
|
||||
}
|
||||
let history_date = match NaiveDate::parse_from_str(
|
||||
&executions.datetime.replace(" +0000 UTC", ""),
|
||||
"%Y-%m-%dT%H:%M:%SZ",
|
||||
) {
|
||||
Ok(date) => date,
|
||||
Err(_) => continue,
|
||||
};
|
||||
if history_date >= cutoff.into() {
|
||||
let key = (
|
||||
executions.sha256.clone(),
|
||||
executions.filename.clone(),
|
||||
executions.hostname.clone(),
|
||||
);
|
||||
seen.entry(key).or_insert(executions.clone());
|
||||
}
|
||||
}
|
||||
let final_response = ApiResponse {
|
||||
error: "Success".to_string(),
|
||||
response: ExecHistories {
|
||||
exechistories: seen.values().cloned().collect(),
|
||||
},
|
||||
};
|
||||
let data_write = serde_json::to_string_pretty(&final_response).unwrap();
|
||||
match fs::write(&writeable_filepath, data_write) {
|
||||
Ok(_) => {}
|
||||
Err(e) => {
|
||||
println!("Failed to write to: {:?}: {}", &writeable_filepath, e);
|
||||
}
|
||||
}
|
||||
if let Some(last_item) = &final_response.response.exechistories.last()
|
||||
tx.send(parsed_responses.clone()).unwrap();
|
||||
checkpoint_number = parsed_responses.last().unwrap().checkpoint.clone();
|
||||
if let Some(last_item) = parsed_responses.last()
|
||||
&& let Ok(last_date) = NaiveDate::parse_from_str(
|
||||
&last_item.datetime.replace(" +0000 UTC", ""),
|
||||
"%Y-%m-%dT%H:%M:%SZ",
|
||||
)
|
||||
{
|
||||
let date_diff = Local::now().naive_local().date() - last_date;
|
||||
let percentage_diff =
|
||||
(days - date_diff.num_days()) as f64 / days as f64 * 100.0;
|
||||
progress_bar.set_position(percentage_diff.round() as u64);
|
||||
progress_bar.set_message("Total Percent Complete");
|
||||
if first_date.is_none() {
|
||||
first_date = Some(last_date);
|
||||
}
|
||||
if let Some(base_date) = first_date {
|
||||
let date_diff: chrono::TimeDelta = last_date - base_date;
|
||||
let total_span: i64 =
|
||||
(Local::now().naive_local().date() - base_date).num_days();
|
||||
let percentage: u64 = ((date_diff.num_days() as f64 / total_span as f64)
|
||||
* 100.0)
|
||||
.clamp(0.0, 100.0)
|
||||
.round() as u64;
|
||||
pb_clone.lock().unwrap().set_position(percentage);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
progress_bar.finish_with_message("All Checkpoints Complete");
|
||||
let return_data = match fs::read_to_string(&writeable_filepath) {
|
||||
progress_bar
|
||||
.lock()
|
||||
.unwrap()
|
||||
.finish_with_message("All Checkpoints Complete");
|
||||
let return_data: String = match fs::read_to_string(file_path.clone()) {
|
||||
Ok(return_data) => return_data,
|
||||
Err(e) => {
|
||||
println!("Failed to read data from: {:?}: {}", &writeable_filepath, e);
|
||||
println!("Failed to read data from: {:?}: {}", &file_path, e);
|
||||
std::process::abort();
|
||||
}
|
||||
};
|
||||
shutdown_tracer_provider();
|
||||
tracer_provider
|
||||
.shutdown()
|
||||
.expect("Failed to Shutdown Tracer Provdier");
|
||||
drop(tx);
|
||||
return_data.to_string()
|
||||
});
|
||||
let gil_value = handle.join().unwrap();
|
||||
Python::attach(|py| PyString::new(py, &gil_value).into())
|
||||
let gil_value: String = handle.join().unwrap();
|
||||
Python::attach(|py: Python<'_>| PyString::new(py, &gil_value).into())
|
||||
}
|
||||
|
||||
fn build_client(headers: HeaderMap) -> Result<reqwest::Client, reqwest::Error> {
|
||||
@@ -264,7 +270,7 @@ async fn history_logging(
|
||||
}}"#,
|
||||
exec_types, checkpoint_number, policy_names
|
||||
);
|
||||
let res = client
|
||||
let res: Result<reqwest::Response, reqwest::Error> = client
|
||||
.post(format!("{}/v1/logging/exechistories", base_url))
|
||||
.body(payload)
|
||||
.send()
|
||||
@@ -300,29 +306,10 @@ pub fn get_base_directory() -> PathBuf {
|
||||
.unwrap_or_else(|| home.join("AppData").join("Roaming"));
|
||||
appdata.join("Loxide")
|
||||
}
|
||||
_ => home.join(".local").join("share").join("Loxide"),
|
||||
"linux" => home.join(".local").join("share").join("Loxide"),
|
||||
_ => {
|
||||
println!("{} is currently not compatible with LoxideLibs", os);
|
||||
std::process::abort();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn init_tracer() -> Result<Option<sdktrace::Tracer>, TraceError> {
|
||||
let cfg = TelemetryConfig::load();
|
||||
if !cfg.TELEMETRY {
|
||||
global::set_tracer_provider(NoopTracerProvider::new());
|
||||
return Ok(None);
|
||||
}
|
||||
let endpoint = cfg.TELEM_URL.unwrap_or_default();
|
||||
let tracer =
|
||||
opentelemetry_otlp::new_pipeline()
|
||||
.tracing()
|
||||
.with_exporter(
|
||||
opentelemetry_otlp::new_exporter()
|
||||
.tonic()
|
||||
.with_endpoint(endpoint),
|
||||
)
|
||||
.with_trace_config(sdktrace::config().with_resource(Resource::new(vec![
|
||||
KeyValue::new("service.name", "LoxideLibs"),
|
||||
])))
|
||||
.install_simple()
|
||||
.unwrap();
|
||||
Ok(Some(tracer))
|
||||
}
|
||||
+18
-6
@@ -1,14 +1,26 @@
|
||||
# Core TUI dependencies
|
||||
textual==6.5.0
|
||||
|
||||
# API and data handling
|
||||
Requests==2.32.5
|
||||
pandas==2.3.3
|
||||
numpy==2.3.4
|
||||
|
||||
# Database
|
||||
pymongo==4.15.3
|
||||
|
||||
# Security and encryption
|
||||
cryptography==46.0.3
|
||||
keyring==25.6.0
|
||||
numpy==2.3.4
|
||||
pandas==2.3.3
|
||||
pymongo==4.15.3
|
||||
|
||||
# Environment management
|
||||
python-dotenv==1.2.1
|
||||
Requests==2.32.5
|
||||
textual==6.5.0
|
||||
|
||||
# Utilities
|
||||
tqdm==4.67.1
|
||||
urllib3==2.5.0
|
||||
pyperclip==1.11.0
|
||||
|
||||
# Custom/Private packages
|
||||
--extra-index-url https://git.racooncity.org/api/packages/brotoskyj/pypi/simple/
|
||||
airlock_libs==5.0.1
|
||||
airlock_libs==6.1.0
|
||||
+15
-15
@@ -38,9 +38,9 @@ logger = logging.getLogger(__name__)
|
||||
def devicehistory(api: AirlockAPIWrapper, outputjson: bool):
|
||||
agents = selectAgents(api)
|
||||
history_days = Selector.select_value(
|
||||
prompt="Enter how many days of history to pull (1–150): ",
|
||||
prompt="Enter how many days of history to pull (1–365): ",
|
||||
value_type=int,
|
||||
valid_range=(1, 150),
|
||||
valid_range=(1, 365),
|
||||
)
|
||||
|
||||
if not agents or not history_days:
|
||||
@@ -60,7 +60,7 @@ def devicehistory(api: AirlockAPIWrapper, outputjson: bool):
|
||||
except Exception as e:
|
||||
print(
|
||||
colorText(
|
||||
f"❌ Error retrieving history for {agent.hostname}: {e}", "red"
|
||||
f"⌠Error retrieving history for {agent.hostname}: {e}", "red"
|
||||
)
|
||||
)
|
||||
continue
|
||||
@@ -139,7 +139,7 @@ def findAgents(api, return_dataframe):
|
||||
|
||||
print(
|
||||
colorText(
|
||||
f"\n✓ Matched devices exported to: {working_dir}\\{filename}",
|
||||
f"\n✓ Matched devices exported to: {working_dir}\\{filename}",
|
||||
"green",
|
||||
)
|
||||
)
|
||||
@@ -148,7 +148,7 @@ def findAgents(api, return_dataframe):
|
||||
|
||||
|
||||
def collect_device_names() -> List[str]:
|
||||
print(colorText("🖥�� Device Search", "cyan"))
|
||||
print(colorText("🖥�� Device Search", "cyan"))
|
||||
print(
|
||||
colorText(
|
||||
"Enter the device hostnames you'd like to search for, one per line.", "cyan"
|
||||
@@ -185,7 +185,7 @@ def collect_device_names() -> List[str]:
|
||||
else:
|
||||
print(
|
||||
colorText(
|
||||
f"⚠️ Invalid input: '{stripped_line}' — only letters, numbers, underscores, spaces, and hyphens are allowed.",
|
||||
f"âš ï¸ Invalid input: '{stripped_line}' — only letters, numbers, underscores, spaces, and hyphens are allowed.",
|
||||
"yellow",
|
||||
)
|
||||
)
|
||||
@@ -235,8 +235,8 @@ def show_unmatched(
|
||||
]
|
||||
|
||||
if unmatched:
|
||||
logger.debug(f"⚠️ No matches for: {', '.join(unmatched)}")
|
||||
print(colorText(f"⚠️ No matches for: {', '.join(unmatched)}", "yellow"))
|
||||
logger.debug(f"âš ï¸ No matches for: {', '.join(unmatched)}")
|
||||
print(colorText(f"âš ï¸ No matches for: {', '.join(unmatched)}", "yellow"))
|
||||
|
||||
|
||||
def enrich_agents(agents: List["Agent"], policies: List["Policy"]):
|
||||
@@ -248,7 +248,7 @@ def selectAgents(api: "AirlockAPIWrapper") -> List["Agent"]:
|
||||
device_names = collect_device_names()
|
||||
if not device_names:
|
||||
logger.debug("No device names entered")
|
||||
print(colorText("⚠️ No device names entered.", "red"))
|
||||
print(colorText("âš ï¸ No device names entered.", "red"))
|
||||
return []
|
||||
|
||||
use_exact = choose_match_type()
|
||||
@@ -261,11 +261,11 @@ def selectAgents(api: "AirlockAPIWrapper") -> List["Agent"]:
|
||||
show_unmatched(device_names, matched_agents, use_exact)
|
||||
|
||||
if not matched_agents:
|
||||
logger.debug("❌ No matching devices found.")
|
||||
print(colorText("❌ No matching devices found.", "red"))
|
||||
logger.debug("⌠No matching devices found.")
|
||||
print(colorText("⌠No matching devices found.", "red"))
|
||||
return []
|
||||
|
||||
print(colorText(f"✓ Found {len(matched_agents)} matching device(s).", "green"))
|
||||
print(colorText(f"✓ Found {len(matched_agents)} matching device(s).", "green"))
|
||||
logger.info("Matched agent hostnames:")
|
||||
rows = (len(matched_agents) + 2) // 3 # 3 columns
|
||||
for row in range(rows):
|
||||
@@ -283,8 +283,8 @@ def selectAgents(api: "AirlockAPIWrapper") -> List["Agent"]:
|
||||
)
|
||||
|
||||
if not matched_agents:
|
||||
logger.debug("❌ No matching devices remain after refinement.")
|
||||
print(colorText("❌ No matching devices remain after refinement.", "red"))
|
||||
logger.debug("⌠No matching devices remain after refinement.")
|
||||
print(colorText("⌠No matching devices remain after refinement.", "red"))
|
||||
return []
|
||||
|
||||
enrich_agents(matched_agents, policies)
|
||||
@@ -302,7 +302,7 @@ def moveAgentToRelatedPolicy(
|
||||
Args:
|
||||
api: AirlockAPIWrapper instance.
|
||||
agent: Agent object.
|
||||
policy_relationship_map: Dict mapping enforcement â–€ –€™ audit.
|
||||
policy_relationship_map: Dict mapping enforcement â–€ –€™ audit.
|
||||
mode: 'audit' to move to audit, 'enforcement' to move to enforcement.
|
||||
"""
|
||||
policy_relationship_map = get_system_json("POLICY_MAP_ENF_AUD", "{}")
|
||||
|
||||
Reference in New Issue
Block a user