mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 12:22:14 +03:00
* test(settings): add unit tests for debugMode and hiddenSidebarItems Tests cover: - PATCH debugMode=true/false - PATCH hiddenSidebarItems with array values - Combined updates with both fields * test(e2e): add Playwright tests for settings toggles Tests cover: - Debug mode toggle on/off - Sidebar visibility toggle - Settings persistence after page reload * fix(tests): address code review issues - Unit tests: fix async/await for getSettings, use direct db functions - E2E tests: remove conditional logic, use Playwright auto-waiting assertions * feat(logging): unify request log retention and artifacts * docs: add dashboard settings toggles to CONTRIBUTING Add section documenting: - Debug Mode toggle (Settings → Advanced) - Sidebar Visibility toggle (Settings → General) * fix(cache): only inject prompt_cache_key for supported providers Only inject prompt_cache_key for providers that support prompt caching (Claude, Anthropic, ZAI, Qwen, DeepSeek). This fixes issue #848 where NVIDIA API rejected the parameter. * fix(model-sync): log only channel-level model changes * feat(providers): add 4 free models to opencode-zen * feat(providers): add explicit contextLength for opencode-zen free models * feat(providers): add contextLength for all opencode-zen models * feat: Improve the Chinese translation * fix: preserve client cache_control for all Claude-protocol providers Previously, the cache control preservation logic only recognized a hardcoded list of providers (claude, anthropic, zai, qwen, deepseek). This caused OmniRoute to inject its own cache_control markers for Claude-protocol providers not in that list (bailian-coding-plan, glm, minimax, minimax-cn, etc.), overwriting the client's cache markers. The fix checks both: 1. Known caching providers list (existing behavior) 2. Whether targetFormat === 'claude' (all Claude-protocol providers) This ensures all Claude-compatible providers properly preserve client cache_control headers when appropriate (Claude Code client, deterministic routing, etc.). Also removes unused CacheStatsCard from settings/components (duplicate of the one in cache/ page). Fixes cache token calculation for GLM, Minimax, and other Claude-compatible providers. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix: pure passthrough for Claude→Claude when cache_control preserved The Claude passthrough path round-trips through OpenAI format (claude→openai→claude) for structural normalization. This strips cache_control markers from every content block since OpenAI format has no equivalent, causing ~42k cache creation tokens per request with zero cache reads. When preserveCacheControl is true (Claude Code client, "always" setting, or deterministic combo), skip the round-trip entirely and forward the body as-is. Claude Code sends well-formed Messages API payloads — the normalization was only needed for non-Code clients. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix: restore CacheStatsCard — was not a duplicate The first commit incorrectly deleted CacheStatsCard from settings/components/ as a "duplicate". It's the only copy — both settings/page.tsx and cache/page.tsx import from this location. Restored the i18n-ized version from main. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(429): parse long quota reset times from error body - Parse XhYmZs format from antigravity error messages (e.g., 27h41m36s) - Dynamic retry-after threshold (60s default) instead of hardcoded 10s - Add parseRetryFromErrorText() in accountFallback.ts for body parsing - Fix 403 'verify your account' to trigger permanent deactivation - Add keyword matching for 'quota will reset', 'exhausted capacity' - Add unit tests for retry parsing and keyword matching Fixes #858 (Antigravity 429 handling) Fixes #832 (Qwen quota 429 - same underlying bug) * chore: bump version to v3.4.0-dev * fix(migrations): rename 013 to 014 to avoid collision with v3.3.11 * chore(docs): update CHANGELOG for v3.4.0 integrations * fix: Claude token refresh, Antigravity quota, and 429 rate-limit handling - Fix Claude OAuth token refresh to use form-urlencoded format (standard OAuth2) - Add anthropic-beta header required by Claude OAuth API - Switch Antigravity quota to use retrieveUserQuota API (same as Gemini CLI) - Parse quota reset time for all providers (not just Antigravity) - Add quota reset keywords to error classifier - Cap maximum retry time at 24 hours to prevent infinite wait Closes #836, #857, #858, #832 * fix(dashboard): resolve /dashboard/limits hanging UI with 70+ accounts via chunk parallelization (#784) --------- Co-authored-by: oyi77 <oyi77@users.noreply.github.com> Co-authored-by: R.D. <rogerproself@gmail.com> Co-authored-by: kang-heewon <heewon.dev@gmail.com> Co-authored-by: gmw <rorschach1167@qq.com> Co-authored-by: tombii <github@tombii.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: diegosouzapw <diegosouzapw@users.noreply.github.com>
167 lines
5.1 KiB
TypeScript
167 lines
5.1 KiB
TypeScript
/**
|
|
* Structured console logger utility for omniroute.
|
|
*
|
|
* Provides consistent, machine-parseable log output across the codebase.
|
|
* Supports two output formats controlled by APP_LOG_FORMAT env var:
|
|
* - "text" (default): [LEVEL] [TAG] message {metadata}
|
|
* - "json": Single-line JSON objects for log aggregators
|
|
*
|
|
* Usage:
|
|
* import { logger, createLogger, generateRequestId } from "../utils/logger.ts";
|
|
*
|
|
* // Tag-based (simple — for services/utilities):
|
|
* const log = logger("CHAT");
|
|
* log.info("Request received", { model: "claude-4" });
|
|
*
|
|
* // Request-scoped (with correlation ID — for request pipelines):
|
|
* const reqLog = createLogger(generateRequestId());
|
|
* reqLog.info("AUTH", "Token refreshed", { provider: "claude" });
|
|
*
|
|
* Environment variables:
|
|
* APP_LOG_LEVEL — minimum level: debug | info | warn | error (default: info)
|
|
* APP_LOG_FORMAT — output format: text | json (default: text)
|
|
*/
|
|
import { getAppLogFormat, getAppLogLevel } from "../../src/lib/logEnv";
|
|
|
|
const LEVELS = { debug: 0, info: 1, warn: 2, error: 3 };
|
|
|
|
const currentLevel = LEVELS[getAppLogLevel("info").toLowerCase()] ?? LEVELS.info;
|
|
|
|
const jsonFormat = getAppLogFormat("text") === "json";
|
|
|
|
let requestCounter = 0;
|
|
|
|
/**
|
|
* Generate a unique request ID for log correlation.
|
|
* Format: req_<timestamp>_<counter>
|
|
* @returns {string}
|
|
*/
|
|
export function generateRequestId() {
|
|
return `req_${Date.now()}_${++requestCounter}`;
|
|
}
|
|
|
|
/**
|
|
* Mask a sensitive key for safe logging.
|
|
* Shows first 6 and last 4 characters: "sk-abc123...xyz9"
|
|
* @param {string} key
|
|
* @returns {string}
|
|
*/
|
|
export function maskKey(key) {
|
|
if (!key || key.length < 12) return "(redacted)";
|
|
return `${key.slice(0, 6)}...${key.slice(-4)}`;
|
|
}
|
|
|
|
/**
|
|
* Get the correct console method for a log level.
|
|
* @param {string} level
|
|
* @returns {Function}
|
|
*/
|
|
function getConsoleFn(level) {
|
|
switch (level) {
|
|
case "debug":
|
|
return console.debug;
|
|
case "warn":
|
|
return console.warn;
|
|
case "error":
|
|
return console.error;
|
|
default:
|
|
return console.log;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Format metadata object as compact JSON string for log output.
|
|
* Omits keys with null/undefined values to keep logs clean.
|
|
* @param {object} [meta] - Optional metadata
|
|
* @returns {string} Formatted metadata string or empty string
|
|
*/
|
|
function formatMeta(meta) {
|
|
if (!meta || typeof meta !== "object") return "";
|
|
const cleaned = {};
|
|
for (const [k, v] of Object.entries(meta)) {
|
|
if (v !== undefined && v !== null) cleaned[k] = v;
|
|
}
|
|
return Object.keys(cleaned).length > 0 ? ` ${JSON.stringify(cleaned)}` : "";
|
|
}
|
|
|
|
/**
|
|
* Create a tagged logger instance (simple API for services and utilities).
|
|
* @param {string} tag - Log category tag (e.g. "CHAT", "AUTH", "STREAM")
|
|
* @returns {{ debug: Function, info: Function, warn: Function, error: Function }}
|
|
*/
|
|
export function logger(tag) {
|
|
const emit = (level, message, meta) => {
|
|
if (LEVELS[level] < currentLevel) return;
|
|
const consoleFn = getConsoleFn(level);
|
|
|
|
if (jsonFormat) {
|
|
const entry: Record<string, unknown> = {
|
|
ts: new Date().toISOString(),
|
|
level,
|
|
tag,
|
|
msg: message,
|
|
};
|
|
if (meta && typeof meta === "object" && Object.keys(meta).length > 0) {
|
|
entry.data = meta;
|
|
}
|
|
consoleFn(JSON.stringify(entry));
|
|
} else {
|
|
consoleFn(`[${level.toUpperCase()}] [${tag}] ${message}${formatMeta(meta)}`);
|
|
}
|
|
};
|
|
|
|
return {
|
|
debug: (message, meta) => emit("debug", message, meta),
|
|
info: (message, meta) => emit("info", message, meta),
|
|
warn: (message, meta) => emit("warn", message, meta),
|
|
error: (message, meta) => emit("error", message, meta),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Create a request-scoped logger with correlation ID.
|
|
* All methods accept (tag, message, data?) for structured logging.
|
|
*
|
|
* @param {string} [requestId] - Unique request ID for correlation
|
|
* @returns {{ debug, info, warn, error }}
|
|
*/
|
|
export function createLogger(requestId = null) {
|
|
const emit = (level, tag, message, data) => {
|
|
if (LEVELS[level] < currentLevel) return;
|
|
const consoleFn = getConsoleFn(level);
|
|
|
|
if (jsonFormat) {
|
|
const entry: Record<string, unknown> = {
|
|
ts: new Date().toISOString(),
|
|
level,
|
|
tag,
|
|
msg: message,
|
|
};
|
|
if (requestId) entry.reqId = requestId;
|
|
if (data && typeof data === "object" && Object.keys(data).length > 0) {
|
|
entry.data = data;
|
|
}
|
|
consoleFn(JSON.stringify(entry));
|
|
} else {
|
|
const ts = new Date().toISOString().slice(11, 23); // HH:MM:SS.mmm
|
|
const prefix = requestId ? `[${requestId}]` : "";
|
|
const dataStr = formatMeta(data);
|
|
consoleFn(`${ts} ${prefix}[${tag}] ${message}${dataStr}`);
|
|
}
|
|
};
|
|
|
|
return {
|
|
debug: (tag, msg, data) => emit("debug", tag, msg, data),
|
|
info: (tag, msg, data) => emit("info", tag, msg, data),
|
|
warn: (tag, msg, data) => emit("warn", tag, msg, data),
|
|
error: (tag, msg, data) => emit("error", tag, msg, data),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Module-level default logger (no requestId — for startup/config messages).
|
|
*/
|
|
export const defaultLogger = createLogger();
|
|
|
|
export default logger;
|