Client previously built `${homeDirectory}/.config/openchamber/sessions-directories.json`
using client-side homeDirectory, which in some boot paths resolved to the
active workspace and wrote the file inside the project. Replace with
GET/POST /api/session-folders — server uses os.homedir() directly, so the
file always lands in ~/.config/openchamber/ regardless of client state.
58 lines
1.9 KiB
JavaScript
58 lines
1.9 KiB
JavaScript
const MAX_BODY_BYTES = 4 * 1024 * 1024;
|
|
|
|
export const registerSessionFoldersRoutes = (app, dependencies) => {
|
|
const {
|
|
fsPromises,
|
|
path,
|
|
openchamberDataDir,
|
|
} = dependencies;
|
|
|
|
const filePath = path.join(openchamberDataDir, 'sessions-directories.json');
|
|
|
|
const ensureDir = async () => {
|
|
await fsPromises.mkdir(path.dirname(filePath), { recursive: true });
|
|
};
|
|
|
|
app.get('/api/session-folders', async (_req, res) => {
|
|
try {
|
|
const raw = await fsPromises.readFile(filePath, 'utf8').catch((error) => {
|
|
if (error && error.code === 'ENOENT') return null;
|
|
throw error;
|
|
});
|
|
if (!raw) {
|
|
return res.json({ version: 1, foldersMap: {}, collapsedFolderIds: [], updatedAt: 0 });
|
|
}
|
|
try {
|
|
const parsed = JSON.parse(raw);
|
|
return res.json(parsed);
|
|
} catch {
|
|
return res.json({ version: 1, foldersMap: {}, collapsedFolderIds: [], updatedAt: 0 });
|
|
}
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : 'Failed to read session folders';
|
|
return res.status(500).json({ error: message });
|
|
}
|
|
});
|
|
|
|
app.post('/api/session-folders', async (req, res) => {
|
|
const body = req.body;
|
|
if (!body || typeof body !== 'object' || Array.isArray(body)) {
|
|
return res.status(400).json({ error: 'Body must be an object' });
|
|
}
|
|
const serialized = JSON.stringify(body, null, 2);
|
|
if (Buffer.byteLength(serialized, 'utf8') > MAX_BODY_BYTES) {
|
|
return res.status(413).json({ error: 'Payload too large' });
|
|
}
|
|
try {
|
|
await ensureDir();
|
|
const tmp = `${filePath}.tmp`;
|
|
await fsPromises.writeFile(tmp, serialized, 'utf8');
|
|
await fsPromises.rename(tmp, filePath);
|
|
return res.json({ success: true });
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : 'Failed to write session folders';
|
|
return res.status(500).json({ error: message });
|
|
}
|
|
});
|
|
};
|