mirror of
https://github.com/siteboon/claudecodeui.git
synced 2025-12-08 17:59:37 +00:00
180 lines
4.0 KiB
JavaScript
180 lines
4.0 KiB
JavaScript
import express from 'express';
|
|
import { spawn } from 'child_process';
|
|
import fs from 'fs/promises';
|
|
import path from 'path';
|
|
import os from 'os';
|
|
|
|
const router = express.Router();
|
|
|
|
router.get('/claude/status', async (req, res) => {
|
|
try {
|
|
const credentialsResult = await checkClaudeCredentials();
|
|
|
|
if (credentialsResult.authenticated) {
|
|
return res.json({
|
|
authenticated: true,
|
|
email: credentialsResult.email || 'Authenticated',
|
|
method: 'credentials_file'
|
|
});
|
|
}
|
|
|
|
return res.json({
|
|
authenticated: false,
|
|
email: null,
|
|
error: credentialsResult.error || 'Not authenticated'
|
|
});
|
|
|
|
} catch (error) {
|
|
console.error('Error checking Claude auth status:', error);
|
|
res.status(500).json({
|
|
authenticated: false,
|
|
email: null,
|
|
error: error.message
|
|
});
|
|
}
|
|
});
|
|
|
|
router.get('/cursor/status', async (req, res) => {
|
|
try {
|
|
const result = await checkCursorStatus();
|
|
|
|
res.json({
|
|
authenticated: result.authenticated,
|
|
email: result.email,
|
|
error: result.error
|
|
});
|
|
|
|
} catch (error) {
|
|
console.error('Error checking Cursor auth status:', error);
|
|
res.status(500).json({
|
|
authenticated: false,
|
|
email: null,
|
|
error: error.message
|
|
});
|
|
}
|
|
});
|
|
|
|
async function checkClaudeCredentials() {
|
|
try {
|
|
const credPath = path.join(os.homedir(), '.claude', '.credentials.json');
|
|
const content = await fs.readFile(credPath, 'utf8');
|
|
const creds = JSON.parse(content);
|
|
|
|
if (creds.accessToken) {
|
|
const isExpired = creds.expiresAt && Date.now() >= creds.expiresAt;
|
|
|
|
if (!isExpired) {
|
|
return {
|
|
authenticated: true,
|
|
email: creds.email || creds.user || null
|
|
};
|
|
}
|
|
}
|
|
|
|
return {
|
|
authenticated: false,
|
|
email: null
|
|
};
|
|
} catch (error) {
|
|
return {
|
|
authenticated: false,
|
|
email: null
|
|
};
|
|
}
|
|
}
|
|
|
|
function checkCursorStatus() {
|
|
return new Promise((resolve) => {
|
|
let processCompleted = false;
|
|
|
|
const timeout = setTimeout(() => {
|
|
if (!processCompleted) {
|
|
processCompleted = true;
|
|
if (childProcess) {
|
|
childProcess.kill();
|
|
}
|
|
resolve({
|
|
authenticated: false,
|
|
email: null,
|
|
error: 'Command timeout'
|
|
});
|
|
}
|
|
}, 5000);
|
|
|
|
let childProcess;
|
|
try {
|
|
childProcess = spawn('cursor-agent', ['status']);
|
|
} catch (err) {
|
|
clearTimeout(timeout);
|
|
processCompleted = true;
|
|
resolve({
|
|
authenticated: false,
|
|
email: null,
|
|
error: 'Cursor CLI not found or not installed'
|
|
});
|
|
return;
|
|
}
|
|
|
|
let stdout = '';
|
|
let stderr = '';
|
|
|
|
childProcess.stdout.on('data', (data) => {
|
|
stdout += data.toString();
|
|
});
|
|
|
|
childProcess.stderr.on('data', (data) => {
|
|
stderr += data.toString();
|
|
});
|
|
|
|
childProcess.on('close', (code) => {
|
|
if (processCompleted) return;
|
|
processCompleted = true;
|
|
clearTimeout(timeout);
|
|
|
|
if (code === 0) {
|
|
const emailMatch = stdout.match(/Logged in as ([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})/i);
|
|
|
|
if (emailMatch) {
|
|
resolve({
|
|
authenticated: true,
|
|
email: emailMatch[1],
|
|
output: stdout
|
|
});
|
|
} else if (stdout.includes('Logged in')) {
|
|
resolve({
|
|
authenticated: true,
|
|
email: 'Logged in',
|
|
output: stdout
|
|
});
|
|
} else {
|
|
resolve({
|
|
authenticated: false,
|
|
email: null,
|
|
error: 'Not logged in'
|
|
});
|
|
}
|
|
} else {
|
|
resolve({
|
|
authenticated: false,
|
|
email: null,
|
|
error: stderr || 'Not logged in'
|
|
});
|
|
}
|
|
});
|
|
|
|
childProcess.on('error', (err) => {
|
|
if (processCompleted) return;
|
|
processCompleted = true;
|
|
clearTimeout(timeout);
|
|
|
|
resolve({
|
|
authenticated: false,
|
|
email: null,
|
|
error: 'Cursor CLI not found or not installed'
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
export default router;
|