File size: 6,920 Bytes
88c4c60 | 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 | import { NextResponse } from "next/server";
import { access, constants } from "fs/promises";
import { homedir } from "os";
import { join } from "path";
import { execFile } from "child_process";
import { promisify } from "util";
const execFileAsync = promisify(execFile);
const ACCESS_TOKEN_KEYS = ["cursorAuth/accessToken", "cursorAuth/token"];
const MACHINE_ID_KEYS = [
"storage.serviceMachineId",
"storage.machineId",
"telemetry.machineId",
];
/** Get candidate db paths by platform */
function getCandidatePaths(platform) {
const home = homedir();
if (platform === "darwin") {
return [
join(
home,
"Library/Application Support/Cursor/User/globalStorage/state.vscdb",
),
join(
home,
"Library/Application Support/Cursor - Insiders/User/globalStorage/state.vscdb",
),
];
}
if (platform === "win32") {
const appData = process.env.APPDATA || join(home, "AppData", "Roaming");
const localAppData =
process.env.LOCALAPPDATA || join(home, "AppData", "Local");
return [
join(appData, "Cursor", "User", "globalStorage", "state.vscdb"),
join(
appData,
"Cursor - Insiders",
"User",
"globalStorage",
"state.vscdb",
),
join(localAppData, "Cursor", "User", "globalStorage", "state.vscdb"),
join(
localAppData,
"Programs",
"Cursor",
"User",
"globalStorage",
"state.vscdb",
),
];
}
return [
join(home, ".config/Cursor/User/globalStorage/state.vscdb"),
join(home, ".config/cursor/User/globalStorage/state.vscdb"),
];
}
const normalize = (value) => {
if (typeof value !== "string") return value;
try {
const parsed = JSON.parse(value);
return typeof parsed === "string" ? parsed : value;
} catch {
return value;
}
};
/**
* Extract tokens via better-sqlite3 (bundled dependency).
* This is the preferred strategy β no external CLI required.
*/
function extractTokensViaBetterSqlite(dbPath) {
// Dynamic require so the route stays importable even if native bindings fail
// eslint-disable-next-line @typescript-eslint/no-require-imports
const Database = require("better-sqlite3");
const db = new Database(dbPath, { readonly: true, fileMustExist: true });
const query = (key) => {
const row = db.prepare("SELECT value FROM itemTable WHERE key=? LIMIT 1").get(key);
return row?.value || null;
};
const normalize = (value) => {
if (typeof value !== "string") return value;
try {
const parsed = JSON.parse(value);
return typeof parsed === "string" ? parsed : value;
} catch {
return value;
}
};
let accessToken = null;
for (const key of ACCESS_TOKEN_KEYS) {
const raw = query(key);
if (raw) { accessToken = normalize(raw); break; }
}
let machineId = null;
for (const key of MACHINE_ID_KEYS) {
const raw = query(key);
if (raw) { machineId = normalize(raw); break; }
}
db.close();
return { accessToken, machineId };
}
/**
* Extract tokens via sqlite3 CLI.
* Fallback when better-sqlite3 native bindings are unavailable.
*/
async function extractTokensViaCLI(dbPath) {
const normalize = (raw) => {
const value = raw.trim();
try {
const parsed = JSON.parse(value);
return typeof parsed === "string" ? parsed : value;
} catch {
return value;
}
};
const query = async (sql) => {
const { stdout } = await execFileAsync("sqlite3", [dbPath, sql], {
timeout: 10000,
});
return stdout.trim();
};
// Try each key in priority order
let accessToken = null;
for (const key of ACCESS_TOKEN_KEYS) {
try {
const raw = await query(
`SELECT value FROM itemTable WHERE key='${key}' LIMIT 1`,
);
if (raw) {
accessToken = normalize(raw);
break;
}
} catch {
/* try next */
}
}
let machineId = null;
for (const key of MACHINE_ID_KEYS) {
try {
const raw = await query(
`SELECT value FROM itemTable WHERE key='${key}' LIMIT 1`,
);
if (raw) {
machineId = normalize(raw);
break;
}
} catch {
/* try next */
}
}
return { accessToken, machineId };
}
/**
* GET /api/oauth/cursor/auto-import
* Auto-detect and extract Cursor tokens from local SQLite database.
* Strategy: better-sqlite3 β sqlite3 CLI β manual fallback
*/
export async function GET() {
try {
const platform = process.platform;
const candidates = getCandidatePaths(platform);
let dbPath = null;
for (const candidate of candidates) {
try {
await access(candidate, constants.R_OK);
dbPath = candidate;
break;
} catch {
// Try next candidate
}
}
if (!dbPath) {
return NextResponse.json({
found: false,
error: `Cursor database not found. Checked locations:\n${candidates.join("\n")}\n\nMake sure Cursor IDE is installed and opened at least once.`,
});
}
// On Linux, verify Cursor is actually installed (not just leftover config)
if (platform === "linux") {
let cursorInstalled = false;
try {
await execFileAsync("which", ["cursor"], { timeout: 5000 });
cursorInstalled = true;
} catch {
try {
const desktopFile = join(homedir(), ".local/share/applications/cursor.desktop");
await access(desktopFile, constants.R_OK);
cursorInstalled = true;
} catch { /* not found */ }
}
if (!cursorInstalled) {
return NextResponse.json({
found: false,
error: "Cursor config files found but Cursor IDE does not appear to be installed. Skipping auto-import.",
});
}
}
// Strategy 1: better-sqlite3 (bundled β no external tools required)
try {
const tokens = extractTokensViaBetterSqlite(dbPath);
if (tokens.accessToken && tokens.machineId) {
return NextResponse.json({
found: true,
accessToken: tokens.accessToken,
machineId: tokens.machineId,
});
}
} catch {
// Native bindings unavailable β try CLI fallback
}
// Strategy 2: sqlite3 CLI
try {
const tokens = await extractTokensViaCLI(dbPath);
if (tokens.accessToken && tokens.machineId) {
return NextResponse.json({
found: true,
accessToken: tokens.accessToken,
machineId: tokens.machineId,
});
}
} catch {
// sqlite3 CLI not available either
}
// Strategy 3: ask user to paste manually
return NextResponse.json({ found: false, windowsManual: true, dbPath });
} catch (error) {
console.log("Cursor auto-import error:", error);
return NextResponse.json(
{ found: false, error: error.message },
{ status: 500 },
);
}
}
|