Spaces:
Runtime error
Runtime error
File size: 52,387 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 | /**
* db/core.js β Database infrastructure: schema, singleton, utils, migration.
*
* All domain modules import `getDbInstance` and helpers from here.
*/
import type { SqliteAdapter } from "./adapters/types";
import {
tryOpenSync,
getSqlJsAdapter,
preInitSqlJs,
openDatabaseAsync,
} from "./adapters/driverFactory";
import path from "path";
import fs from "fs";
import { resolveWritableDataDir, getLegacyDotDataDir } from "../dataPaths";
import { runMigrations } from "./migrationRunner";
import { runDbHealthCheck } from "./healthCheck";
import { resetAllDbModuleState } from "./stateReset";
import { parseStoredPayload } from "../logPayloads";
import { DEFAULT_DATABASE_SETTINGS, type DatabaseSettings } from "@/types/databaseSettings";
import {
applyDatabaseOptimizationSettingsForDb,
applyStoredDatabaseOptimizationSettings,
getAutoVacuumModeForDb,
setAutoVacuumForDb,
setCacheSizeForDb,
setPageSizeForDb,
} from "./optimizationSettings";
import {
buildArtifactRelativePath,
writeCallArtifact,
type CallLogArtifact,
} from "../usage/callLogArtifacts";
import { migrateLegacyEncryptedString } from "./encryption";
import { invalidateDbCache } from "./readCache";
import { rowToCamel } from "./caseMapping";
// Re-exported so existing call sites that pull these helpers off the core module keep working.
export { toSnakeCase, toCamelCase, objToSnake, rowToCamel, cleanNulls } from "./caseMapping";
import {
ensureProviderConnectionsColumns,
ensureUsageHistoryColumns,
ensureCallLogsColumns,
hasTable,
quoteIdentifier,
getTableColumns,
} from "./schemaColumns";
type SqliteDatabase = SqliteAdapter;
type JsonRecord = Record<string, unknown>;
type CheckpointMode = "PASSIVE" | "FULL" | "RESTART" | "TRUNCATE";
type DatabaseOptimizationSettings = DatabaseSettings["optimization"];
type PreservedTableSnapshot = {
table: string;
rowCount: number;
maxRows: number;
columns: string[];
rows: JsonRecord[];
};
type SkippedTableSnapshot = {
table: string;
rowCount: number;
maxRows: number;
reason: string;
};
type PreservedCriticalDbState = {
captureSucceeded: boolean;
captureError: string | null;
preservedTables: PreservedTableSnapshot[];
skippedTables: SkippedTableSnapshot[];
};
type CriticalTableSpec = {
table: string;
maxRows?: number;
readRows?: (db: SqliteDatabase) => JsonRecord[];
};
// ββββββββββββββββ Environment Detection ββββββββββββββββ
export const isCloud = typeof globalThis.caches === "object" && globalThis.caches !== null;
export const isBuildPhase = process.env.NEXT_PHASE === "phase-production-build";
// ββββββββββββββββ Paths ββββββββββββββββ
export const DATA_DIR = resolveWritableDataDir({ isCloud });
const LEGACY_DATA_DIR = isCloud ? null : getLegacyDotDataDir();
export const SQLITE_FILE = isCloud ? null : path.join(DATA_DIR, "storage.sqlite");
const JSON_DB_FILE = isCloud ? null : path.join(DATA_DIR, "db.json");
export const DB_BACKUPS_DIR = isCloud ? null : path.join(DATA_DIR, "db_backups");
const DEFAULT_CRITICAL_TABLE_ROW_LIMIT = 10_000;
const SKIP_PRESERVE_NAMESPACES = new Set([
"syncedAvailableModels",
"providerLimitsCache",
"lkgp",
"gemini_thought_signatures",
]);
const CRITICAL_DB_TABLES: CriticalTableSpec[] = [
{
table: "key_value",
maxRows: 10_000,
readRows(db) {
return (
(db.prepare("SELECT namespace, key, value FROM key_value").all() as JsonRecord[]) ?? []
).filter(
(row) => typeof row.namespace !== "string" || !SKIP_PRESERVE_NAMESPACES.has(row.namespace)
);
},
},
{ table: "provider_connections", maxRows: 5_000 },
{ table: "provider_nodes", maxRows: 5_000 },
{ table: "combos", maxRows: 5_000 },
{ table: "api_keys", maxRows: 5_000 },
{ table: "proxy_registry", maxRows: 5_000 },
{ table: "proxy_assignments", maxRows: 10_000 },
{ table: "model_combo_mappings", maxRows: 5_000 },
{ table: "sync_tokens", maxRows: 5_000 },
{ table: "registered_keys", maxRows: 10_000 },
{ table: "provider_key_limits", maxRows: 10_000 },
{ table: "account_key_limits", maxRows: 10_000 },
{ table: "upstream_proxy_config", maxRows: 5_000 },
{ table: "webhooks", maxRows: 5_000 },
];
export function isNativeSqliteLoadError(error: unknown): boolean {
const message = error instanceof Error ? error.message : String(error);
const code = getErrorCode(error);
return (
message.includes("Module did not self-register") ||
message.includes("NODE_MODULE_VERSION") ||
message.includes("ERR_DLOPEN_FAILED") ||
// bun and similar runtimes that skip the postinstall script never download
// the prebuilt *.node binary, so `bindings()` fails with this message
// before any DLOPEN even happens (#2358).
message.includes("Could not locate the bindings file") ||
message.includes("Cannot find module 'better-sqlite3'") ||
code === "ERR_DLOPEN_FAILED" ||
code === "MODULE_NOT_FOUND"
);
}
export function isSqliteDriverUnavailableError(error: unknown): boolean {
const message = error instanceof Error ? error.message : String(error);
return (
message.includes("Nenhum driver SQLite disponΓvel") ||
message.includes("Chame ensureDbInitialized() no startup") ||
message.includes("sql.js WASM ainda nΓ£o foi prΓ©-inicializado")
);
}
function getErrorCode(error: unknown): string | undefined {
if (!error || typeof error !== "object" || !("code" in error)) return undefined;
const code = (error as { code?: unknown }).code;
return typeof code === "string" ? code : undefined;
}
function openSqliteDatabase(sqliteFile: string, options?: Record<string, unknown>): SqliteDatabase {
const adapter = tryOpenSync(sqliteFile, options);
if (adapter) return adapter;
const sqlJs = getSqlJsAdapter(sqliteFile);
if (sqlJs) return sqlJs;
throw new Error(
`[DB] Nenhum driver SQLite disponΓvel para '${sqliteFile}'. ` +
"Chame ensureDbInitialized() no startup. " +
"Drivers testados: better-sqlite3 (falhou), node:sqlite (indisponΓvel). " +
"sql.js WASM ainda nΓ£o foi prΓ©-inicializado."
);
}
// Ensure data directory exists β with fallback for restricted home directories (#133)
if (!isCloud && !fs.existsSync(DATA_DIR)) {
try {
fs.mkdirSync(DATA_DIR, { recursive: true });
} catch (err: unknown) {
const msg = err instanceof Error ? err.message : String(err);
console.warn(
`[DB] Cannot create data directory '${DATA_DIR}': ${msg}\n` +
`[DB] Set the DATA_DIR environment variable to a writable path, e.g.:\n` +
`[DB] DATA_DIR=/path/to/writable/dir omniroute`
);
}
}
// ββββββββββββββββ Schema ββββββββββββββββ
const SCHEMA_SQL = `
CREATE TABLE IF NOT EXISTS provider_connections (
id TEXT PRIMARY KEY,
provider TEXT NOT NULL,
auth_type TEXT,
name TEXT,
email TEXT,
priority INTEGER DEFAULT 0,
is_active INTEGER DEFAULT 1,
access_token TEXT,
refresh_token TEXT,
expires_at TEXT,
token_expires_at TEXT,
scope TEXT,
project_id TEXT,
test_status TEXT,
error_code TEXT,
last_error TEXT,
last_error_at TEXT,
last_error_type TEXT,
last_error_source TEXT,
backoff_level INTEGER DEFAULT 0,
rate_limited_until TEXT,
health_check_interval INTEGER,
last_health_check_at TEXT,
last_tested TEXT,
api_key TEXT,
id_token TEXT,
provider_specific_data TEXT,
expires_in INTEGER,
display_name TEXT,
global_priority INTEGER,
default_model TEXT,
token_type TEXT,
consecutive_use_count INTEGER DEFAULT 0,
rate_limit_protection INTEGER DEFAULT 0,
last_used_at TEXT,
"group" TEXT,
max_concurrent INTEGER,
proxy_enabled INTEGER NOT NULL DEFAULT 1,
per_key_proxy_enabled INTEGER NOT NULL DEFAULT 0,
quota_window_thresholds_json TEXT,
rate_limit_overrides_json TEXT,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_pc_provider ON provider_connections(provider);
CREATE INDEX IF NOT EXISTS idx_pc_active ON provider_connections(is_active);
CREATE INDEX IF NOT EXISTS idx_pc_priority ON provider_connections(provider, priority);
CREATE TABLE IF NOT EXISTS provider_nodes (
id TEXT PRIMARY KEY,
type TEXT NOT NULL,
name TEXT NOT NULL,
prefix TEXT,
api_type TEXT,
base_url TEXT,
chat_path TEXT,
models_path TEXT,
custom_headers_json TEXT,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS key_value (
namespace TEXT NOT NULL,
key TEXT NOT NULL,
value TEXT NOT NULL,
PRIMARY KEY (namespace, key)
);
CREATE TABLE IF NOT EXISTS combos (
id TEXT PRIMARY KEY,
name TEXT NOT NULL UNIQUE,
data TEXT NOT NULL,
sort_order INTEGER NOT NULL DEFAULT 0,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS api_keys (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
key TEXT NOT NULL UNIQUE,
machine_id TEXT,
allowed_models TEXT DEFAULT '[]',
no_log INTEGER NOT NULL DEFAULT 0,
created_at TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_ak_key ON api_keys(key);
CREATE TABLE IF NOT EXISTS db_meta (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS usage_history (
id INTEGER PRIMARY KEY AUTOINCREMENT,
provider TEXT,
model TEXT,
connection_id TEXT,
api_key_id TEXT,
api_key_name TEXT,
tokens_input INTEGER DEFAULT 0,
tokens_output INTEGER DEFAULT 0,
tokens_cache_read INTEGER DEFAULT 0,
tokens_cache_creation INTEGER DEFAULT 0,
tokens_reasoning INTEGER DEFAULT 0,
service_tier TEXT DEFAULT 'standard',
status TEXT,
success INTEGER DEFAULT 1,
latency_ms INTEGER DEFAULT 0,
ttft_ms INTEGER DEFAULT 0,
error_code TEXT,
timestamp TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_uh_timestamp ON usage_history(timestamp);
CREATE INDEX IF NOT EXISTS idx_uh_provider ON usage_history(provider);
CREATE INDEX IF NOT EXISTS idx_uh_model ON usage_history(model);
CREATE TABLE IF NOT EXISTS call_logs (
id TEXT PRIMARY KEY,
timestamp TEXT NOT NULL,
method TEXT,
path TEXT,
status INTEGER,
model TEXT,
requested_model TEXT,
provider TEXT,
account TEXT,
connection_id TEXT,
duration INTEGER DEFAULT 0,
tokens_in INTEGER DEFAULT 0,
tokens_out INTEGER DEFAULT 0,
tokens_cache_read INTEGER DEFAULT NULL,
tokens_cache_creation INTEGER DEFAULT NULL,
tokens_reasoning INTEGER DEFAULT NULL,
tokens_compressed INTEGER DEFAULT NULL,
cache_source TEXT DEFAULT "upstream",
request_type TEXT,
source_format TEXT,
target_format TEXT,
api_key_id TEXT,
api_key_name TEXT,
combo_name TEXT,
combo_step_id TEXT,
combo_execution_key TEXT,
error_summary TEXT,
detail_state TEXT DEFAULT 'none',
artifact_relpath TEXT,
artifact_size_bytes INTEGER DEFAULT NULL,
artifact_sha256 TEXT DEFAULT NULL,
has_request_body INTEGER DEFAULT 0,
has_response_body INTEGER DEFAULT 0,
has_pipeline_details INTEGER DEFAULT 0,
request_summary TEXT
);
CREATE INDEX IF NOT EXISTS idx_cl_timestamp ON call_logs(timestamp);
CREATE INDEX IF NOT EXISTS idx_cl_status ON call_logs(status);
CREATE TABLE IF NOT EXISTS proxy_logs (
id TEXT PRIMARY KEY,
timestamp TEXT NOT NULL,
status TEXT,
proxy_type TEXT,
proxy_host TEXT,
proxy_port INTEGER,
level TEXT,
level_id TEXT,
provider TEXT,
target_url TEXT,
public_ip TEXT,
latency_ms INTEGER DEFAULT 0,
error TEXT,
connection_id TEXT,
combo_id TEXT,
account TEXT,
tls_fingerprint INTEGER DEFAULT 0
);
CREATE INDEX IF NOT EXISTS idx_pl_timestamp ON proxy_logs(timestamp);
CREATE INDEX IF NOT EXISTS idx_pl_status ON proxy_logs(status);
CREATE INDEX IF NOT EXISTS idx_pl_provider ON proxy_logs(provider);
-- Domain State Persistence (Phase 5)
CREATE TABLE IF NOT EXISTS domain_fallback_chains (
model TEXT PRIMARY KEY,
chain TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS domain_budgets (
api_key_id TEXT PRIMARY KEY,
daily_limit_usd REAL NOT NULL,
weekly_limit_usd REAL DEFAULT 0,
monthly_limit_usd REAL DEFAULT 0,
warning_threshold REAL DEFAULT 0.8,
reset_interval TEXT DEFAULT 'daily',
reset_time TEXT DEFAULT '00:00',
budget_reset_at INTEGER,
last_budget_reset_at INTEGER,
warning_emitted_at INTEGER,
warning_period_start INTEGER
);
CREATE TABLE IF NOT EXISTS domain_budget_reset_logs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
api_key_id TEXT NOT NULL,
reset_interval TEXT NOT NULL,
previous_spend REAL NOT NULL DEFAULT 0,
reset_at INTEGER NOT NULL,
next_reset_at INTEGER NOT NULL,
period_start INTEGER NOT NULL,
period_end INTEGER NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_dbrl_key_reset ON domain_budget_reset_logs(api_key_id, reset_at DESC);
CREATE TABLE IF NOT EXISTS domain_cost_history (
id INTEGER PRIMARY KEY AUTOINCREMENT,
api_key_id TEXT NOT NULL,
cost REAL NOT NULL,
timestamp INTEGER NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_dch_key ON domain_cost_history(api_key_id);
CREATE INDEX IF NOT EXISTS idx_dch_ts ON domain_cost_history(timestamp);
CREATE TABLE IF NOT EXISTS domain_lockout_state (
identifier TEXT PRIMARY KEY,
attempts TEXT NOT NULL,
locked_until INTEGER
);
CREATE TABLE IF NOT EXISTS domain_circuit_breakers (
name TEXT PRIMARY KEY,
state TEXT NOT NULL DEFAULT 'CLOSED',
failure_count INTEGER DEFAULT 0,
last_failure_time INTEGER,
options TEXT
);
CREATE TABLE IF NOT EXISTS semantic_cache (
id TEXT PRIMARY KEY,
signature TEXT NOT NULL UNIQUE,
model TEXT NOT NULL,
prompt_hash TEXT NOT NULL,
response TEXT NOT NULL,
tokens_saved INTEGER DEFAULT 0,
hit_count INTEGER DEFAULT 0,
created_at TEXT NOT NULL,
expires_at TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_sc_sig ON semantic_cache(signature);
CREATE INDEX IF NOT EXISTS idx_sc_model ON semantic_cache(model);
CREATE TABLE IF NOT EXISTS quota_snapshots (
id INTEGER PRIMARY KEY AUTOINCREMENT,
provider TEXT NOT NULL,
connection_id TEXT NOT NULL,
window_key TEXT NOT NULL,
remaining_percentage REAL,
is_exhausted INTEGER DEFAULT 0,
next_reset_at TEXT,
window_duration_ms INTEGER,
raw_data TEXT,
created_at TEXT NOT NULL DEFAULT (datetime('now'))
);
CREATE INDEX IF NOT EXISTS idx_quota_snapshots_provider_time ON quota_snapshots(provider, created_at);
CREATE INDEX IF NOT EXISTS idx_quota_snapshots_connection_time ON quota_snapshots(connection_id, created_at);
CREATE INDEX IF NOT EXISTS idx_quota_snapshots_created_at ON quota_snapshots(created_at);
`;
// ββββββββββββββββ Singleton DB Instance ββββββββββββββββ
// Use globalThis to survive Next.js dev HMR module re-evaluation.
// Module-level `let` resets on every webpack recompile, causing connection leaks.
declare global {
var __omnirouteDb: SqliteAdapter | undefined;
}
function getDb(): SqliteDatabase | null {
return globalThis.__omnirouteDb ?? null;
}
function setDb(db: SqliteDatabase | null): void {
if (db) {
globalThis.__omnirouteDb = db;
} else {
delete globalThis.__omnirouteDb;
}
}
function checkpointDb(db: SqliteDatabase, mode: CheckpointMode = "TRUNCATE"): boolean {
if (isCloud || isBuildPhase || !SQLITE_FILE) return false;
db.pragma(`wal_checkpoint(${mode})`);
return true;
}
function summarizePreservedTables(tables: PreservedTableSnapshot[]): string {
if (tables.length === 0) return "none";
return tables.map((table) => `${table.table}(${table.rowCount})`).join(", ");
}
function summarizeSkippedTables(tables: SkippedTableSnapshot[]): string {
if (tables.length === 0) return "none";
return tables
.map((table) => `${table.table}(${table.rowCount}/${table.maxRows}: ${table.reason})`)
.join(", ");
}
function listProbeFailureBackups(sqliteFile: string): string[] {
const directory = path.dirname(sqliteFile);
const baseName = path.basename(sqliteFile);
const prefix = `${baseName}.probe-failed-`;
if (!fs.existsSync(directory)) return [];
return fs
.readdirSync(directory)
.filter((name) => name.startsWith(prefix))
.map((name) => ({
path: path.join(directory, name),
timestamp: Number(name.slice(prefix.length)),
}))
.sort((left, right) => {
const leftTimestamp = Number.isFinite(left.timestamp) ? left.timestamp : 0;
const rightTimestamp = Number.isFinite(right.timestamp) ? right.timestamp : 0;
return rightTimestamp - leftTimestamp || right.path.localeCompare(left.path);
})
.map((backup) => backup.path);
}
function captureCriticalDbState(sqliteFile: string): PreservedCriticalDbState {
const snapshot: PreservedCriticalDbState = {
captureSucceeded: false,
captureError: null,
preservedTables: [],
skippedTables: [],
};
if (!fs.existsSync(sqliteFile)) {
snapshot.captureSucceeded = true;
return snapshot;
}
let probe: SqliteDatabase | null = null;
try {
probe = openSqliteDatabase(sqliteFile, { readonly: true });
for (const tableSpec of CRITICAL_DB_TABLES) {
if (!hasTable(probe, tableSpec.table)) continue;
const maxRows = tableSpec.maxRows ?? DEFAULT_CRITICAL_TABLE_ROW_LIMIT;
const rows = (tableSpec.readRows?.(probe) ??
(probe
.prepare(`SELECT * FROM ${quoteIdentifier(tableSpec.table)}`)
.all() as JsonRecord[])) as JsonRecord[];
const rowCount = rows.length;
if (rowCount === 0) continue;
if (rowCount > maxRows) {
snapshot.skippedTables.push({
table: tableSpec.table,
rowCount,
maxRows,
reason: "row_limit_exceeded",
});
continue;
}
snapshot.preservedTables.push({
table: tableSpec.table,
rowCount,
maxRows,
columns: getTableColumns(probe, tableSpec.table),
rows,
});
}
snapshot.captureSucceeded = true;
return snapshot;
} catch (error: unknown) {
snapshot.captureError = error instanceof Error ? error.message : String(error);
return snapshot;
} finally {
try {
probe?.close();
} catch {
/* ignore */
}
}
}
function restoreCriticalDbState(
db: SqliteDatabase,
snapshot: PreservedCriticalDbState
): PreservedTableSnapshot[] {
const restoredTables: PreservedTableSnapshot[] = [];
const restore = db.transaction(() => {
for (const table of snapshot.preservedTables) {
if (table.rows.length === 0) continue;
if (!hasTable(db, table.table)) {
throw new Error(`Current schema is missing preserved table "${table.table}"`);
}
const currentColumns = new Set(getTableColumns(db, table.table));
const restoreColumns = table.columns.filter((column) => currentColumns.has(column));
if (restoreColumns.length === 0) {
throw new Error(`No compatible columns remain for preserved table "${table.table}"`);
}
const sql = `INSERT OR REPLACE INTO ${quoteIdentifier(table.table)} (${restoreColumns
.map((column) => quoteIdentifier(column))
.join(", ")}) VALUES (${restoreColumns.map(() => "?").join(", ")})`;
const insert = db.prepare(sql);
for (const row of table.rows) {
insert.run(...restoreColumns.map((column) => row[column] ?? null));
}
restoredTables.push(table);
}
});
restore();
return restoredTables;
}
function cleanupRecreatedSqliteFiles(sqliteFile: string) {
for (const filePath of [
sqliteFile,
`${sqliteFile}-wal`,
`${sqliteFile}-shm`,
`${sqliteFile}-journal`,
]) {
try {
if (fs.existsSync(filePath)) fs.unlinkSync(filePath);
} catch {
/* ignore */
}
}
}
function parseLegacyError(value: unknown): unknown {
if (typeof value !== "string" || value.trim().length === 0) return null;
try {
return JSON.parse(value);
} catch {
return value;
}
}
function offloadLegacyCallLogDetails(db: SqliteDatabase) {
if (!hasTable(db, "call_logs_v1_legacy")) return;
type LegacyCallLogRow = {
id: string;
timestamp: string | null;
method: string | null;
path: string | null;
status: number | null;
model: string | null;
requested_model: string | null;
provider: string | null;
account: string | null;
connection_id: string | null;
duration: number | null;
tokens_in: number | null;
tokens_out: number | null;
tokens_cache_read: number | null;
tokens_cache_creation: number | null;
tokens_reasoning: number | null;
tokens_compressed: number | null;
request_type: string | null;
source_format: string | null;
target_format: string | null;
api_key_id: string | null;
api_key_name: string | null;
combo_name: string | null;
combo_step_id: string | null;
combo_execution_key: string | null;
request_body: string | null;
response_body: string | null;
error: string | null;
};
const pendingRows = db
.prepare(
`
SELECT legacy.*
FROM call_logs_v1_legacy AS legacy
JOIN call_logs AS current ON current.id = legacy.id
WHERE current.detail_state = 'legacy-inline'
ORDER BY legacy.timestamp ASC
`
)
.all() as LegacyCallLogRow[];
if (pendingRows.length === 0) {
db.exec("DROP TABLE IF EXISTS call_logs_v1_legacy");
return;
}
const updateStmt = db.prepare(`
UPDATE call_logs
SET artifact_relpath = @artifactRelPath,
artifact_size_bytes = @artifactSizeBytes,
artifact_sha256 = @artifactSha256,
detail_state = 'ready'
WHERE id = @id
`);
const markMissingStmt = db.prepare(`
UPDATE call_logs
SET detail_state = 'missing',
artifact_relpath = NULL,
artifact_size_bytes = NULL,
artifact_sha256 = NULL
WHERE id = ?
`);
let failed = 0;
const tx = db.transaction(() => {
for (const row of pendingRows) {
const artifact: CallLogArtifact = {
schemaVersion: 5,
summary: {
id: row.id,
timestamp: row.timestamp || new Date().toISOString(),
method: row.method || "POST",
path: row.path || "/v1/chat/completions",
status: row.status || 0,
model: row.model || "-",
requestedModel: row.requested_model || null,
provider: row.provider || "-",
account: row.account || "-",
connectionId: row.connection_id || null,
duration: row.duration || 0,
tokens: {
in: row.tokens_in || 0,
out: row.tokens_out || 0,
cacheRead: row.tokens_cache_read ?? null,
cacheWrite: row.tokens_cache_creation ?? null,
reasoning: row.tokens_reasoning ?? null,
compressed: row.tokens_compressed ?? null,
},
requestType: row.request_type || null,
sourceFormat: row.source_format || null,
targetFormat: row.target_format || null,
apiKeyId: row.api_key_id || null,
apiKeyName: row.api_key_name || null,
comboName: row.combo_name || null,
comboStepId: row.combo_step_id || null,
comboExecutionKey: row.combo_execution_key || null,
},
requestBody: parseStoredPayload(row.request_body),
responseBody: parseStoredPayload(row.response_body),
error: parseLegacyError(row.error),
};
const artifactResult = writeCallArtifact(
artifact,
buildArtifactRelativePath(artifact.summary.timestamp, artifact.summary.id)
);
if (!artifactResult) {
failed++;
markMissingStmt.run(row.id);
continue;
}
updateStmt.run({
id: row.id,
artifactRelPath: artifactResult.relPath,
artifactSizeBytes: artifactResult.sizeBytes,
artifactSha256: artifactResult.sha256,
});
}
});
tx();
if (failed > 0) {
console.warn(
`[DB] Kept call_logs_v1_legacy after partial call log offload (${failed} failed row(s)).`
);
return;
}
db.exec("DROP TABLE IF EXISTS call_logs_v1_legacy");
try {
db.pragma("wal_checkpoint(TRUNCATE)");
db.exec("VACUUM");
console.log(`[DB] Offloaded ${pendingRows.length} legacy call log detail row(s) to artifacts.`);
} catch (error: unknown) {
const message = error instanceof Error ? error.message : String(error);
console.warn("[DB] Legacy call log compaction finished without VACUUM:", message);
}
}
function isAutomatedTestProcess(): boolean {
return (
typeof process !== "undefined" &&
(process.env.NODE_ENV === "test" ||
process.env.VITEST !== undefined ||
process.argv.some((arg) => arg.includes("test")))
);
}
function shouldRunStartupDbHealthCheck(): boolean {
if (process.env.OMNIROUTE_FORCE_DB_HEALTHCHECK === "1") return true;
return !isAutomatedTestProcess();
}
function createManagedDbBackup(db: SqliteDatabase, reason: string): boolean {
const isTest = isAutomatedTestProcess();
if (isTest) return false;
try {
const backupDir = DB_BACKUPS_DIR || path.join(DATA_DIR, "db_backups");
if (!fs.existsSync(backupDir)) {
fs.mkdirSync(backupDir, { recursive: true });
}
const timestamp = new Date().toISOString().replace(/[:.]/g, "-");
const backupPath = path.join(backupDir, `db_${timestamp}_${reason}.sqlite`);
const escapedBackupPath = backupPath.replace(/'/g, "''");
db.exec(`VACUUM INTO '${escapedBackupPath}'`);
console.log(`[DB] Backup created (${reason}): ${backupPath}`);
return true;
} catch (error: unknown) {
const message = error instanceof Error ? error.message : String(error);
console.warn(`[DB] Failed to create ${reason} backup:`, message);
return false;
}
}
function createHealthCheckBackup(db: SqliteDatabase): boolean {
return createManagedDbBackup(db, "health-check-repair");
}
function autoMigrateLegacyEncryptedConnections(db: SqliteDatabase): number {
const rows = db.prepare("SELECT * FROM provider_connections").all() as JsonRecord[];
const updateStmt = db.prepare(
"UPDATE provider_connections SET api_key = @apiKey, id_token = @idToken, access_token = @accessToken, refresh_token = @refreshToken, updated_at = @updatedAt WHERE id = @id"
);
const encryptedFields = ["apiKey", "idToken", "accessToken", "refreshToken"] as const;
let migratedCount = 0;
let backupCreated = false;
for (const row of rows) {
const camelRow = rowToCamel(row);
if (!camelRow) continue;
let updatedRow = false;
for (const field of encryptedFields) {
if (typeof camelRow[field] !== "string") continue;
const { updated, value } = migrateLegacyEncryptedString(camelRow[field]);
if (updated) {
camelRow[field] = value;
updatedRow = true;
}
}
if (!updatedRow) continue;
if (!backupCreated) {
createManagedDbBackup(db, "legacy-encryption-migration");
backupCreated = true;
}
updateStmt.run({
id: camelRow.id,
apiKey: camelRow.apiKey ?? null,
idToken: camelRow.idToken ?? null,
accessToken: camelRow.accessToken ?? null,
refreshToken: camelRow.refreshToken ?? null,
updatedAt: new Date().toISOString(),
});
migratedCount++;
}
if (migratedCount > 0) {
invalidateDbCache("connections");
console.log(`[DB] Auto-migrated ${migratedCount} connection(s) to new static-salt encryption.`);
}
return migratedCount;
}
let dbHealthCheckTimer: NodeJS.Timeout | null = null;
function getDbHealthCheckIntervalMs(): number {
const rawValue = process.env.OMNIROUTE_DB_HEALTHCHECK_INTERVAL_MS;
if (typeof rawValue === "string" && rawValue.trim().length > 0) {
const parsed = Number(rawValue);
if (Number.isFinite(parsed) && parsed >= 0) {
return parsed;
}
}
return 6 * 60 * 60 * 1000;
}
function clearDbHealthCheckScheduler() {
if (dbHealthCheckTimer) {
clearInterval(dbHealthCheckTimer);
dbHealthCheckTimer = null;
}
}
function startDbHealthCheckScheduler(db: SqliteDatabase) {
clearDbHealthCheckScheduler();
if (isCloud || isBuildPhase || isAutomatedTestProcess()) return;
const intervalMs = getDbHealthCheckIntervalMs();
if (intervalMs <= 0) return;
dbHealthCheckTimer = setInterval(() => {
try {
if (!db.open) return;
runDbHealthCheck(db, {
autoRepair: true,
skipIntegrityCheck: process.env.OMNIROUTE_SKIP_DB_HEALTHCHECK === "1",
expectedSchemaVersion: "1",
createBackupBeforeRepair: () => createHealthCheckBackup(db),
});
} catch (error: unknown) {
const message = error instanceof Error ? error.message : String(error);
console.warn("[DB] Periodic health-check failed:", message);
}
}, intervalMs);
dbHealthCheckTimer.unref?.();
}
export function runManagedDbHealthCheck(options?: { autoRepair?: boolean }) {
const db = getDbInstance();
return runDbHealthCheck(db, {
autoRepair: options?.autoRepair === true,
expectedSchemaVersion: "1",
createBackupBeforeRepair: () => createHealthCheckBackup(db),
});
}
export function getDbInstance(): SqliteDatabase {
const existing = getDb();
if (existing) return existing;
if (isCloud || isBuildPhase) {
if (isBuildPhase) {
console.log("[DB] Build phase detected β using in-memory SQLite (read-only)");
}
const memoryDb = openSqliteDatabase(":memory:");
memoryDb.pragma("journal_mode = WAL");
memoryDb.exec(SCHEMA_SQL);
ensureUsageHistoryColumns(memoryDb);
ensureCallLogsColumns(memoryDb);
ensureProviderConnectionsColumns(memoryDb);
setDb(memoryDb);
return memoryDb;
}
const sqliteFile = SQLITE_FILE;
if (!sqliteFile) {
throw new Error("SQLITE_FILE is unavailable for local mode");
}
const jsonDbFile = JSON_DB_FILE;
const probeFailureBackups = listProbeFailureBackups(sqliteFile);
if (!fs.existsSync(sqliteFile) && probeFailureBackups.length > 0) {
const latestBackup = probeFailureBackups[0];
try {
fs.renameSync(latestBackup, sqliteFile);
console.log(
`[DB] Auto-restored preserved database from previous probe failure: ${path.basename(latestBackup)}`
);
} catch (error: unknown) {
const msg = error instanceof Error ? error.message : String(error);
throw new Error(
`[DB] Manual recovery required before startup. ` +
`Failed to auto-restore preserved database ${latestBackup}: ${msg}. ` +
`Restore the preserved file or another backup to ${sqliteFile} before restarting.`
);
}
}
let preservedCriticalState: PreservedCriticalDbState = {
captureSucceeded: true,
captureError: null,
preservedTables: [],
skippedTables: [],
};
let failedProbePath: string | null = null;
let failedProbeMessage: string | null = null;
// Track whether the DB file is brand new (fresh DATA_DIR / Docker volume).
// This is needed so the migration runner skips the mass-migration safety abort
// that would otherwise trigger because heuristic seeding marks some migrations
// as applied, making the fresh DB look like a wiped existing DB (#1328).
const isNewDb = !fs.existsSync(sqliteFile);
// Detect and handle old schema format β preserve data when possible (#146)
// Uses a single probe connection that becomes the real connection when possible.
if (fs.existsSync(sqliteFile)) {
try {
const probe = openSqliteDatabase(sqliteFile, { readonly: true });
const hasOldSchema = probe
.prepare("SELECT name FROM sqlite_master WHERE type='table' AND name='schema_migrations'")
.get();
if (hasOldSchema) {
let hasData = false;
try {
const count = probe.prepare("SELECT COUNT(*) as c FROM provider_connections").get() as
| { c: number }
| undefined;
hasData = Boolean(count && count.c > 0);
} catch {
// Table might not exist at all β truly incompatible
}
probe.close();
if (hasData) {
console.log(
`[DB] Old schema_migrations table found but data exists β preserving data (#146)`
);
const fixDb = openSqliteDatabase(sqliteFile);
try {
fixDb.exec("DROP TABLE IF EXISTS schema_migrations");
fixDb.pragma("wal_checkpoint(TRUNCATE)");
} catch (e: unknown) {
const message = e instanceof Error ? e.message : String(e);
console.warn("[DB] Could not clean up old schema table:", message);
} finally {
fixDb.close();
}
} else {
const oldPath = sqliteFile + ".old-schema";
console.log(
`[DB] Old incompatible schema detected (empty) β renaming to ${path.basename(oldPath)}`
);
fs.renameSync(sqliteFile, oldPath);
for (const ext of ["-wal", "-shm"]) {
try {
if (fs.existsSync(sqliteFile + ext)) fs.unlinkSync(sqliteFile + ext);
} catch {
/* ok */
}
}
}
} else {
probe.close();
}
} catch (e: unknown) {
const message = e instanceof Error ? e.message : String(e);
console.warn("[DB] Could not probe existing DB:", message);
// If the error is a Node module/ABI failure, throw it immediately to avoid renaming the database
if (
isNativeSqliteLoadError(e) ||
isSqliteDriverUnavailableError(e) ||
message.includes("could not be found")
) {
throw e;
}
preservedCriticalState = captureCriticalDbState(sqliteFile);
// SAFETY: Never delete the database β rename to backup so data can be recovered.
// The old code would silently destroy all user data on any probe failure.
const failedPath = sqliteFile + `.probe-failed-${Date.now()}`;
try {
fs.renameSync(sqliteFile, failedPath);
console.warn(`[DB] Renamed corrupt DB to ${path.basename(failedPath)}`);
failedProbePath = failedPath;
failedProbeMessage = message;
} catch {
/* ok */
}
}
}
if (failedProbePath) {
const hasUnsafeSkippedTables = preservedCriticalState.skippedTables.length > 0;
const missingSnapshot = !preservedCriticalState.captureSucceeded;
if (hasUnsafeSkippedTables || missingSnapshot) {
const details = missingSnapshot
? `snapshot_failed=${preservedCriticalState.captureError || "unknown"}`
: `skipped_tables=${summarizeSkippedTables(preservedCriticalState.skippedTables)}`;
throw new Error(
`[DB] Manual recovery required after probe failure. ` +
`Preserved database: ${failedProbePath}. ` +
`Automatic recovery was aborted because ${details}. ` +
`Original probe error: ${failedProbeMessage || "unknown"}.`
);
}
}
const db = openSqliteDatabase(sqliteFile);
db.pragma("journal_mode = WAL");
// better-sqlite3 is synchronous, so a contended write parks the Node event loop for up to
// busy_timeout ms (a 0-CPU freeze that stacks under load β /health stops responding). The
// hot-path writers here (usage_history, call_logs) are best-effort and the WinUI host opens
// the same DB, so cap the block at 2s instead of 5s: normal writes complete in <1ms, and a
// contended op can no longer freeze the loop past the host watchdog's 6s liveness probe.
db.pragma("busy_timeout = 2000");
db.pragma("synchronous = NORMAL");
db.pragma(`cache_size = -${DEFAULT_DATABASE_SETTINGS.optimization.cacheSize}`);
db.exec(SCHEMA_SQL);
ensureProviderConnectionsColumns(db);
ensureUsageHistoryColumns(db);
ensureCallLogsColumns(db);
// ββ Versioned Migrations ββ
// Auto-seed 001 as applied (the inline SCHEMA_SQL already created these tables)
// then run any new migrations (002+)
db.exec(`
CREATE TABLE IF NOT EXISTS _omniroute_migrations (
version TEXT PRIMARY KEY,
name TEXT NOT NULL,
applied_at TEXT NOT NULL DEFAULT (datetime('now'))
);
INSERT OR IGNORE INTO _omniroute_migrations (version, name)
VALUES ('001', 'initial_schema');
`);
runMigrations(db, { isNewDb });
applyStoredDatabaseOptimizationSettings(db);
offloadLegacyCallLogDetails(db);
// Auto-migrate from db.json if exists
if (jsonDbFile && fs.existsSync(jsonDbFile)) {
migrateFromJson(db, jsonDbFile);
}
if (failedProbePath && preservedCriticalState.preservedTables.length > 0) {
try {
const restoredTables = restoreCriticalDbState(db, preservedCriticalState);
console.log(
`[DB] Restored preserved critical DB state after probe failure: ${summarizePreservedTables(
restoredTables
)}`
);
} catch (error: unknown) {
const message = error instanceof Error ? error.message : String(error);
try {
if (db.open) db.close();
} catch {
/* ignore */
}
cleanupRecreatedSqliteFiles(sqliteFile);
throw new Error(
`[DB] Automatic recovery aborted after probe failure. ` +
`Preserved database: ${failedProbePath}. ` +
`Restore failure: ${message}.`
);
}
}
// Store schema version
const versionStmt = db.prepare(
"INSERT OR REPLACE INTO db_meta (key, value) VALUES ('schema_version', '1')"
);
versionStmt.run();
if (shouldRunStartupDbHealthCheck()) {
const skipIntegrityCheck = process.env.OMNIROUTE_SKIP_DB_HEALTHCHECK === "1";
if (skipIntegrityCheck) {
console.log("[DB] Health check skipped (OMNIROUTE_SKIP_DB_HEALTHCHECK=1)");
}
runDbHealthCheck(db, {
autoRepair: true,
expectedSchemaVersion: "1",
skipIntegrityCheck,
createBackupBeforeRepair: () => createHealthCheckBackup(db),
});
}
setDb(db);
// Re-encrypt any tokens using the legacy dynamic salt to canonical static salt
try {
autoMigrateLegacyEncryptedConnections(db);
} catch (err: unknown) {
const message = err instanceof Error ? err.message : String(err);
console.error(`[DB] Legacy encryption migration failed: ${message}`);
}
startDbHealthCheckScheduler(db);
// Log the resolved absolute DATA_DIR + SQLITE_FILE once at init so a
// multi-replica / Docker volume-topology mismatch (each replica opening a
// different on-disk DB β "phantom"/missing combos & connections) is
// diagnosable straight from the logs. (#3147)
console.log(
`[DB] SQLite database ready: ${sqliteFile} ` +
`(DATA_DIR=${path.resolve(DATA_DIR)}, SQLITE_FILE=${path.resolve(sqliteFile)})`
);
return db;
}
/**
* Lightweight liveness probe β runs `SELECT 1` against the singleton DB.
* Returns `true` if the database is reachable, `false` on any error.
* Intended for use by the `/api/health/ping` route (Hard Rule #5: no raw SQL in routes).
*/
export function pingDb(): boolean {
try {
const result = getDbInstance().prepare("SELECT 1 AS ok").get() as { ok: number } | undefined;
return result?.ok === 1;
} catch {
return false;
}
}
export function closeDbInstance(options?: { checkpointMode?: CheckpointMode | null }): boolean {
clearDbHealthCheckScheduler();
const db = getDb();
if (!db) return false;
const checkpointMode = options?.checkpointMode ?? "TRUNCATE";
try {
if (checkpointMode) {
try {
if (checkpointDb(db, checkpointMode)) {
console.log(`[DB] SQLite WAL checkpoint completed (${checkpointMode}).`);
}
} catch (error: unknown) {
const message = error instanceof Error ? error.message : String(error);
console.warn(`[DB] WAL checkpoint failed during close (${checkpointMode}):`, message);
}
}
} finally {
try {
if (db.open) db.close();
} finally {
setDb(null);
// Module-level caches (prepared statements, schema-check memos β e.g.
// apiKeys.ts) are bound to the closed connection. Without this, a recreated
// DB (tests, backup restore of an older snapshot) hits "no such column"
// on the stale re-prepare path. backup.ts already does this on restore;
// close/reset must too (found by the 6A.1 orphan-test re-wire, 2026-06-09).
resetAllDbModuleState();
}
}
return true;
}
/**
* Reset the singleton (used by restore).
*/
export function resetDbInstance() {
closeDbInstance();
}
// ββββββββββββββββ Runtime Driver Info ββββββββββββββββ
type DbDriverInfo = { source: string; kind: string };
let driverInfoCached: DbDriverInfo | null = null;
function setDriverInfo(info: DbDriverInfo) {
driverInfoCached = info;
}
/** Returns how better-sqlite3 was resolved (bundled / runtime / etc.). Null if not yet init. */
export function getDriverInfo(): DbDriverInfo | null {
return driverInfoCached;
}
/**
* Async initializer that pre-resolves the SQLite runtime before first DB access.
*
* Call this at process startup (before any call to getDbInstance()) so that
* if the bundled better-sqlite3 binary is unavailable, the runtime installer
* can place it in ~/.omniroute/runtime/ without blocking a synchronous caller.
*
* Idempotent β safe to call multiple times.
*/
export async function ensureDbInitialized(): Promise<void> {
if (getDb()) return;
// Cloud/build: getDbInstance() cria in-memory, sem necessidade de prΓ©-init
if (isCloud || isBuildPhase || !SQLITE_FILE) {
getDbInstance();
return;
}
// Tenta drivers sΓncronos primeiro
const sync = tryOpenSync(SQLITE_FILE);
if (sync) {
// Drivers sΓncronos disponΓveis β fechar o probe, getDbInstance() vai abrir com setup completo
sync.close();
getDbInstance();
return;
}
// No synchronous driver available β pre-initialize sql.js (WASM, async)
console.warn("[DB] Pre-initializing sql.js WASM (synchronous drivers unavailable)...");
await preInitSqlJs(SQLITE_FILE);
// Agora getSqlJsAdapter() retornarΓ‘ o adapter, e getDbInstance() vai usΓ‘-lo
getDbInstance();
}
// ββββββββββββββββ JSON β SQLite Migration ββββββββββββββββ
function migrateFromJson(db: SqliteDatabase, jsonPath: string) {
try {
const raw = fs.readFileSync(jsonPath, "utf-8");
const data = JSON.parse(raw);
const connCount = (data.providerConnections || []).length;
const nodeCount = (data.providerNodes || []).length;
const keyCount = (data.apiKeys || []).length;
if (connCount === 0 && nodeCount === 0 && keyCount === 0) {
console.log("[DB] db.json has no data to migrate, skipping");
fs.renameSync(jsonPath, jsonPath + ".empty");
return;
}
console.log(
`[DB] Migrating db.json β SQLite (${connCount} connections, ${nodeCount} nodes, ${keyCount} keys)...`
);
const migrate = db.transaction(() => {
// 1. Provider Connections
const insertConn = db.prepare(`
INSERT OR REPLACE INTO provider_connections (
id, provider, auth_type, name, email, priority, is_active,
access_token, refresh_token, expires_at, token_expires_at,
scope, project_id, test_status, error_code, last_error,
last_error_at, last_error_type, last_error_source, backoff_level,
rate_limited_until, health_check_interval, last_health_check_at,
last_tested, api_key, id_token, provider_specific_data,
expires_in, display_name, global_priority, default_model,
token_type, consecutive_use_count, rate_limit_protection, last_used_at, created_at, updated_at
) VALUES (
@id, @provider, @authType, @name, @email, @priority, @isActive,
@accessToken, @refreshToken, @expiresAt, @tokenExpiresAt,
@scope, @projectId, @testStatus, @errorCode, @lastError,
@lastErrorAt, @lastErrorType, @lastErrorSource, @backoffLevel,
@rateLimitedUntil, @healthCheckInterval, @lastHealthCheckAt,
@lastTested, @apiKey, @idToken, @providerSpecificData,
@expiresIn, @displayName, @globalPriority, @defaultModel,
@tokenType, @consecutiveUseCount, @rateLimitProtection, @lastUsedAt, @createdAt, @updatedAt
)
`);
for (const conn of data.providerConnections || []) {
insertConn.run({
id: conn.id,
provider: conn.provider,
authType: conn.authType || "oauth",
name: conn.name || null,
email: conn.email || null,
priority: conn.priority || 0,
isActive: conn.isActive === false ? 0 : 1,
accessToken: conn.accessToken || null,
refreshToken: conn.refreshToken || null,
expiresAt: conn.expiresAt || null,
tokenExpiresAt: conn.tokenExpiresAt || null,
scope: conn.scope || null,
projectId: conn.projectId || null,
testStatus: conn.testStatus || null,
errorCode: conn.errorCode || null,
lastError: conn.lastError || null,
lastErrorAt: conn.lastErrorAt || null,
lastErrorType: conn.lastErrorType || null,
lastErrorSource: conn.lastErrorSource || null,
backoffLevel: conn.backoffLevel || 0,
rateLimitedUntil: conn.rateLimitedUntil || null,
healthCheckInterval: conn.healthCheckInterval || null,
lastHealthCheckAt: conn.lastHealthCheckAt || null,
lastTested: conn.lastTested || null,
apiKey: conn.apiKey || null,
idToken: conn.idToken || null,
providerSpecificData: conn.providerSpecificData
? JSON.stringify(conn.providerSpecificData)
: null,
expiresIn: conn.expiresIn || null,
displayName: conn.displayName || null,
globalPriority: conn.globalPriority || null,
defaultModel: conn.defaultModel || null,
tokenType: conn.tokenType || null,
consecutiveUseCount: conn.consecutiveUseCount || 0,
lastUsedAt: conn.lastUsedAt || null,
rateLimitProtection:
conn.rateLimitProtection === true || conn.rateLimitProtection === 1 ? 1 : 0,
createdAt: conn.createdAt || new Date().toISOString(),
updatedAt: conn.updatedAt || new Date().toISOString(),
});
}
// 2. Provider Nodes
const insertNode = db.prepare(`
INSERT OR REPLACE INTO provider_nodes (id, type, name, prefix, api_type, base_url, created_at, updated_at)
VALUES (@id, @type, @name, @prefix, @apiType, @baseUrl, @createdAt, @updatedAt)
`);
for (const node of data.providerNodes || []) {
insertNode.run({
id: node.id,
type: node.type,
name: node.name,
prefix: node.prefix || null,
apiType: node.apiType || null,
baseUrl: node.baseUrl || null,
createdAt: node.createdAt || new Date().toISOString(),
updatedAt: node.updatedAt || new Date().toISOString(),
});
}
// 3. Key-Value pairs
const insertKv = db.prepare(
"INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES (?, ?, ?)"
);
for (const [alias, model] of Object.entries(data.modelAliases || {})) {
insertKv.run("modelAliases", alias, JSON.stringify(model));
}
for (const [toolName, mappings] of Object.entries(data.mitmAlias || {})) {
insertKv.run("mitmAlias", toolName, JSON.stringify(mappings));
}
for (const [key, value] of Object.entries(data.settings || {})) {
insertKv.run("settings", key, JSON.stringify(value));
}
for (const [provider, models] of Object.entries(data.pricing || {})) {
insertKv.run("pricing", provider, JSON.stringify(models));
}
for (const [providerId, models] of Object.entries(data.customModels || {})) {
insertKv.run("customModels", providerId, JSON.stringify(models));
}
if (data.proxyConfig) {
insertKv.run("proxyConfig", "global", JSON.stringify(data.proxyConfig.global || null));
insertKv.run("proxyConfig", "providers", JSON.stringify(data.proxyConfig.providers || {}));
insertKv.run("proxyConfig", "combos", JSON.stringify(data.proxyConfig.combos || {}));
insertKv.run("proxyConfig", "keys", JSON.stringify(data.proxyConfig.keys || {}));
}
// 4. Combos
const insertCombo = db.prepare(`
INSERT OR REPLACE INTO combos (id, name, data, sort_order, created_at, updated_at)
VALUES (@id, @name, @data, @sortOrder, @createdAt, @updatedAt)
`);
for (const [index, combo] of (data.combos || []).entries()) {
const normalizedCombo = {
...combo,
sortOrder: typeof combo.sortOrder === "number" ? combo.sortOrder : index + 1,
};
insertCombo.run({
id: normalizedCombo.id,
name: normalizedCombo.name,
data: JSON.stringify(normalizedCombo),
sortOrder: normalizedCombo.sortOrder,
createdAt: normalizedCombo.createdAt || new Date().toISOString(),
updatedAt: normalizedCombo.updatedAt || new Date().toISOString(),
});
}
// 5. API Keys
const insertKey = db.prepare(`
INSERT OR REPLACE INTO api_keys (id, name, key, machine_id, allowed_models, no_log, created_at)
VALUES (@id, @name, @key, @machineId, @allowedModels, @noLog, @createdAt)
`);
for (const apiKey of data.apiKeys || []) {
insertKey.run({
id: apiKey.id,
name: apiKey.name,
key: apiKey.key,
machineId: apiKey.machineId || null,
allowedModels: JSON.stringify(apiKey.allowedModels || []),
noLog: apiKey.noLog ? 1 : 0,
createdAt: apiKey.createdAt || new Date().toISOString(),
});
}
});
migrate();
const migratedPath = jsonPath + ".migrated";
fs.renameSync(jsonPath, migratedPath);
console.log(`[DB] β Migration complete. Original saved as ${migratedPath}`);
const legacyBackupDir = path.join(DATA_DIR, "db_backups");
if (fs.existsSync(legacyBackupDir)) {
const jsonBackups = fs.readdirSync(legacyBackupDir).filter((f) => f.endsWith(".json"));
if (jsonBackups.length > 0) {
console.log(
`[DB] Note: ${jsonBackups.length} legacy .json backups remain in ${legacyBackupDir}`
);
}
}
} catch (err) {
console.error("[DB] Migration from db.json failed:", err.message);
}
}
// ββββββββββββββββ Auto-Vacuum Management ββββββββββββββββ
export function applyDatabaseOptimizationSettings(settings: DatabaseOptimizationSettings): void {
applyDatabaseOptimizationSettingsForDb(getDbInstance(), settings, { applyPersistent: true });
}
export function setAutoVacuum(mode: "NONE" | "FULL" | "INCREMENTAL"): void {
setAutoVacuumForDb(getDbInstance(), mode);
}
export function getAutoVacuumMode(): "NONE" | "FULL" | "INCREMENTAL" {
return getAutoVacuumModeForDb(getDbInstance());
}
export function runManualVacuum(): { success: boolean; duration: number; error?: string } {
const db = getDbInstance();
const startTime = Date.now();
try {
console.log("[DB] Starting manual VACUUM...");
db.exec("VACUUM");
const duration = Date.now() - startTime;
console.log(`[DB] Manual VACUUM completed in ${duration}ms`);
return { success: true, duration };
} catch (err: unknown) {
const duration = Date.now() - startTime;
console.error("[DB] Manual VACUUM failed:", err);
const message = err instanceof Error ? err.message : String(err);
return { success: false, duration, error: message };
}
}
export function setPageSize(pageSize: number): void {
setPageSizeForDb(getDbInstance(), pageSize);
}
export function setCacheSize(cacheSizeKb: number): void {
setCacheSizeForDb(getDbInstance(), cacheSizeKb);
}
|