- core/framework/flag.sh: flag::define, flag::parse, accessors - core/framework/hook.sh: hook::on, hook::fire, hook::off, hook::has - core/framework/help.sh: help::section, command::help::auto - core/framework/command.sh: command::define, command::route, lazy loading - core restructure: framework/ + app/ separation - load_command: directory-based command detection - command::exists: accepts new-style commands - command::run: routing for new-style, legacy fallback - commands/logs/: migrated to new framework - logs.sh: router + command::define - show.sh: flag::define + flag::parse, no manual case blocks - clean.sh: flag::define + flag::parse - remove.sh: flag::define + flag::parse - rotate.sh: flag::define + flag::parse - logs clean: fix dry_run bool to int conversion - ctx::json_helper: fixed path after core restructure - PYTHONPATH: exported in app/core.sh
94 lines
No EOL
4.1 KiB
Bash
94 lines
No EOL
4.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# ============================================
|
|
# Static Context — resolved once at source time
|
|
# ============================================
|
|
|
|
_CTX_WG="/etc/wireguard"
|
|
_CTX_WGCTL="/etc/wireguard/wgctl"
|
|
_CTX_CLIENTS="${_CTX_WG}/clients"
|
|
|
|
# ── Directory layout ──────────────────────────────────
|
|
# .wgctl/
|
|
# config/ ← wgctl.json, display.json
|
|
# data/ ← all persistent data (rules, identities, etc.)
|
|
# daemon/ ← runtime files (logs, caches)
|
|
|
|
_CTX_WGCTL_ARTIFACT="${_CTX_WG}/.wgctl"
|
|
_CTX_CONFIG="${_CTX_WGCTL_ARTIFACT}/config"
|
|
_CTX_DATA="${_CTX_WGCTL_ARTIFACT}/data"
|
|
_CTX_DAEMON="${_CTX_WGCTL_ARTIFACT}/daemon"
|
|
|
|
# ── Data subdirs ──────────────────────────────────────
|
|
_CTX_RULES="${_CTX_DATA}/rules"
|
|
_CTX_RULES_BASE="${_CTX_RULES}/base"
|
|
_CTX_GROUPS="${_CTX_DATA}/groups"
|
|
_CTX_BLOCKS="${_CTX_DATA}/blocks"
|
|
_CTX_META="${_CTX_DATA}/meta"
|
|
_CTX_IDENTITY="${_CTX_DATA}/identities"
|
|
_CTX_PEER_HISTORY="${_CTX_DATA}/peer-history"
|
|
|
|
# ── Data files ────────────────────────────────────────
|
|
_CTX_NET="${_CTX_DATA}/services.json"
|
|
_CTX_HOSTS="${_CTX_DATA}/hosts.json"
|
|
_CTX_SUBNETS="${_CTX_DATA}/subnets.json"
|
|
_CTX_POLICIES="${_CTX_DATA}/policies.json"
|
|
|
|
# ── Config files ──────────────────────────────────────
|
|
_CTX_CONFIG_FILE="${_CTX_CONFIG}/wgctl.json"
|
|
|
|
# ============================================
|
|
# Accessors
|
|
# ============================================
|
|
|
|
function ctx::wg() { echo "$_CTX_WG"; }
|
|
function ctx::clients() { echo "$_CTX_CLIENTS"; }
|
|
|
|
# Top-level dirs
|
|
function ctx::wgctl() { echo "$_CTX_WGCTL_ARTIFACT"; } # needs to change to ctx::wgctl_artifact or ctx::artifact
|
|
function ctx::config() { echo "$_CTX_CONFIG"; }
|
|
function ctx::data() { echo "$_CTX_DATA"; }
|
|
function ctx::daemon() { echo "$_CTX_DAEMON"; }
|
|
|
|
# Data subdirs
|
|
function ctx::rules() { echo "$_CTX_RULES"; }
|
|
function ctx::rules::base() { echo "$_CTX_RULES_BASE"; }
|
|
function ctx::groups() { echo "$_CTX_GROUPS"; }
|
|
function ctx::blocks() { echo "$_CTX_BLOCKS"; }
|
|
function ctx::meta() { echo "$_CTX_META"; }
|
|
function ctx::identities() { echo "$_CTX_IDENTITY"; }
|
|
function ctx::peer_history() { echo "$_CTX_PEER_HISTORY"; }
|
|
|
|
# Data files
|
|
function ctx::net() { echo "$_CTX_NET"; }
|
|
function ctx::hosts() { echo "$_CTX_HOSTS"; }
|
|
function ctx::subnets() { echo "$_CTX_SUBNETS"; }
|
|
function ctx::policies() { echo "$_CTX_POLICIES"; }
|
|
|
|
# Config files
|
|
function ctx::config_file() { echo "$_CTX_CONFIG_FILE"; }
|
|
function ctx::display() { echo "${_CTX_CONFIG}/display.json"; }
|
|
|
|
# Daemon files
|
|
function ctx::events_log() { echo "${_CTX_DAEMON}/events.log"; }
|
|
function ctx::fw_events_log() { echo "${_CTX_DAEMON}/fw_events.log"; }
|
|
function ctx::endpoint_cache() { echo "${_CTX_DAEMON}/endpoint_cache.json"; }
|
|
function ctx::accept_events_log() { echo "${_CTX_DAEMON}/accept_events.log"; }
|
|
|
|
# Tool paths
|
|
function ctx::json_helper() { echo "$(ctx::app)/json_helper.py"; }
|
|
function ctx::monitor_script() { echo "${_CTX_WGCTL}/daemon/wgctl-monitor.py"; }
|
|
function ctx::lib() { echo "${_CTX_WGCTL}/core/lib"; }
|
|
|
|
function ctx::block_history() { echo "${_CTX_DATA}/block-history"; }
|
|
|
|
# ============================================
|
|
# Path Helpers
|
|
# ============================================
|
|
|
|
function ctx::client::path() { local IFS="/"; echo "$_CTX_CLIENTS/$*"; }
|
|
function ctx::meta::path() { local IFS="/"; echo "$_CTX_META/$*"; }
|
|
function ctx::identity::path() { local IFS="/"; echo "$_CTX_IDENTITY/$*"; }
|
|
function ctx::block::path() { local IFS="/"; echo "$_CTX_BLOCKS/$*"; }
|
|
function ctx::group::path() { local IFS="/"; echo "$_CTX_GROUPS/$*"; }
|
|
function ctx::rule::path() { local IFS="/"; echo "$_CTX_RULES/$*"; } |