mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-01 12:52:11 +03:00
- Add HTTP error pages (400, 401, 403, 408, 429, 500, 502, 503) - Add maintenance, offline, and system status pages - Harden db/core.ts, db/apiKeys.ts, db/cliToolState.ts, db/backup.ts - Strengthen compliance/index.ts audit logging - Improve container.ts DI registrations - Fix dataPaths.ts and tokenHealthCheck.ts
160 lines
4.8 KiB
TypeScript
160 lines
4.8 KiB
TypeScript
/**
|
|
* CLI Tool State Persistence
|
|
*
|
|
* Stores last-configured timestamps and initial config snapshots
|
|
* for CLI tools in the key_value table.
|
|
*
|
|
* Namespaces:
|
|
* - cliToolLastConfig: ISO timestamp of last configuration
|
|
* - cliToolInitialConfig: JSON snapshot of pre-OmniRoute configuration
|
|
*
|
|
* @module lib/db/cliToolState
|
|
*/
|
|
|
|
import { getDbInstance, isBuildPhase, isCloud } from "./core";
|
|
|
|
type JsonRecord = Record<string, unknown>;
|
|
|
|
interface StatementLike<TRow = unknown> {
|
|
all: (...params: unknown[]) => TRow[];
|
|
get: (...params: unknown[]) => TRow | undefined;
|
|
run: (...params: unknown[]) => { changes?: number };
|
|
}
|
|
|
|
interface DbLike {
|
|
prepare: <TRow = unknown>(sql: string) => StatementLike<TRow>;
|
|
}
|
|
|
|
interface KeyValueRow {
|
|
key: string;
|
|
value: string;
|
|
}
|
|
|
|
function parseJsonValue(raw: string): unknown {
|
|
try {
|
|
return JSON.parse(raw) as unknown;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function toRecord(value: unknown): JsonRecord | null {
|
|
return value && typeof value === "object" && !Array.isArray(value) ? (value as JsonRecord) : null;
|
|
}
|
|
|
|
// ──────────────── Last Configured Timestamp ────────────────
|
|
|
|
/**
|
|
* Save last-configured timestamp for a CLI tool.
|
|
*/
|
|
export function saveCliToolLastConfigured(
|
|
toolId: string,
|
|
timestamp: string = new Date().toISOString()
|
|
): void {
|
|
if (isBuildPhase || isCloud) return;
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
db.prepare("INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES (?, ?, ?)").run(
|
|
"cliToolLastConfig",
|
|
toolId,
|
|
JSON.stringify(timestamp)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get last-configured timestamp for a CLI tool.
|
|
* @returns ISO timestamp string or null if never configured.
|
|
*/
|
|
export function getCliToolLastConfigured(toolId: string): string | null {
|
|
if (isBuildPhase || isCloud) return null;
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
const row = db
|
|
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
|
|
.get("cliToolLastConfig", toolId);
|
|
if (!row) return null;
|
|
const parsed = parseJsonValue((row as KeyValueRow).value);
|
|
return typeof parsed === "string" ? parsed : null;
|
|
}
|
|
|
|
/**
|
|
* Get all CLI tool last-configured timestamps.
|
|
* @returns Record<toolId, ISO timestamp>
|
|
*/
|
|
export function getAllCliToolLastConfigured(): Record<string, string> {
|
|
if (isBuildPhase || isCloud) return {};
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
const rows = db
|
|
.prepare("SELECT key, value FROM key_value WHERE namespace = ?")
|
|
.all("cliToolLastConfig") as KeyValueRow[];
|
|
const result: Record<string, string> = {};
|
|
for (const row of rows) {
|
|
const parsed = parseJsonValue(row.value);
|
|
if (typeof parsed === "string") {
|
|
result[row.key] = parsed;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Delete last-configured timestamp for a CLI tool.
|
|
*/
|
|
export function deleteCliToolLastConfigured(toolId: string): void {
|
|
if (isBuildPhase || isCloud) return;
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
db.prepare("DELETE FROM key_value WHERE namespace = ? AND key = ?").run(
|
|
"cliToolLastConfig",
|
|
toolId
|
|
);
|
|
}
|
|
|
|
// ──────────────── Initial Config Snapshot ────────────────
|
|
|
|
/**
|
|
* Save the initial (pre-OmniRoute) config snapshot for a CLI tool.
|
|
* Only saves if no snapshot exists yet (first-time only).
|
|
* @returns true if saved, false if snapshot already exists.
|
|
*/
|
|
export function saveCliToolInitialConfig(toolId: string, config: JsonRecord): boolean {
|
|
if (isBuildPhase || isCloud) return false;
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
// Only save if not already stored
|
|
const existing = db
|
|
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
|
|
.get("cliToolInitialConfig", toolId);
|
|
if (existing) return false;
|
|
|
|
db.prepare("INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES (?, ?, ?)").run(
|
|
"cliToolInitialConfig",
|
|
toolId,
|
|
JSON.stringify(config)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the initial config snapshot for a CLI tool.
|
|
* @returns Config object or null if no snapshot exists.
|
|
*/
|
|
export function getCliToolInitialConfig(toolId: string): JsonRecord | null {
|
|
if (isBuildPhase || isCloud) return null;
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
const row = db
|
|
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
|
|
.get("cliToolInitialConfig", toolId);
|
|
if (!row) return null;
|
|
const parsed = parseJsonValue((row as KeyValueRow).value);
|
|
return toRecord(parsed);
|
|
}
|
|
|
|
/**
|
|
* Delete the initial config snapshot for a CLI tool.
|
|
*/
|
|
export function deleteCliToolInitialConfig(toolId: string): void {
|
|
if (isBuildPhase || isCloud) return;
|
|
const db = getDbInstance() as unknown as DbLike;
|
|
db.prepare("DELETE FROM key_value WHERE namespace = ? AND key = ?").run(
|
|
"cliToolInitialConfig",
|
|
toolId
|
|
);
|
|
}
|