File size: 72,263 Bytes
2b64d42 | 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 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 | /**
* Multi-account authentication pool for Codeium/Windsurf.
*
* Features:
* - Multiple accounts with round-robin load balancing
* - Account health tracking (error count, auto-disable)
* - Dynamic add/remove via API
* - Token-based registration via api.codeium.com
* - Optional sticky sessions (STICKY_SESSION_ENABLED=1) for multi-turn
* conversation continuity (#93, #133)
*/
import { createHash, randomUUID, timingSafeEqual } from 'crypto';
import { isStickyEnabled, getStickyBinding, setStickyBinding, clearStickyBinding } from './account/sticky-session.js';
import { readFileSync, writeFileSync, existsSync, renameSync, unlinkSync, readdirSync } from 'fs';
import { config, log } from './config.js';
import { getEffectiveProxy } from './dashboard/proxy-config.js';
import { getTierModels, getModelKeysByEnum, MODELS, registerDiscoveredFreeModel } from './models.js';
import { join } from 'path';
// accounts.json lives in the cluster-shared dir so add-account writes from
// one replica survive future restarts and are visible to every replica.
// See `src/config.js` (sharedDataDir vs dataDir) and issue #67.
const ACCOUNTS_FILE = join(config.sharedDataDir || config.dataDir, 'accounts.json');
// โโโ Account pool โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
const accounts = [];
let _roundRobinIndex = 0;
let _bindHost = '0.0.0.0';
// Per-tier requests-per-minute limits. Used for both filter-by-cap and
// weighted selection (accounts with more headroom are preferred).
const TIER_RPM = { pro: 60, free: 10, unknown: 20, expired: 0 };
const RPM_WINDOW_MS = 60 * 1000;
// Monotonic per-process counter so two reservations landing in the same
// millisecond produce distinct `_rpmHistory` tokens. Without this,
// `refundReservation()` could remove the wrong reservation under
// concurrent traffic. The fractional offset stays well below 1ms so
// numerical comparisons against ms-based cutoffs still work as expected.
let reservationSeq = 0;
function nextReservationToken(now) {
reservationSeq = (reservationSeq + 1) % 1000;
return now + reservationSeq / 1000;
}
// Strict positive int env reader (mirrors the helper in client.js /
// conversation-pool.js). Used by the dynamic cloud probe path below; when
// this was missing the probe path crashed with "positiveIntEnv is not
// defined" on every refresh cycle and free-account model discovery
// silently stopped working.
function positiveIntEnv(name, fallback) {
const n = parseInt(process.env[name] || '', 10);
return Number.isFinite(n) && n > 0 ? n : fallback;
}
function rpmLimitFor(account) {
return TIER_RPM[account.tier || 'unknown'] ?? 20;
}
// v2.0.57 Fix 4 โ quota headroom score. Reads the min of daily% and
// weekly% from the account's last refreshed credits snapshot. When both
// are unknown (probe never landed), assume 100 so unprobed accounts
// don't get demoted to last-pick. Returns 0..100.
export function quotaScore(account) {
const c = account?.credits;
if (!c || typeof c !== 'object') return 100;
const d = typeof c.dailyPercent === 'number' ? c.dailyPercent : 100;
const w = typeof c.weeklyPercent === 'number' ? c.weeklyPercent : 100;
return Math.max(0, Math.min(100, Math.min(d, w)));
}
// v2.0.57 Fix 5 โ drought mode. True iff every active account has
// weeklyPercent < threshold. Operators see this on the dashboard so
// they can buy more accounts / wait for reset rather than chasing
// individual rate-limit errors.
const DROUGHT_THRESHOLD = 5;
export function isDroughtMode() {
const eligible = accounts.filter(a => a.status === 'active');
if (!eligible.length) return false;
let knownCount = 0;
let droughtCount = 0;
for (const a of eligible) {
const c = a?.credits;
const w = c && typeof c.weeklyPercent === 'number' ? c.weeklyPercent : null;
if (w == null) continue;
knownCount++;
if (w < DROUGHT_THRESHOLD) droughtCount++;
}
if (!knownCount) return false; // no quota data yet โ assume not drought
return droughtCount === knownCount;
}
// v2.0.58 โ drought-mode premium-model gate. Default ON (changes
// behaviour but drought is exceptional, and operators reported wanting
// the proxy to stop wasting upstream calls when no quota remains).
// Toggle via env DROUGHT_RESTRICT_PREMIUM=0 to disable globally, or via
// the dashboard experimental flag `droughtRestrictPremium` (which the
// chat path reads through runtime-config).
function _droughtRestrictEnvDefault() {
return process.env.DROUGHT_RESTRICT_PREMIUM !== '0';
}
export function isDroughtRestrictEnabled() {
// env override wins; otherwise consult runtime-config (deferred import
// to avoid the same load-order issue documented in validateApiKey).
if (process.env.DROUGHT_RESTRICT_PREMIUM === '0') return false;
if (process.env.DROUGHT_RESTRICT_PREMIUM === '1') return true;
// No explicit env โ use runtime-config default (true).
if (_droughtRestrictResolver) {
try { return !!_droughtRestrictResolver(); } catch { /* fall through */ }
}
return _droughtRestrictEnvDefault();
}
let _droughtRestrictResolver = null;
export function setDroughtRestrictResolver(fn) {
_droughtRestrictResolver = typeof fn === 'function' ? fn : null;
}
/**
* True when drought mode is active AND the operator has restriction
* enabled AND the requested model is NOT in the free-tier allowlist.
* Free-tier models keep running because they don't burn weekly quota
* the way premium models do.
*/
export function isModelBlockedByDrought(modelKey) {
if (!modelKey) return false;
if (!isDroughtRestrictEnabled()) return false;
if (!isDroughtMode()) return false;
const freeModels = new Set(getTierModels('free'));
return !freeModels.has(modelKey);
}
export function getDroughtSummary() {
const eligible = accounts.filter(a => a.status === 'active');
let lowestWeekly = null;
let lowestDaily = null;
let knownAccounts = 0;
for (const a of eligible) {
const c = a?.credits;
if (!c) continue;
knownAccounts++;
if (typeof c.weeklyPercent === 'number') {
lowestWeekly = lowestWeekly == null ? c.weeklyPercent : Math.min(lowestWeekly, c.weeklyPercent);
}
if (typeof c.dailyPercent === 'number') {
lowestDaily = lowestDaily == null ? c.dailyPercent : Math.min(lowestDaily, c.dailyPercent);
}
}
return {
drought: isDroughtMode(),
threshold: DROUGHT_THRESHOLD,
activeAccounts: eligible.length,
knownAccounts,
lowestWeeklyPercent: lowestWeekly,
lowestDailyPercent: lowestDaily,
restrictEnabled: isDroughtRestrictEnabled(),
freeTierModels: getTierModels('free'),
};
}
function pruneRpmHistory(account, now) {
if (!account._rpmHistory) account._rpmHistory = [];
const cutoff = now - RPM_WINDOW_MS;
while (account._rpmHistory.length && account._rpmHistory[0] < cutoff) {
account._rpmHistory.shift();
}
return account._rpmHistory.length;
}
// Serialize concurrent saveAccounts calls โ multiple async paths
// (reportSuccess / markRateLimited / updateCapability / probe) can fire
// together; without a mutex the last writer wins on stale memory state.
let _saveInFlight = false;
let _savePending = false;
function _serializeAccounts() {
return accounts.map(a => ({
id: a.id, email: a.email, apiKey: a.apiKey,
apiServerUrl: a.apiServerUrl, method: a.method,
status: a.status, addedAt: a.addedAt,
tier: a.tier, tierManual: !!a.tierManual,
capabilities: a.capabilities, lastProbed: a.lastProbed,
credits: a.credits || null,
blockedModels: a.blockedModels || [],
refreshToken: a.refreshToken || '',
// From GetUserStatus โ the authoritative tier/entitlement snapshot.
userStatus: a.userStatus || null,
userStatusLastFetched: a.userStatusLastFetched || 0,
}));
}
function saveAccounts() {
if (_saveInFlight) { _savePending = true; return; }
_saveInFlight = true;
const tempFile = ACCOUNTS_FILE + '.tmp';
try {
// Atomic write: write to .tmp then rename so a crash mid-write can't
// leave accounts.json truncated/corrupt. Node's renameSync is atomic
// on POSIX and replaces the target on Windows (fs.rename behavior).
writeFileSync(tempFile, JSON.stringify(_serializeAccounts(), null, 2));
renameSync(tempFile, ACCOUNTS_FILE);
} catch (e) {
log.error('Failed to save accounts:', e.message);
try { unlinkSync(tempFile); } catch {}
} finally {
_saveInFlight = false;
if (_savePending) { _savePending = false; setImmediate(saveAccounts); }
}
}
/**
* Synchronous last-resort flush for the shutdown path. Bypasses the
* _saveInFlight mutex (any queued async save would be killed by
* process.exit before it finished anyway). Tolerates being called after
* an in-flight save โ the rename on top of a partial temp file is still
* atomic.
*/
export function saveAccountsSync() {
const tempFile = ACCOUNTS_FILE + '.shutdown.tmp';
try {
writeFileSync(tempFile, JSON.stringify(_serializeAccounts(), null, 2));
renameSync(tempFile, ACCOUNTS_FILE);
} catch (e) {
log.error('Shutdown: failed to flush accounts:', e.message);
try { unlinkSync(tempFile); } catch {}
}
}
// Issue #67 โ accounts.json used to live under `dataDir` which became
// per-replica when REPLICA_ISOLATE=1 shipped (commit 35700bb). Each
// docker-compose upgrade gets a fresh container HOSTNAME so the previous
// run's accounts ended up orphaned under a stale `replica-<old>/` subdir.
// On startup, if the shared accounts.json is missing but one or more
// replica-local copies exist, union them by apiKey and write into the
// shared path. Survives multiple stale subdirs across upgrade cycles.
//
// Pure-function form is exported so tests can drive it without booting
// the whole auth module against a real config.
export function migrateReplicaAccountsTo({ sharedDir, accountsFile, logger = log }) {
if (existsSync(accountsFile)) return { migrated: 0, scanned: 0, skipped: true };
let entries;
try {
entries = readdirSync(sharedDir).filter(n => n.startsWith('replica-'));
} catch { return { migrated: 0, scanned: 0, skipped: true }; }
if (!entries.length) return { migrated: 0, scanned: 0, skipped: true };
const merged = new Map();
let scanned = 0;
for (const entry of entries) {
const legacyPath = join(sharedDir, entry, 'accounts.json');
if (!existsSync(legacyPath)) continue;
scanned++;
try {
const data = JSON.parse(readFileSync(legacyPath, 'utf-8'));
if (!Array.isArray(data)) continue;
for (const a of data) {
if (a?.apiKey && !merged.has(a.apiKey)) merged.set(a.apiKey, a);
}
} catch (e) {
logger.warn?.(`Account migration: skipped ${legacyPath}: ${e.message}`);
}
}
if (!merged.size) return { migrated: 0, scanned, skipped: false };
const tempFile = accountsFile + '.migrate.tmp';
try {
writeFileSync(tempFile, JSON.stringify([...merged.values()], null, 2));
renameSync(tempFile, accountsFile);
logger.warn?.(`Migrated ${merged.size} account(s) from ${scanned} replica-* subdir(s) into ${accountsFile} (issue #67)`);
return { migrated: merged.size, scanned, skipped: false };
} catch (e) {
logger.error?.(`Account migration write failed: ${e.message}`);
try { unlinkSync(tempFile); } catch {}
return { migrated: 0, scanned, skipped: false, error: e.message };
}
}
function loadAccounts() {
try {
migrateReplicaAccountsTo({
sharedDir: config.sharedDataDir || config.dataDir,
accountsFile: ACCOUNTS_FILE,
});
if (!existsSync(ACCOUNTS_FILE)) return;
const data = JSON.parse(readFileSync(ACCOUNTS_FILE, 'utf-8'));
for (const a of data) {
if (accounts.find(x => x.apiKey === a.apiKey)) continue;
accounts.push({
id: a.id || randomUUID().slice(0, 8),
email: a.email, apiKey: a.apiKey,
apiServerUrl: a.apiServerUrl || '',
method: a.method || 'api_key',
status: a.status || 'active',
lastUsed: 0, errorCount: 0,
refreshToken: a.refreshToken || '', expiresAt: 0, refreshTimer: null,
addedAt: a.addedAt || Date.now(),
tier: a.tier || 'unknown',
capabilities: a.capabilities || {},
lastProbed: a.lastProbed || 0,
credits: a.credits || null,
blockedModels: Array.isArray(a.blockedModels) ? a.blockedModels : [],
tierManual: !!a.tierManual,
userStatus: a.userStatus || null,
userStatusLastFetched: a.userStatusLastFetched || 0,
});
}
if (data.length > 0) log.info(`Loaded ${data.length} account(s) from disk`);
} catch (e) {
log.error('Failed to load accounts:', e.message);
}
}
// โโโ Dynamic model catalog from cloud โโโโโโโโโโโโโโโโโโโโโ
async function fetchAndMergeModelCatalog() {
// Use the first active account to fetch the catalog.
const acct = accounts.find(a => a.status === 'active' && a.apiKey);
if (!acct) {
log.debug('No active account for model catalog fetch');
return;
}
try {
const { getCascadeModelConfigs } = await import('./windsurf-api.js');
const { mergeCloudModels } = await import('./models.js');
const proxy = getEffectiveProxy(acct.id) || null;
const { configs } = await getCascadeModelConfigs(acct.apiKey, proxy);
const added = mergeCloudModels(configs);
log.info(`Model catalog: ${configs.length} cloud models, ${added} new entries merged`);
} catch (e) {
log.warn(`Model catalog fetch failed: ${e.message}`);
}
}
async function registerWithCodeium(idToken) {
const { WindsurfClient } = await import('./client.js');
const client = new WindsurfClient('', 0, '');
const result = await client.registerUser(idToken);
return result; // { apiKey, name, apiServerUrl }
}
// โโโ Account management โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/**
* Add account via API key.
*/
export function addAccountByKey(apiKey, label = '') {
const existing = accounts.find(a => a.apiKey === apiKey);
if (existing) return existing;
const account = {
id: randomUUID().slice(0, 8),
email: label || `key-${apiKey.slice(0, 8)}`,
apiKey,
apiServerUrl: '',
method: 'api_key',
status: 'active',
lastUsed: 0,
errorCount: 0,
refreshToken: '',
expiresAt: 0,
refreshTimer: null,
addedAt: Date.now(),
tier: 'unknown',
capabilities: {},
lastProbed: 0,
blockedModels: [],
};
account.credits = null;
accounts.push(account);
saveAccounts();
log.info(`Account added: ${account.id} (${account.email}) [api_key]`);
return account;
}
/**
* Add account via auth token.
*/
export async function addAccountByToken(token, label = '') {
const reg = await registerWithCodeium(token);
const existing = accounts.find(a => a.apiKey === reg.apiKey);
if (existing) return existing;
const account = {
id: randomUUID().slice(0, 8),
email: label || reg.name || `token-${reg.apiKey.slice(0, 8)}`,
apiKey: reg.apiKey,
apiServerUrl: reg.apiServerUrl || '',
method: 'token',
status: 'active',
lastUsed: 0,
errorCount: 0,
refreshToken: '',
expiresAt: 0,
refreshTimer: null,
addedAt: Date.now(),
tier: 'unknown',
capabilities: {},
lastProbed: 0,
blockedModels: [],
credits: null,
};
accounts.push(account);
saveAccounts();
log.info(`Account added: ${account.id} (${account.email}) [token] server=${account.apiServerUrl}`);
return account;
}
/**
* Add account via email/password.
*
* Reuses the same Windsurf login pipeline the dashboard's
* `processWindsurfLogin` uses: probe Auth1 vs Firebase via
* CheckUserLoginMethod (with /_devin-auth/connections fallback), then
* register a Codeium api_key. Refresh token (Firebase path) is persisted
* so the background renewal loop in checkAndRefreshTokens picks it up.
*/
export async function addAccountByEmail(email, password) {
if (!email || !password) {
throw new Error('email and password required');
}
const { windsurfLogin } = await import('./dashboard/windsurf-login.js');
const result = await windsurfLogin(email, password, null);
if (!result?.apiKey) {
throw new Error('Login succeeded but no apiKey returned');
}
const account = addAccountByKey(result.apiKey, result.name || email);
if (account.email !== (result.name || email)) {
account.email = result.name || email;
}
account.method = 'email';
if (result.apiServerUrl && !account.apiServerUrl) {
account.apiServerUrl = result.apiServerUrl;
}
if (result.refreshToken || result.idToken) {
setAccountTokens(account.id, {
refreshToken: result.refreshToken || '',
idToken: result.idToken || '',
});
}
saveAccounts();
log.info(`Account added via email: ${account.id} (${account.email})`);
return account;
}
/**
* Per-account blocklist: hide specific models from this account so the
* selector won't route matching requests here. Useful when one key has
* burned its claude quota but still serves gpt just fine.
*/
export function setAccountBlockedModels(id, blockedModels) {
const account = accounts.find(a => a.id === id);
if (!account) return false;
account.blockedModels = Array.isArray(blockedModels) ? blockedModels.slice() : [];
saveAccounts();
log.info(`Account ${id} blockedModels updated: ${account.blockedModels.length} blocked`);
return true;
}
/**
* Resolve whether `modelKey` is callable on this account.
*
* Two-stage decision:
* 1. blocklist always wins (manual operator override)
* 2. if GetUserStatus has filled `capabilities[key].reason='user_status'`
* that's the upstream-authoritative answer (cascade_allowed_models_config)
* โ trust it directly, regardless of static tier table
* 3. otherwise fall back to the tier static allowlist (UID-only models,
* pre-status accounts, unknown tier)
*
* Without step 2, free accounts that Windsurf actually entitles to
* GLM/SWE/Kimi via the upstream allowlist still route through the
* `MODEL_TIER_ACCESS.free` static table (gemini-only) and get denied
* at selector time even though `account.capabilities` already says yes.
*/
export function isModelAllowedForAccount(account, modelKey) {
const blocked = account.blockedModels || [];
if (blocked.includes(modelKey)) return false;
// tierManual is the operator escape hatch: when set, trust the manual
// tier table over GetUserStatus's per-account allowlist. Useful when
// probe-based detection misclassified a Pro/Trial account as free
// (issue #8) and the operator manually flips it back to Pro.
if (!account.tierManual) {
// GetUserStatus writes both arms โ `user_status` for allowed and
// `not_entitled` for denied โ into capabilities, keyed by enum.
// Either reason means the upstream allowlist has already spoken.
const cap = account.capabilities?.[modelKey];
if (cap?.reason === 'user_status' || cap?.reason === 'not_entitled') {
return cap.ok === true;
}
}
const tierModels = getTierModels(account.tier || 'unknown');
return tierModels.includes(modelKey);
}
/** List of model keys this account is currently allowed to call. */
export function getAvailableModelsForAccount(account) {
const blocked = new Set(account.blockedModels || []);
const tierModels = getTierModels(account.tier || 'unknown');
// Manual tier override or no GetUserStatus yet โ tier static table.
if (account.tierManual || !account.userStatusLastFetched || !account.capabilities) {
return tierModels.filter(m => !blocked.has(m));
}
// After GetUserStatus: per-account allowlist is authoritative for every
// enum-keyed catalog entry; UID-only entries (no enum) fall back to tier.
const allowed = [];
for (const [key, info] of Object.entries(MODELS)) {
if (blocked.has(key)) continue;
if (info.enumValue && info.enumValue > 0) {
const cap = account.capabilities[key];
if (cap?.reason === 'user_status' && cap.ok === true) allowed.push(key);
} else if (tierModels.includes(key)) {
allowed.push(key);
}
}
return allowed;
}
/**
* Set account status (active, disabled, error).
*/
export function setAccountStatus(id, status) {
const account = accounts.find(a => a.id === id);
if (!account) return false;
account.status = status;
if (status === 'active') account.errorCount = 0;
saveAccounts();
log.info(`Account ${id} status set to ${status}`);
return true;
}
/**
* Reset error count for an account.
*/
export function resetAccountErrors(id) {
const account = accounts.find(a => a.id === id);
if (!account) return false;
account.errorCount = 0;
account.status = 'active';
saveAccounts();
log.info(`Account ${id} errors reset`);
return true;
}
/**
* Update account label.
*/
export function updateAccountLabel(id, label) {
const account = accounts.find(a => a.id === id);
if (!account) return false;
account.email = label;
saveAccounts();
return true;
}
/**
* Persist tokens (apiKey / refreshToken / idToken) onto an account.
* Fields with undefined are left unchanged. Always flushes to disk so the
* rotation survives a restart even if the caller never saves explicitly.
*/
/**
* Manually force an account's tier. Used when automatic probing mis-
* classifies an account โ e.g. 14-day Pro trials whose planName doesn't
* match our regex, or accounts whose initial probe was blocked by an
* upstream bug and now carry a stale "free" tag even though the real
* subscription is Pro.
*/
export function setAccountTier(id, tier) {
if (!['pro', 'free', 'unknown', 'expired'].includes(tier)) return false;
const account = accounts.find(a => a.id === id);
if (!account) return false;
account.tier = tier;
account.tierManual = true;
saveAccounts();
log.info(`Account ${id} tier manually set to ${tier}`);
return true;
}
export function setAccountTokens(id, { apiKey, refreshToken, idToken } = {}) {
const account = accounts.find(a => a.id === id);
if (!account) return false;
if (apiKey != null) account.apiKey = apiKey;
if (refreshToken != null) account.refreshToken = refreshToken;
if (idToken != null) account.idToken = idToken;
saveAccounts();
return true;
}
/**
* Remove an account by ID.
*/
export function removeAccount(id) {
const idx = accounts.findIndex(a => a.id === id);
if (idx === -1) return false;
const account = accounts[idx];
accounts.splice(idx, 1);
saveAccounts();
// Drop any Cascade conversations owned by this key so future requests
// don't try to resume on an account that no longer exists.
import('./conversation-pool.js').then(m => m.invalidateFor({ apiKey: account.apiKey })).catch(() => {});
log.info(`Account removed: ${id} (${account.email})`);
return true;
}
// โโโ Account selection (tier-weighted RPM) โโโโโโโโโโโโโโโโโ
/**
* Pick the next available account based on per-tier RPM headroom.
*
* Strategy:
* 1. Keep only active, non-excluded, non-rate-limited accounts.
* 2. Drop accounts whose 60s request count already equals their tier cap.
* 3. Pick the account with the highest remaining-ratio (most idle).
* 4. Record the selection timestamp on that account's sliding window.
*
* Returns null when every account is temporarily full โ callers should
* wait a moment and retry (see handlers/chat.js queue loop).
*/
export function getApiKey(excludeKeys = [], modelKey = null, callerKey = null) {
const now = Date.now();
// โโ Sticky session: prefer the account from the last turn โโโโโโโโ
// When enabled, this keeps multi-turn conversations on the same upstream
// account so the cascade_id from the previous turn is still valid.
// Falls through to normal selection if the bound account is unavailable.
if (callerKey && isStickyEnabled()) {
const bound = getStickyBinding(callerKey, modelKey);
if (bound) {
const acct = accounts.find(a => a.id === bound.accountId && a.status === 'active' && a.apiKey === bound.apiKey);
if (acct) {
const limit = rpmLimitFor(acct);
const used = pruneRpmHistory(acct, now);
if (limit > 0 && used < limit && !isRateLimitedForModel(acct, modelKey, now)) {
if (!modelKey || isModelAllowedForAccount(acct, modelKey)) {
const reservationTimestamp = nextReservationToken(now);
acct._rpmHistory.push(reservationTimestamp);
acct.lastUsed = now;
acct._inflight = (acct._inflight || 0) + 1;
acct._inflightAt = Date.now();
return {
id: acct.id, email: acct.email, apiKey: acct.apiKey,
apiServerUrl: acct.apiServerUrl || '',
proxy: getEffectiveProxy(acct.id) || null,
reservationTimestamp,
_sticky: true,
};
}
}
}
// Bound account is no longer usable โ clear it so the next call
// falls through to normal selection instead of looping.
clearStickyBinding(callerKey, modelKey);
}
}
const candidates = [];
for (const a of accounts) {
if (a.status !== 'active') continue;
if (excludeKeys.includes(a.apiKey)) continue;
if (isRateLimitedForModel(a, modelKey, now)) continue;
const limit = rpmLimitFor(a);
if (limit <= 0) continue; // expired tier
const used = pruneRpmHistory(a, now);
if (used >= limit) continue;
// Tier entitlement + per-account blocklist filter
if (modelKey && !isModelAllowedForAccount(a, modelKey)) continue;
candidates.push({ account: a, used, limit });
}
if (candidates.length === 0) return null;
// Pick the account with the fewest in-flight requests first (so a burst
// of concurrent calls spreads across accounts instead of piling onto a
// single one that still has RPM headroom โ see issue #37). Then prefer
// accounts with the highest quota headroom (v2.0.57 Fix 4 โ predictive
// pre-warming reads min(daily%, weekly%) so a Trial about to roll over
// doesn't keep getting picked over a healthier account). Then RPM
// remaining-ratio. Finally least-recently-used.
candidates.sort((x, y) => {
const ix = x.account._inflight || 0;
const iy = y.account._inflight || 0;
if (ix !== iy) return ix - iy;
const qx = quotaScore(x.account);
const qy = quotaScore(y.account);
// Bucket the score so we don't churn across small noise (e.g. 41 vs
// 42). 5%-wide buckets keep the LRU rotation intact when both are
// healthy and only kick in when one account is materially lower.
const bx = Math.floor(qx / 5);
const by = Math.floor(qy / 5);
if (bx !== by) return by - bx;
const rx = (x.limit - x.used) / x.limit;
const ry = (y.limit - y.used) / y.limit;
if (ry !== rx) return ry - rx;
return (x.account.lastUsed || 0) - (y.account.lastUsed || 0);
});
const { account } = candidates[0];
const reservationTimestamp = nextReservationToken(now);
account._rpmHistory.push(reservationTimestamp);
account.lastUsed = now;
account._inflight = (account._inflight || 0) + 1;
account._inflightAt = now;
// v2.0.57 Fix 4 โ predictive pre-warming. When the chosen account is
// running out of quota, fire-and-forget warm up the next-best
// candidate so its LS / cascade pool is ready when the chosen one
// hits zero on the next call. Throttled per-account to once per 30s
// so a long burst of low-quota requests doesn't slam ensureLsForAccount.
if (candidates.length >= 2 && quotaScore(account) < DROUGHT_THRESHOLD * 2) {
schedulePrewarm(candidates[1].account);
}
return {
id: account.id, email: account.email, apiKey: account.apiKey,
apiServerUrl: account.apiServerUrl || '',
proxy: getEffectiveProxy(account.id) || null,
reservationTimestamp,
};
}
const PREWARM_COOLDOWN_MS = 30_000;
function schedulePrewarm(nextAccount) {
if (!nextAccount) return;
const now = Date.now();
if (nextAccount._prewarmAt && now - nextAccount._prewarmAt < PREWARM_COOLDOWN_MS) return;
nextAccount._prewarmAt = now;
// ensureLsForAccount already triggers a cascade warmup; we only need to
// kick it off without awaiting.
Promise.resolve().then(() => ensureLsForAccount(nextAccount.id)).catch(e => {
log.debug(`Prewarm ${nextAccount.id} failed: ${e?.message || e}`);
});
log.info(`Prewarm: chosen account is low on quota (score ${quotaScore(accounts.find(a => a.id === nextAccount.id) || nextAccount).toFixed(0)}); warming up next candidate ${nextAccount.id}`);
}
/**
* Decrement the in-flight counter for an account after a chat request
* finishes (success OR failure). Callers MUST pair every successful
* getApiKey/acquireAccountByKey with a releaseAccount in finally, or the
* in-flight balancing will drift and the account will look permanently busy.
*/
export function releaseAccount(apiKey) {
if (!apiKey) return;
const a = accounts.find(x => x.apiKey === apiKey);
if (!a) return;
a._inflight = Math.max(0, (a._inflight || 0) - 1);
}
// v2.0.96: safety net โ auto-reset stale inflight counters that weren't
// decremented due to connection drops, crashes, or missed finally blocks.
// Without this a single leaked inflight permanently deprioritises an
// account in getApiKey's sort order (fixes #165).
const INFLIGHT_STALE_MS = 120_000;
let _inflightCleanupTimer = null;
function startInflightCleanup() {
if (_inflightCleanupTimer) return;
_inflightCleanupTimer = setInterval(() => {
const now = Date.now();
for (const a of accounts) {
if ((a._inflight || 0) > 0 && a._inflightAt && (now - a._inflightAt) > INFLIGHT_STALE_MS) {
log.warn(`Account ${a.id} (${a.email}) inflight=${a._inflight} stale >${Math.round((now - a._inflightAt) / 1000)}s, auto-resetting`);
a._inflight = 0;
a._inflightAt = 0;
}
}
}, 60_000).unref();
}
/**
* Try to re-check-out a specific account by apiKey, applying the same
* rate-limit / status guards as getApiKey(). Used by the conversation pool
* when a pool hit requires routing back to the exact account that owns the
* upstream cascade_id โ if that account is momentarily unavailable we fall
* back to a fresh cascade on a different account instead of queuing.
*/
export function acquireAccountByKey(apiKey, modelKey = null) {
const now = Date.now();
const a = accounts.find(x => x.apiKey === apiKey);
if (!a) return null;
if (a.status !== 'active') return null;
if (isRateLimitedForModel(a, modelKey, now)) return null;
const limit = rpmLimitFor(a);
if (limit <= 0) return null;
const used = pruneRpmHistory(a, now);
if (used >= limit) return null;
if (modelKey && !isModelAllowedForAccount(a, modelKey)) return null;
const reservationTimestamp = nextReservationToken(now);
a._rpmHistory.push(reservationTimestamp);
a.lastUsed = now;
a._inflight = (a._inflight || 0) + 1;
a._inflightAt = now;
return {
id: a.id, email: a.email, apiKey: a.apiKey,
apiServerUrl: a.apiServerUrl || '',
proxy: getEffectiveProxy(a.id) || null,
reservationTimestamp,
};
}
/**
* Explain why a pinned account cannot be used right now. Used by strict
* Cascade reuse mode, where switching accounts would lose server-side
* conversation context.
*/
export function getAccountAvailability(apiKey, modelKey = null) {
const now = Date.now();
const a = accounts.find(x => x.apiKey === apiKey);
if (!a) return { available: false, reason: 'missing', retryAfterMs: 60_000 };
if (a.status !== 'active') return { available: false, reason: `status:${a.status}`, retryAfterMs: 60_000 };
if (a.rateLimitedUntil && a.rateLimitedUntil > now) {
return { available: false, reason: 'rate_limited', retryAfterMs: Math.max(1000, a.rateLimitedUntil - now) };
}
if (modelKey && a._modelRateLimits) {
const until = a._modelRateLimits[modelKey];
if (until && until > now) {
return { available: false, reason: 'model_rate_limited', retryAfterMs: Math.max(1000, until - now) };
}
if (until && until <= now) delete a._modelRateLimits[modelKey];
}
const limit = rpmLimitFor(a);
if (limit <= 0) return { available: false, reason: 'tier_expired', retryAfterMs: 60_000 };
const used = pruneRpmHistory(a, now);
if (used >= limit) {
const oldest = a._rpmHistory?.[0] || now;
return { available: false, reason: 'rpm_full', retryAfterMs: Math.max(1000, oldest + RPM_WINDOW_MS - now) };
}
if (modelKey && !isModelAllowedForAccount(a, modelKey)) {
return { available: false, reason: 'model_not_available', retryAfterMs: 60_000 };
}
return { available: true, reason: 'available', retryAfterMs: 0 };
}
/**
* Snapshot of per-account RPM usage, for dashboard display.
*/
export function getRpmStats() {
const now = Date.now();
const out = {};
for (const a of accounts) {
const limit = rpmLimitFor(a);
const used = pruneRpmHistory(a, now);
out[a.id] = { used, limit, tier: a.tier || 'unknown' };
}
return out;
}
/**
* Ensure an LS instance exists for an account's proxy.
* Used on startup and after adding new accounts so chat requests don't race
* the first-time LS spawn.
*/
export async function ensureLsForAccount(accountId) {
const { ensureLs } = await import('./langserver.js');
const account = accounts.find(a => a.id === accountId);
const proxy = getEffectiveProxy(accountId) || null;
try {
const ls = await ensureLs(proxy);
// Pre-warm the Cascade workspace init so the first real request on this
// LS doesn't pay the 3-roundtrip setup cost. Fire-and-forget โ chat
// requests still await the same Promise if it hasn't finished yet.
if (ls && account?.apiKey) {
const { WindsurfClient } = await import('./client.js');
const client = new WindsurfClient(account.apiKey, ls.port, ls.csrfToken);
client.warmupCascade().catch(e => log.warn(`Cascade warmup failed: ${e.message}`));
}
} catch (e) {
log.error(`Failed to start LS for account ${accountId}: ${e.message}`);
}
}
/**
* Mark an account as rate-limited for a duration (default 5 min).
* When `modelKey` is provided, only that model is blocked on this account โ
* other models remain routable. When omitted, the entire account is blocked
* (legacy behaviour, used by generic 429 responses).
*/
export function markRateLimited(apiKey, durationMs = 5 * 60 * 1000, modelKey = null) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return;
const safeMs = Math.max(1000, Number(durationMs) || 0);
const until = Date.now() + safeMs;
if (modelKey) {
if (!account._modelRateLimits) account._modelRateLimits = {};
account._modelRateLimits[modelKey] = Math.max(account._modelRateLimits[modelKey] || 0, until);
log.warn(`Account ${account.id} (${account.email}) rate-limited on ${modelKey} for ${Math.round(safeMs / 60000)} min`);
} else {
account.rateLimitedUntil = Math.max(account.rateLimitedUntil || 0, until);
log.warn(`Account ${account.id} (${account.email}) rate-limited (all models) for ${Math.round(safeMs / 60000)} min`);
}
}
export function refundReservation(apiKey, timestamp) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return false;
if (!Number.isFinite(timestamp)) return false;
if ((account._inflight || 0) <= 0) return false;
pruneRpmHistory(account, Date.now());
const idx = account._rpmHistory?.lastIndexOf(timestamp) ?? -1;
if (idx === -1) return false;
account._rpmHistory.splice(idx, 1);
return true;
}
/**
* Check if an account is rate-limited for a specific model.
*/
function isRateLimitedForModel(account, modelKey, now) {
// Global rate limit
if (account.rateLimitedUntil && account.rateLimitedUntil > now) return true;
// Per-model rate limit
if (modelKey && account._modelRateLimits) {
const until = account._modelRateLimits[modelKey];
if (until && until > now) return true;
// Clean up expired entries
if (until && until <= now) delete account._modelRateLimits[modelKey];
}
return false;
}
/**
* Report an error for an API key (increment error count, auto-disable).
*/
export function reportError(apiKey) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return;
account.errorCount++;
if (account.errorCount >= 3) {
account.status = 'error';
log.warn(`Account ${account.id} (${account.email}) disabled after ${account.errorCount} errors`);
}
}
/**
* Reset error count for an API key (call on success).
*/
export function reportSuccess(apiKey) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return;
if (account.errorCount > 0) {
account.errorCount = 0;
account.status = 'active';
}
account.internalErrorStreak = 0;
// v2.0.56: any successful chat clears the ban-signal streak โ Windsurf's
// "Authentication failed" can fire transiently during deploys, so we
// only mark banned when the streak isn't broken by a real success.
if (account._banSignalCount) {
account._banSignalCount = 0;
account._banSignalAt = 0;
}
}
/**
* Report an upstream "internal error occurred (error ID: ...)" from Windsurf.
* These are account-specific backend errors โ a given key will keep hitting
* them until we stop using it. Quarantine the key for 5 minutes after 2
* consecutive hits so we stop burning user-visible retries on a dead key.
*/
export function reportInternalError(apiKey) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return;
account.internalErrorStreak = (account.internalErrorStreak || 0) + 1;
if (account.internalErrorStreak >= 2) {
account.rateLimitedUntil = Date.now() + 5 * 60 * 1000;
log.warn(`Account ${account.id} (${account.email}) quarantined 5min after ${account.internalErrorStreak} consecutive upstream internal errors`);
}
}
// v2.0.56 (windsurf-assistant-pub inspiration): suspect-ban detection.
// Match upstream error text against the patterns Windsurf actually
// returns when an account is suspended / disabled / blocked at the
// account level (NOT model-level rate limits, which are handled by
// markRateLimited above). When a ban signal lands twice on the same
// account within 30 min we promote it to permanent disable so the pool
// doesn't keep handing out a known-dead key.
// Patterns ride a bounded `[^.\n]{0,40}` gap so "Your account has been
// suspended" matches without enabling .* / .+ ReDoS surfaces. Order is
// most-specific-first.
const BAN_PATTERNS = [
// "account_suspended" / "account-disabled" / "user_banned" โ common API
// error codes returned as snake/kebab strings. Match the full token.
/\b(?:account|user|email|api[_-]?key)[_-](?:suspend(?:ed)?|disabled|banned|revoked|terminated|deactivated|locked|closed)\b/i,
// "Your account has been suspended" / "Account banned by upstream" /
// "User suspended due to abuse" โ a noun + bounded gap + verb form.
/\baccount\b[^.\n]{0,40}\b(?:suspend(?:ed)?|disabled|banned|terminated|deactivated|locked|closed)\b/i,
/\b(?:user|email)\b[^.\n]{0,40}\b(?:suspend(?:ed)?|disabled|banned|terminated)\b/i,
/\bsubscription\b[^.\n]{0,40}\b(?:cancel(?:led|ed)?|terminated|expired|invalid)\b/i,
/\bauthentication\b[^.\n]{0,40}\b(?:failed|invalid|denied|revoked)\b/i,
/\binvalid\s+api[_\s-]?key\b/i,
/\bapi[_\s-]?key\b[^.\n]{0,40}\b(?:revoked|disabled|expired|invalid)\b/i,
/\bunauthorized\b[^.\n]{0,40}\b(?:account|key|credential|exist)\b/i,
// CN forms โ windsurf zh error pages occasionally surface these
/่ดฆๅท(?:ๅทฒ)?(?:ๅ็จ|ๅฐ็ฆ|็ฆ็จ|ๅป็ป|ๆณจ้|ๅ
ณ้ญ)/,
/(?:็จๆท|้ฎ็ฎฑ)(?:ๅทฒ)?(?:ๅ็จ|ๅฐ็ฆ|็ฆ็จ)/,
/่ฎข้
(?:ๅทฒ)?(?:ๅๆถ|่ฟๆ|ๅคฑๆ)/,
];
export function looksLikeBanSignal(message) {
if (typeof message !== 'string' || !message) return false;
return BAN_PATTERNS.some(p => p.test(message));
}
/**
* Report a ban-shaped upstream error. Two hits within `windowMs` (default
* 30 min) flip the account to status='banned' and clear in-flight reuse
* so it stops getting selected. Single hits are logged but not acted on
* โ Windsurf occasionally returns "Authentication failed" transiently
* during deploys.
*/
export function reportBanSignal(apiKey, message, { windowMs = 30 * 60 * 1000 } = {}) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return false;
const now = Date.now();
const last = account._banSignalAt || 0;
account._banSignalAt = now;
account._banSignalCount = (now - last < windowMs) ? (account._banSignalCount || 0) + 1 : 1;
account._banSignalLastMessage = String(message || '').slice(0, 240);
log.warn(`Account ${account.id} (${account.email}) emitted ban-shaped error #${account._banSignalCount}: "${account._banSignalLastMessage}"`);
if (account._banSignalCount >= 2) {
account.status = 'banned';
account.bannedAt = now;
account.bannedReason = account._banSignalLastMessage;
saveAccounts();
log.error(`Account ${account.id} (${account.email}) marked BANNED after ${account._banSignalCount} ban-shaped errors`);
// Drop any cascade-pool entries owned by this key.
import('./conversation-pool.js').then(m => m.invalidateFor({ apiKey })).catch(() => {});
return true;
}
return false;
}
/**
* Reset the ban-signal streak (e.g. after a successful chat). Also clears
* status='banned' iff the operator explicitly resets the account.
*/
export function clearBanSignals(apiKey) {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return;
account._banSignalAt = 0;
account._banSignalCount = 0;
}
// โโโ Status โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/**
* Check if every eligible account is currently rate-limited for a given model.
* Returns { allLimited, retryAfterMs } โ callers can use retryAfterMs to set
* a Retry-After header for 429 responses.
*/
export function isAllRateLimited(modelKey) {
const now = Date.now();
let soonestExpiry = Infinity;
let anyEligible = false;
for (const a of accounts) {
if (a.status !== 'active') continue;
if (modelKey && !isModelAllowedForAccount(a, modelKey)) continue;
anyEligible = true;
if (!isRateLimitedForModel(a, modelKey, now)) return { allLimited: false };
// Track the soonest expiry across both global and per-model limits
if (a.rateLimitedUntil && a.rateLimitedUntil > now) {
soonestExpiry = Math.min(soonestExpiry, a.rateLimitedUntil);
}
if (modelKey && a._modelRateLimits?.[modelKey] > now) {
soonestExpiry = Math.min(soonestExpiry, a._modelRateLimits[modelKey]);
}
}
if (!anyEligible) return { allLimited: false };
const retryAfterMs = soonestExpiry === Infinity ? 60000 : Math.max(1000, soonestExpiry - now);
return { allLimited: true, retryAfterMs };
}
export function isAllTemporarilyUnavailable(modelKey) {
const now = Date.now();
let anyEligible = false;
let soonestExpiry = Infinity;
for (const a of accounts) {
if (a.status !== 'active') continue;
const limit = rpmLimitFor(a);
if (limit <= 0) continue;
if (modelKey && !isModelAllowedForAccount(a, modelKey)) continue;
anyEligible = true;
if (a.rateLimitedUntil && a.rateLimitedUntil > now) {
soonestExpiry = Math.min(soonestExpiry, a.rateLimitedUntil);
continue;
}
if (modelKey && a._modelRateLimits) {
const until = a._modelRateLimits[modelKey];
if (until && until > now) {
soonestExpiry = Math.min(soonestExpiry, until);
continue;
}
if (until && until <= now) delete a._modelRateLimits[modelKey];
}
const used = pruneRpmHistory(a, now);
if (used >= limit) {
const oldest = a._rpmHistory?.[0];
// RPM window has a precise expiry โ use it directly. The 30s floor
// only applies when no precise expiry exists (strict-reuse busy
// without per-account rate-limit data).
soonestExpiry = Math.min(
soonestExpiry,
oldest ? oldest + RPM_WINDOW_MS : now + 30_000
);
continue;
}
return { allUnavailable: false, retryAfterMs: null };
}
if (!anyEligible) return { allUnavailable: false, retryAfterMs: null };
const retryAfterMs = soonestExpiry === Infinity ? 30_000 : Math.max(1000, soonestExpiry - now);
return { allUnavailable: true, retryAfterMs };
}
export function isAuthenticated() {
return accounts.some(a => a.status === 'active');
}
export function maskApiKey(key = '') {
const s = String(key || '');
if (!s) return '';
if (s.length <= 12) return `${s.slice(0, 4)}...`;
return `${s.slice(0, 8)}...${s.slice(-4)}`;
}
export function getAccountList() {
const now = Date.now();
return accounts.map(a => {
const rpmLimit = rpmLimitFor(a);
const rpmUsed = pruneRpmHistory(a, now);
return {
id: a.id,
email: a.email,
method: a.method,
status: a.status,
errorCount: a.errorCount,
lastUsed: a.lastUsed ? new Date(a.lastUsed).toISOString() : null,
addedAt: new Date(a.addedAt).toISOString(),
keyPrefix: a.apiKey.slice(0, 8) + '...',
apiKey_masked: maskApiKey(a.apiKey),
tier: a.tier || 'unknown',
capabilities: a.capabilities || {},
lastProbed: a.lastProbed || 0,
rateLimitedUntil: a.rateLimitedUntil || 0,
rateLimited: !!(a.rateLimitedUntil && a.rateLimitedUntil > now),
modelRateLimits: a._modelRateLimits ? Object.fromEntries(
Object.entries(a._modelRateLimits).filter(([, v]) => v > now)
) : {},
rpmUsed,
rpmLimit,
credits: a.credits || null,
blockedModels: a.blockedModels || [],
availableModels: getAvailableModelsForAccount(a),
tierModels: getTierModels(a.tier || 'unknown'),
userStatus: a.userStatus || null,
userStatusLastFetched: a.userStatusLastFetched || 0,
};
});
}
export function getAccountInternal(id) {
return accounts.find(a => a.id === id) || null;
}
/**
* Fetch live credit balance + plan info from server.codeium.com and stash it
* on the account. Used by manual refresh and by the 15-minute background loop.
* Errors are returned in-band so the dashboard can show them without throwing.
*/
export async function refreshCredits(id) {
const account = accounts.find(a => a.id === id);
if (!account) return { ok: false, error: 'Account not found' };
try {
const { getUserStatus } = await import('./windsurf-api.js');
const proxy = getEffectiveProxy(account.id) || null;
const status = await getUserStatus(account.apiKey, proxy);
// Drop the huge raw payload before persisting โ keep it only in memory for
// downstream callers (e.g. model catalog cache) to inspect once.
const { raw, ...persist } = status;
account.credits = persist;
// Tier hint: if the plan info is explicit, prefer it over capability probing.
// Trial / individual accounts also count as pro โ Windsurf returns
// "INDIVIDUAL" / "TRIAL" / similar for paid-tier trials (issue #8 follow-up:
// motto1's 14-day Pro trial was misclassified as free because planName
// wasn't "Pro").
const pn = status.planName || '';
if (/pro|teams|enterprise|trial|individual|premium|paid/i.test(pn)) {
if (account.tier !== 'pro') account.tier = 'pro';
} else if (/free/i.test(pn)) {
if (account.tier === 'unknown') account.tier = 'free';
}
saveAccounts();
// Surface the raw response once so the caller can decide whether to mine
// the bundled model catalog from it.
return { ok: true, credits: persist, raw };
} catch (e) {
const msg = e.message || String(e);
log.warn(`refreshCredits ${id} failed: ${msg}`);
// Stash the error on the account so the dashboard can show "last refresh
// failed" without losing the previously successful snapshot.
if (account.credits) account.credits.lastError = msg;
else account.credits = { lastError: msg, fetchedAt: Date.now() };
return { ok: false, error: msg };
}
}
export async function refreshAllCredits() {
const results = [];
for (const a of accounts) {
if (a.status !== 'active') continue;
const r = await refreshCredits(a.id);
results.push({ id: a.id, email: a.email, ok: r.ok, error: r.error });
}
return results;
}
/**
* Update the capability of an account for a specific model.
* reason: 'success' | 'model_error' | 'rate_limit' | 'transport_error'
*/
export function updateCapability(apiKey, modelKey, ok, reason = '') {
const account = accounts.find(a => a.apiKey === apiKey);
if (!account) return;
if (!account.capabilities) account.capabilities = {};
// Don't overwrite a confirmed failure with a transient error
if (reason === 'transport_error') return;
// rate_limit is temporary โ don't mark as permanently failed
if (!ok && reason === 'rate_limit') return;
account.capabilities[modelKey] = {
ok,
lastCheck: Date.now(),
reason,
};
if (ok && (account.tier === 'free' || account.tier === 'unknown')) {
registerDiscoveredFreeModel(modelKey);
}
// Only infer tier when we have no authoritative source. GetUserStatus
// (userStatusLastFetched) and manual override (tierManual) are both
// authoritative; inferTier only looks at canary model capabilities and
// would otherwise demote a Pro/Trial account back to 'free' as soon as
// a non-premium model (e.g. gemini-2.5-flash, gpt-4o-mini) succeeds.
if (!account.tierManual && !account.userStatusLastFetched) {
account.tier = inferTier(account.capabilities);
}
saveAccounts();
}
/**
* Infer subscription tier from which canary models work. Fallback only โ
* probeAccount prefers GetUserStatus which returns the authoritative tier.
*/
function inferTier(caps) {
const works = (m) => caps[m]?.ok === true;
if (works('claude-opus-4.6') || works('claude-sonnet-4.6')) return 'pro';
if (works('gemini-2.5-flash') || works('gpt-4o-mini')) return 'free';
const checked = Object.keys(caps);
if (checked.length > 0 && checked.every(m => caps[m].ok === false)) return 'expired';
return 'unknown';
}
/**
* Fetch authoritative user status from the LS โ account fields.
* Returns the parsed UserStatus object on success, null on failure.
*/
export async function fetchUserStatus(id) {
const account = accounts.find(a => a.id === id);
if (!account) return null;
const { WindsurfClient } = await import('./client.js');
const { ensureLs, getLsFor } = await import('./langserver.js');
const proxy = getEffectiveProxy(account.id) || null;
await ensureLs(proxy);
const ls = getLsFor(proxy);
if (!ls) { log.warn(`No LS for GetUserStatus on ${account.id}`); return null; }
const client = new WindsurfClient(account.apiKey, ls.port, ls.csrfToken);
let status;
try {
status = await client.getUserStatus();
} catch (err) {
log.warn(`GetUserStatus ${account.id} (${account.email}) failed: ${err.message}`);
return null;
}
// Apply to account โ authoritative tier + entitlement snapshot.
const prevTier = account.tier;
account.tier = status.tierName;
account.userStatus = {
teamsTier: status.teamsTier,
pro: status.pro,
planName: status.planName,
email: status.email,
displayName: status.displayName,
teamId: status.teamId,
isTeams: status.isTeams,
isEnterprise: status.isEnterprise,
hasPaidFeatures: status.hasPaidFeatures,
trialEndMs: status.trialEndMs,
promptCreditsUsed: status.userUsedPromptCredits,
flowCreditsUsed: status.userUsedFlowCredits,
monthlyPromptCredits: status.monthlyPromptCredits,
monthlyFlowCredits: status.monthlyFlowCredits,
maxPremiumChatMessages: status.maxPremiumChatMessages,
allowedModels: status.allowedModels,
};
account.userStatusLastFetched = Date.now();
if (status.email && !account.email.includes('@')) account.email = status.email;
// Mark every cascade-allowed enum as capable; every catalog enum NOT in the
// allowlist as not-entitled. Pure-UID models (no enum) are left to the
// canary probe since the server returns allowlists by enum only.
if (status.allowedModels.length > 0) {
if (!account.capabilities) account.capabilities = {};
const allowedEnums = new Set(status.allowedModels.map(m => m.modelEnum).filter(e => e > 0));
for (const [key, info] of Object.entries(MODELS)) {
if (!info.enumValue || info.enumValue <= 0) continue;
if (allowedEnums.has(info.enumValue)) {
account.capabilities[key] = { ok: true, lastCheck: Date.now(), reason: 'user_status' };
} else {
const prev = account.capabilities[key];
if (!prev || prev.reason !== 'success') {
// Respect a previously-validated success (can happen if allowlist is
// cascade-only while the model was reached via legacy endpoint).
account.capabilities[key] = { ok: false, lastCheck: Date.now(), reason: 'not_entitled' };
}
}
}
}
if (prevTier !== account.tier) {
log.info(`Tier change ${account.id} (${account.email}): ${prevTier} โ ${account.tier} (plan="${status.planName}", ${status.allowedModels.length} allowed models)`);
} else {
log.info(`UserStatus ${account.id} (${account.email}): tier=${account.tier} plan="${status.planName}" allowed=${status.allowedModels.length}`);
}
saveAccounts();
return status;
}
// Expanded canary set โ one representative per routing path / provider family.
// Order matters: free-tier models first so tier can be inferred early even if
// later requests rate-limit. modelUid-only entries cover the 4.6 series since
// GetUserStatus's allowlist is enum-keyed.
// Only probe cheap/non-rate-limited models. Claude models burn Trial quota
// fast (2-3 req/hr) โ GetUserStatus enum allowlist already covers them.
const PROBE_CANARIES = [
'gemini-2.5-flash',
'gemini-3.0-flash',
];
/**
* Probe an account's tier and model capabilities.
*
* Strategy (2026-04-21):
* 1. GetUserStatus โ authoritative tier + enum-keyed allowlist with credit
* multipliers + trial end time + credit usage. One RPC, no quota burn.
* 2. Canary probe โ fills in capabilities for modelUid-only models (claude
* 4.6 series etc.) which don't appear in the enum allowlist, and serves
* as a fallback if GetUserStatus fails on this LS/account combo.
*/
// Per-account in-flight map. The previous global boolean serialized
// every probe globally, and the dashboard surfaced "skipped" the same
// way as "not found" -> users with N accounts saw N-1 fake "Account not
// found" toasts when they bulk-probed. Now each account has its own
// promise; a duplicate call on the same id returns the in-flight promise
// so the caller awaits the same result without firing a second probe.
const _probeInFlight = new Map();
export async function probeAccount(id) {
const existing = _probeInFlight.get(id);
if (existing) return existing;
const account = accounts.find(a => a.id === id);
if (!account) return null;
const promise = _probeAccountImpl(account).finally(() => {
_probeInFlight.delete(id);
});
_probeInFlight.set(id, promise);
return promise;
}
async function _probeAccountImpl(account) {
try {
// โโ Step 1: authoritative tier via GetUserStatus โโ
const status = await fetchUserStatus(account.id);
const { WindsurfClient } = await import('./client.js');
const { getModelInfo } = await import('./models.js');
const { ensureLs, getLsFor } = await import('./langserver.js');
const proxy = getEffectiveProxy(account.id) || null;
await ensureLs(proxy);
const ls = getLsFor(proxy);
if (!ls) { log.error(`No LS available for account ${account.id}`); return null; }
const port = ls.port;
const csrf = ls.csrfToken;
// โโ Step 2: canary probe, skipping models already classified by GetUserStatus โโ
// When allowlist is available we only need to probe UID-only models (no enum,
// so server can't include them in allowlist) to get their actual status.
const needsProbe = PROBE_CANARIES.filter(key => {
const info = getModelInfo(key);
if (!info) return false;
// If GetUserStatus already gave us a definitive answer, skip.
if (status && info.enumValue > 0) {
const cap = account.capabilities?.[key];
if (cap && cap.reason === 'user_status') return false;
if (cap && cap.reason === 'not_entitled') return false;
}
return true;
});
if (needsProbe.length > 0) {
log.info(`Probing account ${account.id} (${account.email}) across ${needsProbe.length} canary models (GetUserStatus ${status ? 'OK' : 'unavailable'})`);
for (const modelKey of needsProbe) {
const info = getModelInfo(modelKey);
if (!info) continue;
const useCascade = !!info.modelUid;
const client = new WindsurfClient(account.apiKey, port, csrf);
try {
if (useCascade) {
await client.cascadeChat([{ role: 'user', content: 'hi' }], info.enumValue, info.modelUid);
} else {
await client.rawGetChatMessage([{ role: 'user', content: 'hi' }], info.enumValue, info.modelUid);
}
updateCapability(account.apiKey, modelKey, true, 'success');
log.info(` ${modelKey}: OK`);
} catch (err) {
const isRateLimit = /rate limit|rate_limit|too many requests|quota/i.test(err.message);
if (isRateLimit) {
log.info(` ${modelKey}: RATE_LIMITED (skipped)`);
} else {
updateCapability(account.apiKey, modelKey, false, 'model_error');
log.info(` ${modelKey}: FAIL (${err.message.slice(0, 80)})`);
}
}
}
}
// โโ Step 3: dynamic cloud candidate probe (#42) โโ
// Probe models from the live cloud catalog that aren't in PROBE_CANARIES
// and haven't been classified yet. This discovers models available to free
// accounts beyond the hardcoded FREE_TIER_MODELS list.
try {
const allModels = Object.keys(MODELS);
const alreadyProbed = new Set([
...PROBE_CANARIES,
...Object.keys(account.capabilities || {}),
]);
const MAX_CLOUD_PROBES = positiveIntEnv('MAX_CLOUD_PROBES', 10);
const cloudCandidates = allModels.filter(k => {
if (alreadyProbed.has(k)) return false;
const info = getModelInfo(k);
if (!info?.modelUid) return false;
if (info.enumValue > 0 && status) return false;
if ((info.credit || 1) > 2) return false;
return true;
}).slice(0, MAX_CLOUD_PROBES);
if (cloudCandidates.length > 0) {
log.info(`Dynamic cloud probe: ${cloudCandidates.length} candidates for ${account.email} (cap=${MAX_CLOUD_PROBES})`);
let rateLimited = false;
for (const modelKey of cloudCandidates) {
if (rateLimited) break;
const info = getModelInfo(modelKey);
if (!info) continue;
const client = new WindsurfClient(account.apiKey, port, csrf);
try {
await client.cascadeChat([{ role: 'user', content: 'hi' }], info.enumValue, info.modelUid);
updateCapability(account.apiKey, modelKey, true, 'cloud_probe');
log.info(` cloud ${modelKey}: OK`);
} catch (err) {
if (/rate limit|rate_limit|too many requests|quota/i.test(err.message)) {
log.info(` cloud ${modelKey}: RATE_LIMITED โ stopping probe`);
rateLimited = true;
} else {
updateCapability(account.apiKey, modelKey, false, 'cloud_probe');
log.debug(` cloud ${modelKey}: FAIL`);
}
}
}
}
} catch (e) {
log.warn(`Dynamic cloud probe failed: ${e.message}`);
}
// If GetUserStatus succeeded, its tier decision wins over the inferred one
// (updateCapability rewrites tier via inferTier, so restore it afterwards).
if (status) account.tier = status.tierName;
account.lastProbed = Date.now();
saveAccounts();
log.info(`Probe complete for ${account.id}: tier=${account.tier}${status ? ` plan="${status.planName}"` : ''}`);
return { tier: account.tier, capabilities: account.capabilities };
} catch (err) {
log.error(`Probe failed for ${account.id}: ${err.message}`);
throw err;
}
}
export function getAccountCount() {
return {
total: accounts.length,
active: accounts.filter(a => a.status === 'active').length,
error: accounts.filter(a => a.status === 'error').length,
};
}
// โโโ Incoming request API key validation โโโโโโโโโโโโโโโโโโโ
export function configureBindHost(host) {
_bindHost = String(host ?? '');
}
export function isLocalBindHost(bindHost = _bindHost) {
const host = String(bindHost || '').trim().toLowerCase().replace(/^\[|\]$/g, '');
if (host === 'localhost' || host === '127.0.0.1' || host === '::1') return true;
// IPv4-mapped IPv6 loopback (::ffff:127.0.0.1 etc.) is also local.
if (host.startsWith('::ffff:127.') || host === '::ffff:7f00:1') return true;
return false;
}
export function safeEqualString(a, b) {
// Hash-then-compare so the early-return on different lengths can't be
// measured by a wall-clock attacker. SHA-256 of any input is 32 bytes,
// so timingSafeEqual always sees equal-length buffers and runs in
// constant time. The trailing `.length` check restores correctness for
// the rare case where two distinct inputs collide on the digest (which
// would still need a full preimage attack to construct).
const sa = String(a);
const sb = String(b);
const left = createHash('sha256').update(sa, 'utf8').digest();
const right = createHash('sha256').update(sb, 'utf8').digest();
return timingSafeEqual(left, right) && sa.length === sb.length;
}
// v2.0.56: hook lets runtime-config (or future credential sources) supply
// a live API key. validateApiKey() falls through to config.apiKey when the
// hook is unset, which is the case during cold boot before runtime-config
// finishes loading. Set via setApiKeyResolver() from the credential module
// once it has parsed runtime-config.json.
let _apiKeyResolver = null;
export function setApiKeyResolver(fn) {
_apiKeyResolver = typeof fn === 'function' ? fn : null;
}
export function validateApiKey(key) {
let effectiveKey = config.apiKey;
if (_apiKeyResolver) {
try {
const v = _apiKeyResolver();
if (typeof v === 'string') effectiveKey = v;
} catch { /* keep env fallback */ }
}
if (!effectiveKey) return isLocalBindHost(_bindHost);
if (!key) return false;
return safeEqualString(key, effectiveKey);
}
// โโโ Brute-force lockout (v2.0.56, CLIProxyAPI-style) โโโโโโโโโโโโโโโโโ
// Track failed dashboard auth attempts per client IP. After
// `LOCKOUT_THRESHOLD` failures lock the IP for `LOCKOUT_DURATION_MS`.
// Idle entries get pruned every `LOCKOUT_CLEANUP_MS`.
//
// We export the helpers so the dashboard middleware can drive them and
// tests can probe behaviour. Numbers mirror CLIProxyAPI's defaults
// (5 failures / 30 min ban / 2h idle TTL / 1h cleanup interval).
const LOCKOUT_THRESHOLD = 5;
const LOCKOUT_DURATION_MS = 30 * 60 * 1000;
const LOCKOUT_IDLE_TTL_MS = 2 * 60 * 60 * 1000;
const LOCKOUT_CLEANUP_MS = 60 * 60 * 1000;
const _lockoutAttempts = new Map();
function _now() { return Date.now(); }
export function _resetLockoutForTests() { _lockoutAttempts.clear(); }
export function getLockoutState(ip) {
if (!ip) return { count: 0, blockedUntil: 0 };
const e = _lockoutAttempts.get(ip);
if (!e) return { count: 0, blockedUntil: 0 };
return { count: e.count, blockedUntil: e.blockedUntil };
}
/**
* Returns `{ blocked: bool, retryAfterMs: number, count: number }`. Call
* BEFORE checking the password โ if blocked, reject with 429 / 403 and
* skip the comparison entirely so the lockout stays effective even when
* the comparison itself is fast.
*/
export function checkLockout(ip) {
if (!ip) return { blocked: false, retryAfterMs: 0, count: 0 };
const e = _lockoutAttempts.get(ip);
if (!e) return { blocked: false, retryAfterMs: 0, count: 0 };
const now = _now();
if (e.blockedUntil > now) {
return { blocked: true, retryAfterMs: e.blockedUntil - now, count: e.count };
}
// Ban expired โ reset to give the caller a fresh window. Don't delete
// the record; failedAuthAttempt() may add to it again immediately.
if (e.blockedUntil > 0 && e.blockedUntil <= now) {
e.count = 0;
e.blockedUntil = 0;
}
return { blocked: false, retryAfterMs: 0, count: e.count };
}
export function failedAuthAttempt(ip) {
if (!ip) return { blocked: false, retryAfterMs: 0, count: 0 };
const now = _now();
let e = _lockoutAttempts.get(ip);
if (!e) {
e = { count: 0, blockedUntil: 0, lastActivity: now };
_lockoutAttempts.set(ip, e);
}
e.count += 1;
e.lastActivity = now;
if (e.count >= LOCKOUT_THRESHOLD) {
e.blockedUntil = now + LOCKOUT_DURATION_MS;
e.count = 0; // reset counter so the next post-ban failure starts fresh
}
return {
blocked: e.blockedUntil > now,
retryAfterMs: e.blockedUntil > now ? e.blockedUntil - now : 0,
count: e.count,
};
}
export function successfulAuthAttempt(ip) {
if (!ip) return;
_lockoutAttempts.delete(ip);
}
function _purgeLockouts() {
const now = _now();
for (const [ip, e] of _lockoutAttempts) {
// Keep active bans regardless of idle time.
if (e.blockedUntil > now) continue;
if (now - (e.lastActivity || 0) > LOCKOUT_IDLE_TTL_MS) {
_lockoutAttempts.delete(ip);
}
}
}
setInterval(_purgeLockouts, LOCKOUT_CLEANUP_MS).unref?.();
export function shouldEmitNoAuthWarning(bindHost, hasKey) {
if (hasKey) return false;
if (isLocalBindHost(bindHost)) return false;
const host = String(bindHost || '').trim().toLowerCase();
if (host === '0.0.0.0' || host === '::') return true;
return true;
}
export function emitNoAuthWarnings(bindHost = '0.0.0.0') {
const apiOpen = shouldEmitNoAuthWarning(bindHost, !!config.apiKey);
// v2.0.55 (audit H1): the dashboard write surface no longer trusts
// config.apiKey as a fallback admin password on non-local binds, so
// the warning fires whenever DASHBOARD_PASSWORD is missing in public
// mode โ even if API_KEY is set. Without the password the dashboard
// fails closed (better than the old privilege-escalation), but the
// operator still needs the warning so they explicitly configure one.
const dashboardOpen = shouldEmitNoAuthWarning(bindHost, !!config.dashboardPassword);
if (!apiOpen && !dashboardOpen) return;
const lines = [
'+------------------------------------------------------------------+',
'| WARNING: AUTHENTICATION IS NOT CONFIGURED |',
'| ่ญฆๅ๏ผๅฝๅๆๅกๆช้
็ฝฎ่ฎฟ้ฎ่ฎค่ฏ |',
'| |',
'| This server is listening beyond localhost. Set API_KEY before |',
'| exposing REST APIs, and set DASHBOARD_PASSWORD for dashboard |',
'| write operations (v2.0.55: API_KEY no longer doubles as the |',
'| dashboard admin password on public binds โ set both). |',
'| ๆๅกๆญฃๅจ้ๆฌๆบๅฐๅ็ๅฌใๅ
ฌ็ฝ/ๅ
็ฝๆด้ฒๅ่ฏท้
็ฝฎ API_KEY๏ผๅนถไธบ |',
'| Dashboard ๅๆฅๅฃ้
็ฝฎ DASHBOARD_PASSWORD๏ผv2.0.55 ่ตทๅ
ฌ็ฝ bind ไธ |',
'| API_KEY ไธๅๅ่ฝไฝไธบ Dashboard ๅฏ็ โ ไธคไธช้ฝๅฟ
้กปๆพๅผ้
็ฝฎ๏ผใ |',
'+------------------------------------------------------------------+',
];
for (const line of lines) log.warn(line);
}
// โโโ Firebase token refresh โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/**
* Refresh Firebase tokens for all accounts that have a stored refreshToken.
* Re-registers with Codeium to get a fresh API key and updates the account.
*/
async function refreshAllFirebaseTokens() {
const { refreshFirebaseToken, reRegisterWithCodeium } = await import('./dashboard/windsurf-login.js');
for (const a of accounts) {
if (a.status !== 'active' || !a.refreshToken) continue;
try {
const proxy = getEffectiveProxy(a.id) || null;
const { idToken, refreshToken: newRefresh } = await refreshFirebaseToken(a.refreshToken, proxy);
a.refreshToken = newRefresh;
// Re-register to get a fresh API key (may be the same key)
const { apiKey } = await reRegisterWithCodeium(idToken, proxy);
if (apiKey && apiKey !== a.apiKey) {
log.info(`Firebase refresh: ${a.email} got new API key`);
a.apiKey = apiKey;
}
saveAccounts();
} catch (e) {
log.warn(`Firebase refresh ${a.email} failed: ${e.message}`);
}
}
}
// โโโ Init from .env โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
export async function initAuth() {
// Load persisted accounts first
loadAccounts();
// Safety net: auto-reset stale inflight counters (fixes #165)
startInflightCleanup();
const promises = [];
// Load API keys from env (comma-separated)
if (config.codeiumApiKey) {
for (const key of config.codeiumApiKey.split(',').map(k => k.trim()).filter(Boolean)) {
addAccountByKey(key);
}
}
// Load auth tokens from env (comma-separated)
if (config.codeiumAuthToken) {
for (const token of config.codeiumAuthToken.split(',').map(t => t.trim()).filter(Boolean)) {
promises.push(
addAccountByToken(token).catch(err => log.error(`Token auth failed: ${err.message}`))
);
}
}
// Note: email/password login removed (Firebase API key not valid for direct login)
// Use token-based auth instead
if (promises.length > 0) await Promise.allSettled(promises);
// Periodic re-probe so tier/capability info doesn't drift as quotas reset.
const REPROBE_INTERVAL = 6 * 60 * 60 * 1000;
setInterval(async () => {
for (const a of accounts) {
if (a.status !== 'active') continue;
try { await probeAccount(a.id); }
catch (e) { log.warn(`Scheduled probe ${a.id} failed: ${e.message}`); }
}
}, REPROBE_INTERVAL).unref?.();
// Periodic credit refresh (every 15 min). First run is fire-and-forget so
// startup isn't blocked by cloud round-trips.
const CREDIT_INTERVAL = 15 * 60 * 1000;
refreshAllCredits().catch(e => log.warn(`Initial credit refresh: ${e.message}`));
setInterval(() => {
refreshAllCredits().catch(e => log.warn(`Scheduled credit refresh: ${e.message}`));
}, CREDIT_INTERVAL).unref?.();
// Fetch live model catalog from cloud and merge into hardcoded catalog.
// Fire-and-forget โ the hardcoded catalog is sufficient until this completes.
fetchAndMergeModelCatalog().catch(e => log.warn(`Model catalog fetch: ${e.message}`));
// Periodic Firebase token refresh (every 50 min). Firebase ID tokens expire
// after 60 min; refreshing at 50 keeps a comfortable margin.
const TOKEN_REFRESH_INTERVAL = 50 * 60 * 1000;
refreshAllFirebaseTokens().catch(e => log.warn(`Initial token refresh: ${e.message}`));
setInterval(() => {
refreshAllFirebaseTokens().catch(e => log.warn(`Scheduled token refresh: ${e.message}`));
}, TOKEN_REFRESH_INTERVAL).unref?.();
// Warm up an LS instance for each account's configured proxy so the first
// chat request doesn't pay the spawn cost.
const { ensureLs } = await import('./langserver.js');
const uniqueProxies = new Map();
for (const a of accounts) {
const p = getEffectiveProxy(a.id);
const k = p ? `${p.host}:${p.port}` : 'default';
if (!uniqueProxies.has(k)) uniqueProxies.set(k, p || null);
}
for (const p of uniqueProxies.values()) {
try { await ensureLs(p); }
catch (e) { log.warn(`LS warmup failed: ${e.message}`); }
}
const counts = getAccountCount();
if (counts.total > 0) {
log.info(`Auth pool: ${counts.active} active, ${counts.error} error, ${counts.total} total`);
} else {
log.warn('No accounts configured. Add via POST /auth/login');
}
}
|