Add a packaged-client runtime boundary so the shared UI can talk to local, desktop, remote, and VS Code runtimes through the right transport instead of assuming one same-origin web server. Centralize OpenChamber-owned API access behind RuntimeAPIs, runtimeFetch, and runtime URL helpers, while keeping official OpenCode traffic on the SDK path. Support runtime switching, remote host selection, desktop client credentials, and headless connection links for pairing packaged clients with remote OpenChamber servers. Harden the new auth model by moving long-lived client tokens out of browser URLs, introducing short-lived scoped URL tokens for browser-owned transports, restricting URL-token access to explicit readable/realtime routes, and making client-token management session-scoped or self-scoped as appropriate. Update browser-owned assets and preview proxy flows to work with the split runtime model, including authenticated project icons, preview token propagation, CSP-safe preview bridge injection, and preview proxy auth that survives short-lived URL-token expiry. Tighten Electron security boundaries for packaged clients by gating privileged preload state to trusted origins and requiring explicit confirmation before connect deep-links import or switch remote runtimes. Also refresh agent guidance and project skills so future runtime/API, auth, preview, UI, CLI, settings, locale, and drag-to-reorder work follows the new architecture.
200 lines
6.8 KiB
JavaScript
200 lines
6.8 KiB
JavaScript
const STORE_VERSION = 1;
|
|
const TOKEN_PREFIX = 'oc_client_';
|
|
const TOKEN_BYTES = 32;
|
|
const MAX_LABEL_LENGTH = 80;
|
|
const LAST_USED_WRITE_INTERVAL_MS = 60_000;
|
|
|
|
const normalizeLabel = (value) => {
|
|
if (typeof value !== 'string') return 'Remote client';
|
|
const trimmed = value.trim();
|
|
if (!trimmed) return 'Remote client';
|
|
return trimmed.length > MAX_LABEL_LENGTH ? trimmed.slice(0, MAX_LABEL_LENGTH) : trimmed;
|
|
};
|
|
|
|
const normalizeTimestamp = (value) => {
|
|
if (typeof value !== 'string') return null;
|
|
const trimmed = value.trim();
|
|
if (!trimmed) return null;
|
|
const time = Date.parse(trimmed);
|
|
return Number.isFinite(time) ? new Date(time).toISOString() : null;
|
|
};
|
|
|
|
const normalizeOptionalString = (value) => {
|
|
if (typeof value !== 'string') return null;
|
|
const trimmed = value.trim();
|
|
return trimmed.length > 0 ? trimmed : null;
|
|
};
|
|
|
|
const safeJsonParse = (raw) => {
|
|
try {
|
|
return JSON.parse(raw);
|
|
} catch {
|
|
return null;
|
|
}
|
|
};
|
|
|
|
const constantTimeEqual = (left, right, crypto) => {
|
|
if (typeof left !== 'string' || typeof right !== 'string') return false;
|
|
const leftBuffer = Buffer.from(left, 'hex');
|
|
const rightBuffer = Buffer.from(right, 'hex');
|
|
if (leftBuffer.length !== rightBuffer.length) return false;
|
|
return crypto.timingSafeEqual(leftBuffer, rightBuffer);
|
|
};
|
|
|
|
export const createRemoteClientAuthRuntime = ({ fsPromises, path, crypto, storePath }) => {
|
|
const hashToken = (token) => crypto.createHash('sha256').update(token).digest('hex');
|
|
const nowIso = () => new Date().toISOString();
|
|
const generateId = () => crypto.randomBytes(12).toString('hex');
|
|
const generateToken = () => `${TOKEN_PREFIX}${crypto.randomBytes(TOKEN_BYTES).toString('base64url')}`;
|
|
let storeMutationQueue = Promise.resolve();
|
|
|
|
const withStoreMutation = async (fn) => {
|
|
const previous = storeMutationQueue;
|
|
let release;
|
|
storeMutationQueue = new Promise((resolve) => {
|
|
release = resolve;
|
|
});
|
|
await previous;
|
|
try {
|
|
return await fn();
|
|
} finally {
|
|
release();
|
|
}
|
|
};
|
|
|
|
const normalizeStore = (payload) => ({
|
|
version: STORE_VERSION,
|
|
clients: Array.isArray(payload?.clients)
|
|
? payload.clients
|
|
.filter((client) => client && typeof client === 'object')
|
|
.map((client) => ({
|
|
id: typeof client.id === 'string' ? client.id : generateId(),
|
|
label: normalizeLabel(client.label),
|
|
tokenHash: typeof client.tokenHash === 'string' ? client.tokenHash : '',
|
|
createdAt: typeof client.createdAt === 'string' ? client.createdAt : nowIso(),
|
|
lastUsedAt: typeof client.lastUsedAt === 'string' ? client.lastUsedAt : null,
|
|
revokedAt: typeof client.revokedAt === 'string' ? client.revokedAt : null,
|
|
expiresAt: normalizeTimestamp(client.expiresAt),
|
|
clientKind: normalizeOptionalString(client.clientKind),
|
|
dedupeKey: normalizeOptionalString(client.dedupeKey),
|
|
}))
|
|
.filter((client) => client.tokenHash.length > 0)
|
|
: [],
|
|
});
|
|
|
|
const readStore = async () => {
|
|
try {
|
|
const raw = await fsPromises.readFile(storePath, 'utf8');
|
|
return normalizeStore(safeJsonParse(raw));
|
|
} catch (error) {
|
|
if (error?.code === 'ENOENT') return normalizeStore(null);
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
const writeStore = async (store) => {
|
|
await fsPromises.mkdir(path.dirname(storePath), { recursive: true, mode: 0o700 });
|
|
await fsPromises.writeFile(storePath, JSON.stringify(normalizeStore(store), null, 2), { mode: 0o600 });
|
|
if (typeof fsPromises.chmod === 'function') {
|
|
await fsPromises.chmod(storePath, 0o600).catch(() => {});
|
|
}
|
|
};
|
|
|
|
const publicClient = (client) => ({
|
|
id: client.id,
|
|
label: client.label,
|
|
createdAt: client.createdAt,
|
|
lastUsedAt: client.lastUsedAt,
|
|
revokedAt: client.revokedAt,
|
|
expiresAt: client.expiresAt,
|
|
clientKind: client.clientKind,
|
|
});
|
|
|
|
const listClients = async () => {
|
|
return withStoreMutation(async () => {
|
|
const store = await readStore();
|
|
return store.clients.map(publicClient);
|
|
});
|
|
};
|
|
|
|
const createClient = async ({ label, expiresAt, clientKind, dedupeKey } = {}) => {
|
|
return withStoreMutation(async () => {
|
|
const store = await readStore();
|
|
const normalizedDedupeKey = normalizeOptionalString(dedupeKey);
|
|
const token = generateToken();
|
|
const client = {
|
|
id: generateId(),
|
|
label: normalizeLabel(label),
|
|
tokenHash: hashToken(token),
|
|
createdAt: nowIso(),
|
|
lastUsedAt: null,
|
|
revokedAt: null,
|
|
expiresAt: normalizeTimestamp(expiresAt),
|
|
clientKind: normalizeOptionalString(clientKind),
|
|
dedupeKey: normalizedDedupeKey,
|
|
};
|
|
if (normalizedDedupeKey) {
|
|
store.clients = store.clients.filter((entry) => entry.dedupeKey !== normalizedDedupeKey);
|
|
}
|
|
store.clients.push(client);
|
|
await writeStore(store);
|
|
return { client: publicClient(client), token };
|
|
});
|
|
};
|
|
|
|
const revokeClient = async (id) => {
|
|
if (typeof id !== 'string' || id.trim().length === 0) {
|
|
return { revoked: false };
|
|
}
|
|
return withStoreMutation(async () => {
|
|
const store = await readStore();
|
|
const client = store.clients.find((entry) => entry.id === id);
|
|
if (!client) return { revoked: false };
|
|
if (!client.revokedAt) client.revokedAt = nowIso();
|
|
await writeStore(store);
|
|
return { revoked: true, client: publicClient(client) };
|
|
});
|
|
};
|
|
|
|
const purgeRevokedClients = async () => {
|
|
return withStoreMutation(async () => {
|
|
const store = await readStore();
|
|
const before = store.clients.length;
|
|
store.clients = store.clients.filter((entry) => !entry.revokedAt);
|
|
const purged = before - store.clients.length;
|
|
if (purged > 0) {
|
|
await writeStore(store);
|
|
}
|
|
return { purged };
|
|
});
|
|
};
|
|
|
|
const authenticateBearerToken = async (token) => {
|
|
if (typeof token !== 'string' || !token.startsWith(TOKEN_PREFIX)) {
|
|
return null;
|
|
}
|
|
return withStoreMutation(async () => {
|
|
const tokenHash = hashToken(token);
|
|
const store = await readStore();
|
|
const client = store.clients.find((entry) => !entry.revokedAt && constantTimeEqual(entry.tokenHash, tokenHash, crypto));
|
|
if (!client) return null;
|
|
if (client.expiresAt && Date.parse(client.expiresAt) <= Date.now()) return null;
|
|
const now = Date.now();
|
|
const lastUsedAt = Date.parse(client.lastUsedAt || '');
|
|
if (!Number.isFinite(lastUsedAt) || now - lastUsedAt >= LAST_USED_WRITE_INTERVAL_MS) {
|
|
client.lastUsedAt = new Date(now).toISOString();
|
|
await writeStore(store);
|
|
}
|
|
return { ok: true, clientId: client.id, sessionToken: client.id, client: publicClient(client) };
|
|
});
|
|
};
|
|
|
|
return {
|
|
authenticateBearerToken,
|
|
createClient,
|
|
listClients,
|
|
purgeRevokedClients,
|
|
revokeClient,
|
|
};
|
|
};
|