Files
OmniRoute/open-sse/executors/tinycms.ts
opensource-elearning e2e330a058 perf(stream): compile hot-path regexes once, bound token caches, fix quadratic buffering (#12179)
Validado sobre o tip de `release/v3.8.51` após reconciliar quatro arquivos que driftaram. Em parte o tip já tinha absorvido a intenção deste branch por abstrações melhores, então mantive a forma do tip e trouxe os ganhos que ainda eram reais:

- **`sseCollect.ts`** — o tip extraiu `stripObfuscationZeroWidth()` para `utils/zeroWidth.ts`, o que supera o `ZERO_WIDTH_RE` local (removido). A içada de `TEXTUAL_TOOL_CALL_RE` foi mantida: essa regex ainda estava inline num caminho quente.
- **`resultMemo.ts`** — o `memoStore()` do tip devolve o clone armazenado para que o idiom comum `memoStore(k, r); return memoLookup(k)!` evite um segundo deep-clone de vários MB. Esse contrato foi preservado (o branch o revertia para `void`), e o round-trip `JSON.parse(JSON.stringify())` virou `structuredClone()` nas duas pontas — que era o ponto de performance real do branch.
- **`browserPool.ts`** — o tip agora tem caminho headed e o engine Obscura (#12286). Ambos preservados, mais a varredura de TTL do `pendingContexts` deste branch, adaptada ao nome `poolKey` do tip.
- **`executeAttempt.ts`** — mantido o comentário explicativo do tip.

Também corrigi **quatro erros de typecheck que o branch introduzia**: `hasUnsupportedSignal` estava tipado `boolean` mas avaliava para `string | boolean`, e o fast-path de `extractUsage()` indexava `c.response`/`c.message` como `unknown`.

`typecheck:core` limpo e **482/482** nos testes de antigravity + compressão na própria branch. Obrigado, @opensource-elearning.
2026-09-03 08:29:14 -03:00

135 lines
4.6 KiB
TypeScript

import { randomUUID } from "node:crypto";
import { BaseExecutor, type ExecuteInput, type ExecutorExecuteResult } from "./base.ts";
import { makeExecutorErrorResult as makeErrorResult } from "../utils/error.ts";
import { initTinyCmsWasm, generateSecurePayload } from "./tinycmsSigner.ts";
const CHAT_URL = "https://gov.freegpt.win/api/openai/oneapi/v1/chat/completions";
const CHALLENGE_URL = "https://gov.freegpt.win/api/challenge";
let publicIp: string | null = null;
let lastIpFetch = 0;
async function getPublicIp(): Promise<string> {
const now = Date.now();
if (publicIp && now - lastIpFetch < 300000) {
return publicIp;
}
try {
const res = await fetch("https://api64.ipify.org?format=json", {
signal: AbortSignal.timeout(5000),
});
const json = (await res.json()) as { ip: string };
publicIp = json.ip;
lastIpFetch = now;
return publicIp;
} catch {
return publicIp || "127.0.0.1";
}
}
async function fetchChallenge(uuid: string): Promise<any> {
const res = await fetch(CHALLENGE_URL, {
method: "GET",
headers: {
uuid: uuid,
"x-origin": "https://gov.freegpt.win",
Accept: "application/json",
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36",
},
signal: AbortSignal.timeout(10000),
});
if (!res.ok) {
throw new Error(`Failed to fetch challenge: ${res.status}`);
}
return await res.json();
}
export class TinyCmsExecutor extends BaseExecutor {
constructor() {
super("tinycms-web", { id: "tinycms-web", baseUrl: CHAT_URL });
}
async execute(input: ExecuteInput): Promise<ExecutorExecuteResult> {
const { body, credentials, signal } = input;
const bodyObj = (body || {}) as Record<string, any>;
// TinyCMS uses 'uuid' header for identification
const uuid = String(credentials?.apiKey ?? "").trim();
if (!uuid || !uuid.startsWith("R")) {
return makeErrorResult(
401,
"TinyCMS: Invalid or missing device UUID (must start with 'R')",
body,
CHAT_URL
);
}
try {
await initTinyCmsWasm();
const ip = await getPublicIp();
const challengeObj = await fetchChallenge(uuid);
const timestamp = Date.now().toString();
// Security context: this nonce is signed into `x-secure-signature` and
// reused as the session id, so it must be unpredictable. `node:crypto`
// randomUUID() is always available on the supported runtime — never fall
// back to a non-CSPRNG source (CodeQL js/insecure-randomness).
const nonceJs = randomUUID();
const securePayload = generateSecurePayload(
uuid,
timestamp,
nonceJs,
challengeObj.challenge,
ip,
challengeObj.difficulty
);
const signedHeaders: Record<string, string> = {
uuid: uuid,
"x-origin": "https://gov.freegpt.win",
referer: "https://gov.freegpt.win/",
"x-secure-challenge-id": challengeObj.challengeId,
"x-secure-challenge-expires-at": String(challengeObj.expiresAt),
"x-secure-challenge-version": challengeObj.version,
"x-secure-signature": securePayload.signature,
"x-secure-fingerprint": securePayload.fingerprint,
"x-secure-client-ip": securePayload.client_ip,
"x-secure-pow-seed-nonce": String(securePayload.pow.seed_nonce),
"x-secure-pow-nonce": String(securePayload.pow.nonce),
"x-secure-pow-hash": securePayload.pow.hash,
"x-secure-pow-difficulty": String(securePayload.pow.difficulty),
"x-secure-timestamp": timestamp,
"x-secure-nonce": nonceJs,
"x-secure-version": securePayload.v,
"x-session-id": nonceJs,
// Use configurable userid from providerSpecificData if present, otherwise generate one
// from the UUID (the server uses it for request attribution, not auth).
userid: String(credentials?.providerSpecificData?.userid ?? "") || uuid.slice(0, 20),
Accept: bodyObj.stream ? "text/event-stream" : "application/json",
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36",
};
const fetchOptions: RequestInit = {
method: "POST",
headers: signedHeaders,
body: JSON.stringify(bodyObj),
signal,
};
const response = await fetch(CHAT_URL, fetchOptions);
return {
response,
url: CHAT_URL,
headers: Object.fromEntries(response.headers.entries()),
transformedBody: bodyObj,
};
} catch (err: any) {
return makeErrorResult(500, `TinyCMS Error: ${err.message}`, body, CHAT_URL);
}
}
}