Spaces:
Runtime error
Runtime error
File size: 25,514 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 | // Web-cookie provider key validators (part A): deepseek-web, qwen-web, grok-web, chatgpt-web,
// perplexity-web, blackbox-web. Extracted from validation.ts (god-file decomposition) β top-level
// functions with no dispatcher-state captures; behavior is byte-identical to the original inline defs.
import { addModelsSuffix } from "./urlHelpers";
import { applyCustomUserAgent } from "./headers";
import { toValidationErrorResult, validationRead, validationWrite } from "./transport";
import {
buildGrokCookieHeader,
buildQwenCookieHeader,
extractCookieValue,
extractQwenToken,
normalizeSessionCookieHeader,
} from "@/lib/providers/webCookieAuth";
export async function validateDeepSeekWebProvider({ apiKey }: any) {
if (!apiKey) {
return {
valid: false,
error:
"Missing userToken β paste the value from DevTools β Application β Local Storage β chat.deepseek.com β userToken",
};
}
let token = apiKey;
try {
const parsed = JSON.parse(token);
if (typeof parsed?.value === "string") token = parsed.value;
} catch {
// not JSON, use as-is
}
try {
const resp = await fetch("https://chat.deepseek.com/api/v0/users/current", {
headers: {
Authorization: `Bearer ${token}`,
Accept: "*/*",
Origin: "https://chat.deepseek.com",
Referer: "https://chat.deepseek.com/",
"User-Agent":
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36",
"X-App-Version": "20241129.1",
"X-Client-Platform": "web",
},
});
if (resp.status === 401 || resp.status === 403) {
return {
valid: false,
error: "userToken is invalid or expired β get a fresh one from localStorage",
};
}
if (!resp.ok) {
return { valid: false, error: `DeepSeek returned HTTP ${resp.status}` };
}
const json = await resp.json();
const bizData = json?.data?.biz_data || json?.biz_data;
if (!bizData?.token) {
return {
valid: false,
error: `DeepSeek did not return an access token: ${json?.msg || "unknown error"}`,
};
}
return { valid: true, error: null };
} catch (error: any) {
return toValidationErrorResult(error);
}
}
// qwen-web has no `modelsUrl` in its registry entry, so the generic OpenAI-compatible
// validator derived a probe URL of `https://chat.qwen.ai/api/v2/models` (via
// addModelsSuffix) β a non-existent path that answers with a 307 redirect, which the
// outbound guard blocked and the route then mislabeled as an SSRF block (#3288/#3758).
// This specialty validator probes the real session-validity endpoint instead
// (`GET /api/v2/user`, the same one Chat2API uses), mirroring the executor's anti-bot
// headers + cookie-jar replay. It uses plain fetch (like the other web-cookie
// validators) so it never hits the addModelsSuffix/redirect path.
export async function validateQwenWebProvider({ apiKey }: any) {
const rawCred = String(apiKey ?? "").trim();
if (!rawCred) {
return {
valid: false,
error:
"Missing Qwen session β paste the full chat.qwen.ai Cookie header (must include token, cna and ssxmod_itna)",
};
}
const token = extractQwenToken(rawCred);
const cookieHeader = buildQwenCookieHeader(rawCred);
if (!token && !cookieHeader) {
return {
valid: false,
error: "Could not find a Qwen token/cookie in the pasted value",
};
}
try {
const headers: Record<string, string> = {
Accept: "*/*",
"User-Agent":
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
Origin: "https://chat.qwen.ai",
Referer: "https://chat.qwen.ai/",
source: "web",
"bx-v": "2.5.36",
};
if (token) headers["Authorization"] = `Bearer ${token}`;
if (cookieHeader) headers["Cookie"] = cookieHeader;
const resp = await fetch("https://chat.qwen.ai/api/v2/user", { headers });
const contentType = resp.headers.get("content-type") || "";
if (resp.status === 401 || resp.status === 403) {
return {
valid: false,
error:
"Qwen session is invalid or expired β re-login at https://chat.qwen.ai and paste a fresh full Cookie header",
};
}
// Alibaba's WAF / retired-v1 gateway answers with an HTML challenge page (or 504)
// instead of JSON. A bearer token alone is no longer enough for the v2 endpoint.
if (contentType.includes("text/html") || resp.status === 504) {
return {
valid: false,
error:
"Qwen blocked the request with its anti-bot WAF. Re-login at https://chat.qwen.ai and paste a fresh full Cookie header (must include cna, ssxmod_itna and token) β a bearer token alone is not accepted.",
};
}
if (!resp.ok) {
return { valid: false, error: `Qwen returned HTTP ${resp.status}` };
}
// Parse JSON response and verify we have a real user object
// Qwen returns HTTP 200 even for invalid tokens, so we must check the body
try {
const data = await resp.json();
const user = data?.user || data?.data?.user;
if (!user) {
return {
valid: false,
error:
"Qwen session token is invalid or expired β re-login at https://chat.qwen.ai and paste a fresh full Cookie header",
};
}
} catch (parseError) {
return {
valid: false,
error: "Qwen returned invalid JSON response",
};
}
return { valid: true, error: null };
} catch (error) {
return toValidationErrorResult(error);
}
}
/**
* Heuristic for a Grok 403 that is an anti-bot / IP-reputation block rather than
* a genuine upstream API error (issue #3474).
*
* Returns true when the body reads like an anti-bot rejection β Grok's literal
* "Request rejected by anti-bot rules." text, or a bare/non-structured forbidden
* body that carries no parseable upstream `error.message`. Returns false for a
* structured upstream API error (e.g. `{"error":{"message":"Model is not found"}}`),
* which must keep surfacing its body to the user/maintainer.
*
* Callers should run `isCloudflareChallenge()` first; this covers the non-HTML
* anti-bot cases that Cloudflare-challenge detection does not.
*/
export function isGrokAntiBotBlock(body: string | null | undefined): boolean {
const text = (body || "").trim();
if (!text) return true; // empty 403 body β pre-auth block, treat as anti-bot
if (/anti-bot|forbidden|access denied|blocked|rate.?limit/i.test(text)) return true;
// A structured upstream API error has a parseable JSON `error.message`; if one
// is present this is a real upstream error, not an anti-bot block.
try {
const parsed = JSON.parse(text);
if (parsed && typeof parsed?.error?.message === "string") return false;
} catch {
// Non-JSON 403 body with no recognizable structure β treat as anti-bot block.
return true;
}
return false;
}
export async function validateGrokWebProvider({ apiKey, providerSpecificData = {} }: any) {
try {
const token = extractCookieValue(apiKey, "sso");
if (!token) {
return {
valid: false,
error: "Missing sso cookie β paste the value (or the full grok.com cookie line)",
};
}
// Use the TLS-impersonating client β Cloudflare on grok.com pins
// cf_clearance to JA3/JA4 + HTTP/2 SETTINGS, so plain Node fetch always
// gets "Request rejected by anti-bot rules." regardless of cookies (#3180).
const { tlsFetchGrok, TlsClientUnavailableError, isCloudflareChallenge } =
await import("@omniroute/open-sse/services/grokTlsClient.ts");
// Generate the same Cloudflare-bypass headers the GrokWebExecutor uses.
const randomHex = (n: number) => {
const a = new Uint8Array(n);
crypto.getRandomValues(a);
return Array.from(a, (b) => b.toString(16).padStart(2, "0")).join("");
};
const statsigMsg = `e:TypeError: Cannot read properties of null (reading 'children')`;
const traceId = randomHex(16);
const spanId = randomHex(8);
let response;
try {
response = await tlsFetchGrok("https://grok.com/rest/app-chat/conversations/new", {
method: "POST",
headers: applyCustomUserAgent(
{
Accept: "*/*",
"Accept-Encoding": "gzip, deflate, br, zstd",
"Accept-Language": "en-US,en;q=0.9",
Baggage:
"sentry-environment=production,sentry-release=d6add6fb0460641fd482d767a335ef72b9b6abb8,sentry-public_key=b311e0f2690c81f25e2c4cf6d4f7ce1c",
"Cache-Control": "no-cache",
"Content-Type": "application/json",
Cookie: buildGrokCookieHeader(apiKey),
Origin: "https://grok.com",
Pragma: "no-cache",
Referer: "https://grok.com/",
"Sec-Ch-Ua": '"Google Chrome";v="147", "Chromium";v="147", "Not(A:Brand";v="24"',
"Sec-Ch-Ua-Mobile": "?0",
"Sec-Ch-Ua-Platform": '"macOS"',
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-origin",
"User-Agent":
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36",
"x-statsig-id": btoa(statsigMsg),
"x-xai-request-id": crypto.randomUUID(),
traceparent: `00-${traceId}-${spanId}-00`,
},
providerSpecificData
),
body: JSON.stringify({
temporary: true,
modeId: "fast",
message: "test",
fileAttachments: [],
imageAttachments: [],
disableSearch: true,
enableImageGeneration: false,
returnImageBytes: false,
returnRawGrokInXaiRequest: false,
enableImageStreaming: false,
imageGenerationCount: 0,
forceConcise: true,
toolOverrides: {},
enableSideBySide: false,
sendFinalMetadata: false,
isReasoning: false,
disableTextFollowUps: true,
disableMemory: true,
forceSideBySide: false,
isAsyncChat: false,
disableSelfHarmShortCircuit: false,
}),
timeoutMs: 15_000,
});
} catch (err: any) {
if (err instanceof TlsClientUnavailableError) {
return {
valid: false,
error: `TLS impersonation client unavailable: ${err.message}`,
};
}
throw err;
}
let errorDetail = "";
try {
errorDetail = (response.text || "").slice(0, 240);
} catch {}
// Detect Cloudflare challenge pages even with a 200 status from tls-client-node
if (isCloudflareChallenge(errorDetail)) {
return {
valid: false,
error: "Grok validation blocked by Cloudflare anti-bot. Try a residential IP or proxy.",
};
}
if (response.status >= 200 && response.status < 300) {
return { valid: true, error: null };
}
if (response.status === 401) {
return {
valid: false,
error: "Invalid SSO cookie β re-paste from grok.com DevTools β Cookies β sso",
};
}
if (response.status === 403) {
// Grok uses 403 for auth failures, entitlement issues, geo blocks,
// anti-bot/IP-reputation rejections, and resource errors. Classify before
// messaging β a misleading "invalid cookie" verdict on an IP-reputation
// block (issue #3474) sends users chasing a cookie that is actually fine.
//
// 1. Auth-shaped β the cookie/session is the problem; re-paste it.
if (/invalid-credentials|unauthenticated|unauthorized/i.test(errorDetail)) {
return {
valid: false,
error: "Invalid SSO cookie β re-paste from grok.com DevTools β Cookies β sso",
};
}
// 2. Anti-bot / Cloudflare / IP-reputation block β the cookie is likely
// fine; the request was rejected before auth was even evaluated. This is
// not code-fixable: the datacenter/VPS IP is flagged. A Cloudflare
// challenge body, Grok's "anti-bot rules" rejection, or a bare/non-JSON
// forbidden body (no structured upstream `error.message`) all map here.
if (isCloudflareChallenge(errorDetail) || isGrokAntiBotBlock(errorDetail)) {
return {
valid: false,
error:
"Grok returned 403 (anti-bot/Cloudflare block). Your sso cookie is likely fine β " +
"this is an IP-reputation block on the request, not an auth failure. Retry from a " +
"residential IP or configure a proxy for grok-web.",
};
}
// 3. Structured upstream error (e.g. probe model renamed) β surface the body
// so the user/maintainer sees the real cause instead of a wrong verdict.
return {
valid: false,
error: `Grok rejected validation (403)${errorDetail ? `: ${errorDetail.slice(0, 160)}` : ""}`,
};
}
if (response.status === 429) {
return { valid: false, error: "Grok rate limited during validation (429)" };
}
if (response.status >= 500) {
return { valid: false, error: `Grok unavailable (${response.status})` };
}
return {
valid: false,
error: `Grok validation failed (${response.status})${errorDetail ? `: ${errorDetail}` : ""}`,
};
} catch (error: any) {
return toValidationErrorResult(error);
}
}
export async function validateChatGptWebProvider({ apiKey, providerSpecificData = {} }: any) {
try {
// Accept bare value, unchunked cookie, chunked (.0/.1) cookies, or full
// "Cookie: ..." DevTools line. Pass through verbatim once recognised.
let cookieHeader = String(apiKey || "").trim();
if (/^cookie\s*:\s*/i.test(cookieHeader)) {
cookieHeader = cookieHeader.replace(/^cookie\s*:\s*/i, "");
}
if (!/__Secure-next-auth\.session-token(?:\.\d+)?\s*=/.test(cookieHeader)) {
cookieHeader = `__Secure-next-auth.session-token=${cookieHeader}`;
}
// Use the TLS-impersonating client β Cloudflare on chatgpt.com pins
// cf_clearance to JA3/JA4 + HTTP/2 SETTINGS, so plain Node fetch always
// gets cf-mitigated: challenge regardless of cookies.
const { tlsFetchChatGpt, TlsClientUnavailableError } =
await import("@omniroute/open-sse/services/chatgptTlsClient.ts");
let response;
try {
response = await tlsFetchChatGpt("https://chatgpt.com/api/auth/session", {
method: "GET",
headers: applyCustomUserAgent(
{
Accept: "application/json",
"Accept-Language": "en-US,en;q=0.9",
"Cache-Control": "no-cache",
Cookie: cookieHeader,
Origin: "https://chatgpt.com",
Pragma: "no-cache",
Referer: "https://chatgpt.com/",
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-origin",
"User-Agent":
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:148.0) Gecko/20100101 Firefox/148.0",
},
providerSpecificData
),
timeoutMs: 30_000,
});
} catch (err: any) {
if (err instanceof TlsClientUnavailableError) {
return {
valid: false,
error: `${err.message} (chatgpt-web requires this β without it, Cloudflare blocks every request)`,
};
}
throw err;
}
const contentType = response.headers.get("content-type") || "";
const cfRay = response.headers.get("cf-ray");
const cfMitigated = response.headers.get("cf-mitigated");
if (response.status === 401 || response.status === 403) {
const bodyText = response.text || "";
if (cfMitigated || /just a moment|cloudflare|cf-chl|attention required/i.test(bodyText)) {
return {
valid: false,
error:
"Cloudflare blocked the validator β open chatgpt.com in your browser, then copy the FULL Cookie line from DevTools (Network β request β Cookie) including cf_clearance, __cf_bm, _cfuvid, and the session-token chunks.",
};
}
return {
valid: false,
error:
"Invalid ChatGPT session cookie β re-paste __Secure-next-auth.session-token from chatgpt.com DevTools β Cookies",
};
}
if (response.status >= 500) {
return { valid: false, error: `ChatGPT unavailable (${response.status})` };
}
if (response.status >= 400) {
return { valid: false, error: `Validation failed: ${response.status}` };
}
if (!contentType.includes("json")) {
return {
valid: false,
error: `ChatGPT returned non-JSON (${contentType || "no content-type"}${cfRay ? `, cf-ray=${cfRay}` : ""}) β paste the FULL Cookie line including cf_clearance, __cf_bm, _cfuvid alongside the session-token chunks.`,
};
}
let data: any = {};
try {
data = JSON.parse(response.text || "{}");
} catch {
return {
valid: false,
error:
"ChatGPT session response was not JSON β paste the FULL Cookie line including cf_clearance and __cf_bm.",
};
}
if (!data?.accessToken) {
return {
valid: false,
error: "ChatGPT session expired β log into chatgpt.com and copy a fresh cookie",
};
}
return { valid: true, error: null };
} catch (error: any) {
return toValidationErrorResult(error);
}
}
export async function validatePerplexityWebProvider({ apiKey, providerSpecificData = {} }: any) {
try {
let sessionToken = apiKey;
let bearerToken: string | null = null;
if (sessionToken.startsWith("__Secure-next-auth.session-token=")) {
sessionToken = sessionToken.slice("__Secure-next-auth.session-token=".length);
} else if (/^bearer\s+/i.test(sessionToken)) {
bearerToken = sessionToken.replace(/^bearer\s+/i, "").trim();
sessionToken = "";
}
const timezone =
typeof Intl !== "undefined" ? Intl.DateTimeFormat().resolvedOptions().timeZone : "UTC";
const headers = applyCustomUserAgent(
{
"Content-Type": "application/json",
Accept: "text/event-stream",
Origin: "https://www.perplexity.ai",
Referer: "https://www.perplexity.ai/",
// Firefox 148 β must match the firefox_148 TLS profile of perplexityTlsClient (issue #2459).
"User-Agent":
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:148.0) Gecko/20100101 Firefox/148.0",
"X-App-ApiClient": "default",
"X-App-ApiVersion": "client-1.11.0",
...(bearerToken
? { Authorization: `Bearer ${bearerToken}` }
: sessionToken
? { Cookie: `__Secure-next-auth.session-token=${sessionToken}` }
: {}),
},
providerSpecificData
);
// Perplexity is behind Cloudflare Enterprise which pins JA3/JA4 to a real
// browser handshake β plain fetch is challenged with a 403 page from
// VPS/datacenter IPs even with a valid cookie. Use the Firefox-fingerprinted
// TLS client so the validator's verdict reflects the cookie, not the IP (issue #2459).
const { tlsFetchPerplexity, isCloudflareChallenge, TlsClientUnavailableError } =
await import("@omniroute/open-sse/services/perplexityTlsClient.ts");
let response: { status: number; text: string | null };
try {
response = await tlsFetchPerplexity("https://www.perplexity.ai/rest/sse/perplexity_ask", {
method: "POST",
headers,
body: JSON.stringify({
query_str: "test",
params: {
query_str: "test",
search_focus: "internet",
mode: "concise",
model_preference: "default",
sources: ["web"],
attachments: [],
frontend_uuid: crypto.randomUUID(),
frontend_context_uuid: crypto.randomUUID(),
version: "client-1.11.0",
language: "en-US",
timezone,
search_recency_filter: null,
is_incognito: true,
use_schematized_api: true,
last_backend_uuid: null,
},
}),
timeoutMs: 30_000,
});
} catch (err) {
if (err instanceof TlsClientUnavailableError) {
return {
valid: false,
error: `${err.message} perplexity-web requires it β without it Cloudflare blocks every request.`,
};
}
throw err;
}
if (response.status === 401 || response.status === 403) {
if (isCloudflareChallenge(response.text)) {
return {
valid: false,
error:
"Cloudflare is blocking connections from this server's IP (TLS fingerprint rejected). " +
"The session cookie may still be valid β install tls-client-node's native binary or route " +
"perplexity-web through a residential proxy.",
};
}
return {
valid: false,
error:
"Invalid Perplexity session cookie β re-paste __Secure-next-auth.session-token from perplexity.ai",
};
}
if (response.status === 200 || (response.status >= 400 && response.status < 500)) {
return { valid: true, error: null };
}
if (response.status >= 500) {
return { valid: false, error: `Perplexity unavailable (${response.status})` };
}
return { valid: false, error: `Validation failed: ${response.status}` };
} catch (error: any) {
return toValidationErrorResult(error);
}
}
export async function validateBlackboxWebProvider({ apiKey, providerSpecificData = {} }: any) {
try {
const cookieHeader = normalizeSessionCookieHeader(apiKey, "next-auth.session-token");
const sessionHeaders = applyCustomUserAgent(
{
Accept: "application/json",
Cookie: cookieHeader,
Origin: "https://app.blackbox.ai",
Referer: "https://app.blackbox.ai/",
"User-Agent":
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/147.0.0.0",
},
providerSpecificData
);
const sessionResponse = await validationRead("https://app.blackbox.ai/api/auth/session", {
method: "GET",
headers: sessionHeaders,
});
const sessionText = await sessionResponse.text();
const sessionPayload = sessionText ? JSON.parse(sessionText) : null;
const userEmail = sessionPayload?.user?.email;
if (!sessionResponse.ok || !userEmail) {
return {
valid: false,
error:
"Invalid Blackbox session cookie β re-paste __Secure-authjs.session-token from app.blackbox.ai",
};
}
const subscriptionHeaders = applyCustomUserAgent(
{
"Content-Type": "application/json",
Accept: "application/json",
Cookie: cookieHeader,
Origin: "https://app.blackbox.ai",
Referer: "https://app.blackbox.ai/",
"User-Agent":
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/147.0.0.0",
},
providerSpecificData
);
const subscriptionResponse = await validationWrite(
"https://app.blackbox.ai/api/check-subscription",
{
method: "POST",
headers: subscriptionHeaders,
body: JSON.stringify({ email: userEmail }),
}
);
const subscriptionText = await subscriptionResponse.text();
const subscriptionPayload = subscriptionText ? JSON.parse(subscriptionText) : null;
const explicitActive =
subscriptionPayload?.hasActiveSubscription === true ||
subscriptionPayload?.isTrialSubscription === true ||
subscriptionPayload?.status === "PREMIUM";
const explicitInactive =
subscriptionPayload?.hasActiveSubscription === false ||
subscriptionPayload?.status === "FREE";
const requiresAuthentication =
subscriptionPayload?.requiresAuthentication === true ||
/login is required/i.test(subscriptionText || "");
if (subscriptionResponse.status === 401 || subscriptionResponse.status === 403) {
return {
valid: false,
error:
"Invalid Blackbox session cookie β re-paste __Secure-authjs.session-token from app.blackbox.ai",
};
}
if (requiresAuthentication) {
return {
valid: false,
error:
"Blackbox session expired β re-paste __Secure-authjs.session-token from app.blackbox.ai",
};
}
if (subscriptionResponse.ok && explicitActive) {
return { valid: true, error: null };
}
if (
(subscriptionResponse.ok && explicitInactive) ||
subscriptionPayload?.previouslySubscribed
) {
return {
valid: false,
error:
"Blackbox account authenticated, but no active paid subscription was detected for premium web models.",
};
}
if (subscriptionResponse.ok) {
return { valid: true, error: null };
}
if (subscriptionResponse.status >= 500) {
return { valid: false, error: `Blackbox unavailable (${subscriptionResponse.status})` };
}
return { valid: false, error: `Validation failed: ${subscriptionResponse.status}` };
} catch (error: any) {
return toValidationErrorResult(error);
}
}
|