Files
nntrivi2001 7357070fb9 chore: remove unused desktop app, cloud deployment infra, and monitoring stack
Deletes desktop/ (Electron wrapper), deployments/ (Helm/Kustomize/
Terraform/CI for cloud deploy), and monitoring/ (Prometheus + Grafana
stack) along with DESKTOP.md, DEPLOYMENT.md, docker-compose.full.yml,
their npm scripts, and every dangling reference across README,
ARCHITECTURE, INSTALL, SETUP, docs/, and the repeated per-file
MODULE_GUIDE "Observability" boilerplate comment. The GET /api/metrics
endpoint itself is untouched — it's the dashboard's own route, not
part of the removed monitoring stack.
2026-08-11 12:16:54 +07:00

98 lines
5.5 KiB
JavaScript

/**
* @file tool-guards.ts
* @description Guard functions to check if mutating and destructive tools are enabled based on the application configuration. These functions throw errors with informative messages if the required permissions are not granted, guiding developers to enable the necessary environment variables to use these tools. The assertMutationsEnabled function checks for general mutation permissions, while the assertDestructiveEnabled function checks for both mutation and destructive permissions, as well as validating a confirmation token to prevent accidental use of destructive tools.
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
*/
/* =============================================================================
* MODULE_GUIDE — extended in-file reference (comments only; safe to read, never executed)
* =============================================================================
* **Purpose:** Dashboard module consumed by the React client, MCP tools, or desktop shell depending on deployment mode.
*
* ## Design constraints
* - Local-first: no telemetry leaves the machine unless the user configures webhooks.
* - Fail-safe hooks path on the server must never block Claude Code; UI mirrors that
* philosophy by degrading gracefully (empty states, stale badges, reconnect loops).
* - Destructive flows stay behind explicit confirmation modals and server-side gates.
* - Internationalization: user-visible strings belong in i18n JSON, not literals here.
*
* ## Remote data & SSH
* Remote Data Sources let operators aggregate multiple machines. SSH entries describe
* how to reach a peer dashboard; the global data scope (`dataScope.ts`) narrows every
* scoped GET via `?sources=`. Health checks and import history surface in Settings.
*
* ## Internal dependencies
* - `../config/app-config.js`
*
* ## Public surface
* - `assertMutationsEnabled` — exported API; see TSDoc on the symbol for behavior.
* - `assertDestructiveEnabled` — exported API; see TSDoc on the symbol for behavior.
*
* ## Testing pointers
* - Prefer colocated `__tests__` with Vitest + Testing Library for UI.
* - Server contract changes require `npm run test:server` and OpenAPI sync.
* - MCP edits: `npm run mcp:typecheck` and `npm run mcp:build`.
*
* ## Related docs
* - `ARCHITECTURE.md` — hooks → API → SQLite → WebSocket → UI pipeline.
* - `docs/API.md` — REST reference.
* - `.claude/skills/file-headers/` — mandatory `@author` header policy.
* ============================================================================= */
/* -----------------------------------------------------------------------------
* EXPORT CATALOG — quick index of symbols defined below (documentation only).
* -----------------------------------------------------------------------------
* **assertMutationsEnabled**
* Part of this module's public contract. Downstream imports should treat
* the signature and return type as stable unless release notes say otherwise.
* When behavior changes, update the `@file` overview and relevant tests.
*
* **assertDestructiveEnabled**
* Part of this module's public contract. Downstream imports should treat
* the signature and return type as stable unless release notes say otherwise.
* When behavior changes, update the `@file` overview and relevant tests.
*
* ----------------------------------------------------------------------------- */
/**
* Two policy tiers gate every write-capable tool, checked only here:
* 1. **Mutations** (`config.allowMutations`, `MCP_DASHBOARD_ALLOW_MUTATIONS`)
* — required by any create/update/reset/cleanup tool. Off by default, so
* the server is read-only unless explicitly opted in.
* 2. **Destructive** (`config.allowDestructive`, `MCP_DASHBOARD_ALLOW_DESTRUCTIVE`)
* — a strictly higher tier on top of mutations, required only by
* `dashboard_clear_all_data`.
* Every write-tool handler calls one of these two functions first, before
* any API call, so a disabled tier fails fast with no side effects.
*/
/**
* Throws if mutating tools are disabled. Called first by every tool that
* creates/updates/deletes/resets/cleans up dashboard state; read-only tools
* (list/get/health/stats/analytics/export) never call this.
* @throws {Error} naming `MCP_DASHBOARD_ALLOW_MUTATIONS=true` if
* `config.allowMutations` is `false`.
*/
export function assertMutationsEnabled(config) {
if (!config.allowMutations) {
throw new Error("Mutating tools are disabled. Set MCP_DASHBOARD_ALLOW_MUTATIONS=true to enable them.");
}
}
/**
* Guards the single most dangerous tool in the server —
* `dashboard_clear_all_data`, which deletes every session/agent/event/
* token-usage row. A three-part gate checked in order: mutations, then the
* destructive flag, then the confirmation token, so the common
* misconfiguration (mutations off) always surfaces the more general error
* first.
* @param confirmationToken Must exactly equal `"CLEAR_ALL_DATA"` — a
* deliberate, unguessable-by-accident confirmation, not a secret.
* @throws {Error} if mutations are disabled, `config.allowDestructive` is
* `false`, or the token doesn't match exactly.
*/
export function assertDestructiveEnabled(config, confirmationToken) {
assertMutationsEnabled(config);
if (!config.allowDestructive) {
throw new Error("Destructive tools are disabled. Set MCP_DASHBOARD_ALLOW_DESTRUCTIVE=true to enable them.");
}
if (confirmationToken !== "CLEAR_ALL_DATA") {
throw new Error('Invalid confirmation_token. Expected exact value: "CLEAR_ALL_DATA".');
}
}