Spaces:
Sleeping
Sleeping
File size: 27,035 Bytes
f6266b9 | 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 | /**
* Dashboard API route handlers.
* All routes are under /dashboard/api/*.
*/
import { config, log } from '../config.js';
import {
getAccountList, getAccountCount, addAccountByKey, addAccountByToken,
removeAccount, setAccountStatus, resetAccountErrors, updateAccountLabel,
isAuthenticated, probeAccount, ensureLsForAccount,
refreshCredits, refreshAllCredits,
setAccountBlockedModels, setAccountTokens, setAccountTier,
} from '../auth.js';
import { restartLsForProxy } from '../langserver.js';
import { getLsStatus, stopLanguageServer, startLanguageServer, isLanguageServerRunning } from '../langserver.js';
import { getStats, resetStats, recordRequest } from './stats.js';
import { cacheStats, cacheClear } from '../cache.js';
import { getExperimental, setExperimental, getIdentityPrompts, setIdentityPrompts, resetIdentityPrompt, DEFAULT_IDENTITY_PROMPTS } from '../runtime-config.js';
import { poolStats as convPoolStats, poolClear as convPoolClear } from '../conversation-pool.js';
import { getLogs, subscribeToLogs, unsubscribeFromLogs } from './logger.js';
import { getProxyConfig, setGlobalProxy, setAccountProxy, removeProxy, getEffectiveProxy } from './proxy-config.js';
import { MODELS, MODEL_TIER_ACCESS as _TIER_TABLE, getTierModels as _getTierModels } from '../models.js';
import { windsurfLogin, refreshFirebaseToken, reRegisterWithCodeium } from './windsurf-login.js';
import { getModelAccessConfig, setModelAccessMode, setModelAccessList, addModelToList, removeModelFromList } from './model-access.js';
import { checkMessageRateLimit } from '../windsurf-api.js';
function json(res, status, body) {
const data = JSON.stringify(body);
res.writeHead(status, {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, PUT, PATCH, DELETE, OPTIONS',
'Access-Control-Allow-Headers': 'Content-Type, X-Dashboard-Password',
});
res.end(data);
}
function checkAuth(req) {
// Header is preferred (set by fetch). EventSource can't set custom headers,
// so /logs/stream etc. also accept ?pwd=... as fallback.
let pw = req.headers['x-dashboard-password'] || '';
if (!pw) {
try {
const qs = new URL(req.url, 'http://x').searchParams;
pw = qs.get('pwd') || '';
} catch {}
}
if (config.dashboardPassword) return pw === config.dashboardPassword;
if (config.apiKey) return pw === config.apiKey;
return true; // No password and no API key = open access
}
/**
* Handle all /dashboard/api/* requests.
*/
export async function handleDashboardApi(method, subpath, body, req, res) {
if (method === 'OPTIONS') return json(res, 204, '');
// Auth check (except for auth verification endpoint)
if (subpath !== '/auth' && !checkAuth(req)) {
return json(res, 401, { error: 'Unauthorized. Set X-Dashboard-Password header.' });
}
// โโโ Auth โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/auth') {
const needsAuth = !!(config.dashboardPassword || config.apiKey);
if (!needsAuth) return json(res, 200, { required: false });
return json(res, 200, { required: true, valid: checkAuth(req) });
}
// โโโ Overview โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/overview' && method === 'GET') {
const stats = getStats();
return json(res, 200, {
uptime: process.uptime(),
startedAt: stats.startedAt,
accounts: getAccountCount(),
authenticated: isAuthenticated(),
langServer: getLsStatus(),
totalRequests: stats.totalRequests,
successCount: stats.successCount,
errorCount: stats.errorCount,
successRate: stats.totalRequests > 0
? ((stats.successCount / stats.totalRequests) * 100).toFixed(1)
: '0.0',
cache: cacheStats(),
});
}
// โโโ Experimental features โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/experimental' && method === 'GET') {
return json(res, 200, { flags: getExperimental(), conversationPool: convPoolStats() });
}
if (subpath === '/experimental' && method === 'PUT') {
const flags = setExperimental(body || {});
// Dropping the toggle should also drop any live entries so nothing
// resumes against a disabled feature on the next request.
if (!flags.cascadeConversationReuse) convPoolClear();
return json(res, 200, { success: true, flags });
}
if (subpath === '/experimental/conversation-pool' && method === 'DELETE') {
const n = convPoolClear();
return json(res, 200, { success: true, cleared: n });
}
// โโโ Identity prompts (per-provider editable templates) โ
if (subpath === '/identity-prompts' && method === 'GET') {
return json(res, 200, {
prompts: getIdentityPrompts(),
defaults: DEFAULT_IDENTITY_PROMPTS,
});
}
if (subpath === '/identity-prompts' && method === 'PUT') {
const prompts = setIdentityPrompts(body || {});
return json(res, 200, { success: true, prompts });
}
if (subpath.match(/^\/identity-prompts\/[^/]+$/) && method === 'DELETE') {
const provider = subpath.split('/').pop();
const prompts = resetIdentityPrompt(provider);
return json(res, 200, { success: true, prompts });
}
// โโโ Proxy test โ try an HTTP CONNECT through the given proxy โโ
if (subpath === '/test-proxy' && method === 'POST') {
const { host, port, username, password, type = 'http' } = body || {};
if (!host || !port) return json(res, 400, { ok: false, error: '็ผบๅฐ host ๆ port' });
const startTime = Date.now();
try {
const result = await testProxy({ host, port: Number(port), username, password, type });
return json(res, 200, { ok: true, ...result, latencyMs: Date.now() - startTime });
} catch (err) {
return json(res, 200, { ok: false, error: err.message, latencyMs: Date.now() - startTime });
}
}
// โโโ Self-update: pull latest code + restart PM2 โโโโโโ
if (subpath === '/self-update/check' && method === 'GET') {
try {
const info = await gitStatus();
return json(res, 200, { ok: true, ...info });
} catch (err) {
return json(res, 200, { ok: false, error: err.message });
}
}
if (subpath === '/self-update' && method === 'POST') {
try {
const before = await gitStatus();
// Guard: working tree must be clean (ignoring untracked files like
// accounts.json, stats.json, runtime-config.json which live in the
// repo root but aren't checked in). If the tracked files were edited
// manually (or pushed via SFTP without a corresponding commit),
// `git pull --ff-only` would refuse โ surface a friendly error
// instead of a raw git message.
const dirty = (await runShell('git status --porcelain -uno')).trim();
if (dirty) {
const allowForce = !!(body && body.forceReset);
if (!allowForce) {
return json(res, 200, {
ok: false,
dirty: true,
error: 'ๅทฅไฝๅบๆๆชๆไบค็ไฟฎๆน๏ผSFTP ้จ็ฝฒๆๆๅจๆน่ฟไปฃ็ ๏ผใ็กฎๅฎ่ฆ่ฆ็ๆฌๅฐไฟฎๆน็จ่ฟ็จๆๆฐ็ๆฌๅ๏ผ',
dirtyFiles: dirty.split('\n').slice(0, 20),
});
}
await runShell(`git fetch origin ${before.branch || 'master'}`);
await runShell(`git reset --hard origin/${before.branch || 'master'}`);
}
const pullCmd = `git pull origin ${before.branch || 'master'} --ff-only 2>&1`;
const pull = dirty ? 'hard-reset applied' : await runShell(pullCmd);
const after = await gitStatus();
const changed = before.commit !== after.commit;
// Schedule process exit so PM2 auto-restarts us. This is far simpler
// and port/env-agnostic compared to spawning update.sh (which hardcodes
// PORT=3003 default). Requires PM2 autorestart: true (the default).
if (changed) {
setTimeout(() => {
log.info('self-update: exiting for PM2 auto-restart');
process.exit(0);
}, 800);
}
return json(res, 200, {
ok: true,
changed,
before: before.commit,
after: after.commit,
pullOutput: pull.trim(),
restarting: changed,
});
} catch (err) {
return json(res, 200, { ok: false, error: err.message });
}
}
// โโโ Cache โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/cache' && method === 'GET') {
return json(res, 200, cacheStats());
}
if (subpath === '/cache' && method === 'DELETE') {
cacheClear();
return json(res, 200, { success: true });
}
// โโโ Accounts โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/accounts' && method === 'GET') {
return json(res, 200, { accounts: getAccountList() });
}
if (subpath === '/accounts' && method === 'POST') {
try {
let account;
if (body.api_key) {
account = addAccountByKey(body.api_key, body.label);
} else if (body.token) {
account = await addAccountByToken(body.token, body.label);
} else {
return json(res, 400, { error: 'Provide api_key or token' });
}
// Fire-and-forget probe so the UI gets tier info shortly after add
probeAccount(account.id).catch(e => log.warn(`Auto-probe failed: ${e.message}`));
return json(res, 200, {
success: true,
account: { id: account.id, email: account.email, method: account.method, status: account.status },
...getAccountCount(),
});
} catch (err) {
return json(res, 400, { error: err.message });
}
}
// POST /accounts/probe-all โ probe every active account
if (subpath === '/accounts/probe-all' && method === 'POST') {
const list = getAccountList().filter(a => a.status === 'active');
const results = [];
for (const a of list) {
try {
const r = await probeAccount(a.id);
results.push({ id: a.id, email: a.email, tier: r?.tier || 'unknown' });
} catch (err) {
results.push({ id: a.id, email: a.email, error: err.message });
}
}
return json(res, 200, { success: true, results });
}
// POST /accounts/:id/probe โ manually trigger capability probe
const accountProbe = subpath.match(/^\/accounts\/([^/]+)\/probe$/);
if (accountProbe && method === 'POST') {
try {
const result = await probeAccount(accountProbe[1]);
if (!result) return json(res, 404, { error: 'Account not found' });
return json(res, 200, { success: true, ...result });
} catch (err) {
return json(res, 500, { error: err.message });
}
}
// POST /accounts/refresh-credits โ refresh every active account's balance
if (subpath === '/accounts/refresh-credits' && method === 'POST') {
const results = await refreshAllCredits();
return json(res, 200, { success: true, results });
}
// POST /accounts/:id/refresh-credits โ single-account refresh
const creditRefresh = subpath.match(/^\/accounts\/([^/]+)\/refresh-credits$/);
if (creditRefresh && method === 'POST') {
const r = await refreshCredits(creditRefresh[1]);
return json(res, r.ok ? 200 : 400, r);
}
// PATCH /accounts/:id
const accountPatch = subpath.match(/^\/accounts\/([^/]+)$/);
if (accountPatch && method === 'PATCH') {
const id = accountPatch[1];
if (body.status) setAccountStatus(id, body.status);
if (body.label) updateAccountLabel(id, body.label);
if (body.resetErrors) resetAccountErrors(id);
if (Array.isArray(body.blockedModels)) setAccountBlockedModels(id, body.blockedModels);
if (body.tier) setAccountTier(id, body.tier);
return json(res, 200, { success: true });
}
// GET /tier-access โ hardcoded FREE/PRO model entitlement tables.
// The dashboard uses this to render the full per-account model grid
// (every row in the tier's list is shown, blocked models are dimmed).
if (subpath === '/tier-access' && method === 'GET') {
return json(res, 200, {
free: _TIER_TABLE.free,
pro: _TIER_TABLE.pro,
unknown: _TIER_TABLE.unknown,
expired: _TIER_TABLE.expired,
allModels: Object.keys(MODELS),
});
}
// DELETE /accounts/:id
const accountDel = subpath.match(/^\/accounts\/([^/]+)$/);
if (accountDel && method === 'DELETE') {
const ok = removeAccount(accountDel[1]);
return json(res, ok ? 200 : 404, { success: ok });
}
// โโโ Stats โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/stats' && method === 'GET') {
return json(res, 200, getStats());
}
if (subpath === '/stats' && method === 'DELETE') {
resetStats();
return json(res, 200, { success: true });
}
// โโโ Logs โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/logs' && method === 'GET') {
const url = new URL(req.url, 'http://localhost');
const since = parseInt(url.searchParams.get('since') || '0', 10);
const level = url.searchParams.get('level') || null;
return json(res, 200, { logs: getLogs(since, level) });
}
if (subpath === '/logs/stream' && method === 'GET') {
req.socket.setKeepAlive(true);
req.setTimeout(0);
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
'Access-Control-Allow-Origin': '*',
'X-Accel-Buffering': 'no',
});
res.write('retry: 3000\n\n');
// Send existing logs first
const existing = getLogs();
for (const entry of existing.slice(-50)) {
res.write(`data: ${JSON.stringify(entry)}\n\n`);
}
const heartbeat = setInterval(() => {
if (!res.writableEnded) res.write(': heartbeat\n\n');
}, 15000);
const cb = (entry) => {
if (!res.writableEnded) res.write(`data: ${JSON.stringify(entry)}\n\n`);
};
subscribeToLogs(cb);
req.on('close', () => {
clearInterval(heartbeat);
unsubscribeFromLogs(cb);
});
return;
}
// โโโ Proxy โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/proxy' && method === 'GET') {
return json(res, 200, getProxyConfig());
}
if (subpath === '/proxy/global' && method === 'PUT') {
setGlobalProxy(body);
return json(res, 200, { success: true, config: getProxyConfig() });
}
if (subpath === '/proxy/global' && method === 'DELETE') {
removeProxy('global');
return json(res, 200, { success: true });
}
const proxyAccount = subpath.match(/^\/proxy\/accounts\/([^/]+)$/);
if (proxyAccount && method === 'PUT') {
setAccountProxy(proxyAccount[1], body);
// Spawn (or adopt) the LS instance for this proxy so chat routes immediately
ensureLsForAccount(proxyAccount[1]).catch(e => log.warn(`LS ensure failed: ${e.message}`));
return json(res, 200, { success: true });
}
if (proxyAccount && method === 'DELETE') {
removeProxy('account', proxyAccount[1]);
return json(res, 200, { success: true });
}
// โโโ Config โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/config' && method === 'GET') {
return json(res, 200, {
port: config.port,
defaultModel: config.defaultModel,
maxTokens: config.maxTokens,
logLevel: config.logLevel,
lsBinaryPath: config.lsBinaryPath,
lsPort: config.lsPort,
codeiumApiUrl: config.codeiumApiUrl,
hasApiKey: !!config.apiKey,
hasDashboardPassword: !!config.dashboardPassword,
});
}
// โโโ Language Server โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/langserver/restart' && method === 'POST') {
if (!body.confirm) {
return json(res, 400, { error: 'Send { confirm: true } to restart language server' });
}
stopLanguageServer();
setTimeout(async () => {
await startLanguageServer({
binaryPath: config.lsBinaryPath,
port: config.lsPort,
apiServerUrl: config.codeiumApiUrl,
});
}, 2000);
return json(res, 200, { success: true, message: 'Restarting language server...' });
}
// โโโ Models list โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/models' && method === 'GET') {
const models = Object.entries(MODELS).map(([id, info]) => ({
id, name: info.name, provider: info.provider,
}));
return json(res, 200, { models });
}
// โโโ Model Access Control โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/model-access' && method === 'GET') {
return json(res, 200, getModelAccessConfig());
}
if (subpath === '/model-access' && method === 'PUT') {
if (body.mode) setModelAccessMode(body.mode);
if (body.list) setModelAccessList(body.list);
return json(res, 200, { success: true, config: getModelAccessConfig() });
}
if (subpath === '/model-access/add' && method === 'POST') {
if (!body.model) return json(res, 400, { error: 'model is required' });
addModelToList(body.model);
return json(res, 200, { success: true, config: getModelAccessConfig() });
}
if (subpath === '/model-access/remove' && method === 'POST') {
if (!body.model) return json(res, 400, { error: 'model is required' });
removeModelFromList(body.model);
return json(res, 200, { success: true, config: getModelAccessConfig() });
}
// โโโ Windsurf Login โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if (subpath === '/windsurf-login' && method === 'POST') {
try {
const { email, password, proxy: loginProxy, autoAdd } = body;
if (!email || !password) return json(res, 400, { error: 'email ๅ password ็บๅฟ
ๅกซ' });
// Use provided proxy, or global proxy
const proxy = loginProxy?.host ? loginProxy : getProxyConfig().global;
const result = await windsurfLogin(email, password, proxy);
// Auto-add to account pool if requested
let account = null;
if (autoAdd !== false) {
account = addAccountByKey(result.apiKey, result.name || email);
// Persist refresh token via the setter so it survives restart and
// the background Firebase-renewal loop can find it.
if (result.refreshToken) {
setAccountTokens(account.id, { refreshToken: result.refreshToken, idToken: result.idToken });
}
// Persist the per-account proxy we used for login so chat requests
// also egress through the same IP, then warm up a matching LS.
if (loginProxy?.host) setAccountProxy(account.id, loginProxy);
ensureLsForAccount(account.id)
.then(() => probeAccount(account.id))
.catch(e => log.warn(`Auto-probe failed: ${e.message}`));
}
return json(res, 200, {
success: true,
apiKey: result.apiKey,
name: result.name,
email: result.email,
apiServerUrl: result.apiServerUrl,
account: account ? { id: account.id, email: account.email, status: account.status } : null,
});
} catch (err) {
return json(res, 400, { error: err.message, isAuthFail: !!err.isAuthFail, firebaseCode: err.firebaseCode });
}
}
// โโโ OAuth login (Google / GitHub via Firebase) โโโโโโโโ
// POST /oauth-login โ accepts Firebase idToken from client-side OAuth
if (subpath === '/oauth-login' && method === 'POST') {
try {
const { idToken, refreshToken, email, provider, autoAdd } = body;
if (!idToken) return json(res, 400, { error: '็ผบๅฐ idToken' });
const proxy = getProxyConfig().global;
const { apiKey, name } = await reRegisterWithCodeium(idToken, proxy);
let account = null;
if (autoAdd !== false) {
account = addAccountByKey(apiKey, name || email || provider || 'OAuth');
if (refreshToken) {
setAccountTokens(account.id, { refreshToken, idToken });
}
ensureLsForAccount(account.id)
.then(() => probeAccount(account.id))
.catch(e => log.warn(`OAuth auto-probe failed: ${e.message}`));
}
return json(res, 200, {
success: true,
apiKey,
name,
email: email || '',
account: account ? { id: account.id, email: account.email, status: account.status } : null,
});
} catch (err) {
return json(res, 400, { error: err.message });
}
}
// โโโ Rate Limit Check โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
// POST /accounts/:id/rate-limit โ check capacity for a single account
const rateLimitCheck = subpath.match(/^\/accounts\/([^/]+)\/rate-limit$/);
if (rateLimitCheck && method === 'POST') {
const list = getAccountList();
const acct = list.find(a => a.id === rateLimitCheck[1]);
if (!acct) return json(res, 404, { error: 'Account not found' });
try {
const proxy = getEffectiveProxy(acct.id) || null;
const result = await checkMessageRateLimit(acct.apiKey, proxy);
return json(res, 200, { success: true, account: acct.email, ...result });
} catch (err) {
return json(res, 500, { error: err.message });
}
}
// โโโ Firebase Token Refresh โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
// POST /accounts/:id/refresh-token โ manually refresh Firebase token
const tokenRefresh = subpath.match(/^\/accounts\/([^/]+)\/refresh-token$/);
if (tokenRefresh && method === 'POST') {
const list = getAccountList();
const acct = list.find(a => a.id === tokenRefresh[1]);
if (!acct) return json(res, 404, { error: 'Account not found' });
if (!acct.refreshToken) return json(res, 400, { error: 'Account has no refresh token' });
try {
const proxy = getEffectiveProxy(acct.id) || null;
const { idToken, refreshToken: newRefresh } = await refreshFirebaseToken(acct.refreshToken, proxy);
const { apiKey } = await reRegisterWithCodeium(idToken, proxy);
const keyChanged = apiKey && apiKey !== acct.apiKey;
// Persist the fresh credentials back onto the account. Without this, the
// in-memory apiKey stays on the now-stale value until the next server
// restart โ every subsequent request from this account will fail auth.
setAccountTokens(acct.id, { apiKey: apiKey || acct.apiKey, refreshToken: newRefresh || acct.refreshToken, idToken });
return json(res, 200, { success: true, keyChanged, email: acct.email });
} catch (err) {
return json(res, 400, { error: err.message });
}
}
json(res, 404, { error: `Dashboard API: ${method} ${subpath} not found` });
}
// โโโ Proxy connectivity test โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
// HTTP CONNECT tunnel to api.ipify.org:443 โ GET / โ the returned IP is the
// proxy's egress IP. Confirms the proxy works AND that auth is accepted.
// โโโ Self-update helpers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
function runShell(cmd, opts = {}) {
return new Promise((resolve, reject) => {
import('node:child_process').then(({ exec }) => {
exec(cmd, { timeout: 30_000, maxBuffer: 1024 * 1024, ...opts }, (err, stdout, stderr) => {
if (err) return reject(new Error((stderr || err.message).toString().slice(0, 500)));
resolve(stdout.toString());
});
}).catch(reject);
});
}
async function gitStatus() {
const commit = (await runShell('git rev-parse HEAD')).trim();
const branch = (await runShell('git rev-parse --abbrev-ref HEAD')).trim();
let remote = '';
try {
await runShell('git fetch --quiet origin');
remote = (await runShell(`git rev-parse origin/${branch}`)).trim();
} catch {}
const localMsg = (await runShell('git log -1 --pretty=format:%s')).trim();
const behind = remote && remote !== commit;
const remoteMsg = behind ? (await runShell(`git log -1 --pretty=format:%s ${remote}`).catch(() => '')).trim() : '';
return {
commit: commit.slice(0, 7),
commitFull: commit,
branch,
localMessage: localMsg,
remoteCommit: remote ? remote.slice(0, 7) : '',
remoteMessage: remoteMsg,
behind,
};
}
async function testProxy({ host, port, username, password, type }) {
const http = await import('node:http');
const tls = await import('node:tls');
return new Promise((resolve, reject) => {
const targetHost = 'api.ipify.org';
const targetPort = 443;
const authHeader = username
? { 'Proxy-Authorization': 'Basic ' + Buffer.from(`${username}:${password || ''}`).toString('base64') }
: {};
const req = http.request({
host,
port,
method: 'CONNECT',
path: `${targetHost}:${targetPort}`,
headers: { Host: `${targetHost}:${targetPort}`, ...authHeader },
timeout: 10000,
});
req.on('connect', (res, socket) => {
if (res.statusCode !== 200) {
socket.destroy();
return reject(new Error(`ไปฃ็่ฟๅ HTTP ${res.statusCode}`));
}
// Do a quick TLS handshake + GET to verify the tunnel actually works
const tlsSock = tls.connect({ socket, servername: targetHost, rejectUnauthorized: false }, () => {
tlsSock.write(`GET / HTTP/1.1\r\nHost: ${targetHost}\r\nConnection: close\r\nUser-Agent: WindsurfAPI/ProxyTest\r\n\r\n`);
});
const chunks = [];
tlsSock.on('data', c => chunks.push(c));
tlsSock.on('end', () => {
const body = Buffer.concat(chunks).toString('utf-8');
const match = body.match(/\r\n\r\n([^\r\n]+)/);
const ip = match ? match[1].trim() : '';
tlsSock.destroy();
if (!ip || !/^\d+\.\d+\.\d+\.\d+$/.test(ip)) {
return reject(new Error('TLS ้ง้ๅปบ็ซไฝ่ฟๅๅ
ๅฎนๅผๅธธ'));
}
resolve({ egressIp: ip, type });
});
tlsSock.on('error', (err) => reject(new Error(`TLS ๅคฑ่ดฅ: ${err.message}`)));
});
req.on('error', (err) => reject(new Error(`่ฟๆฅๅคฑ่ดฅ: ${err.message}`)));
req.on('timeout', () => { req.destroy(); reject(new Error('่ถ
ๆถ๏ผ10s๏ผ')); });
req.end();
});
}
|