Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bbb23ca661 | |||
| f214e4f7b7 | |||
| 7aa33a1bdf | |||
| ea06cd9175 | |||
| 734f0a292d | |||
| 08135ee36a | |||
| f462b2e288 | |||
| 01fda32bcd | |||
| 94694deb91 | |||
| ef75f9ebdf | |||
| 5e782e4044 |
@@ -108,7 +108,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
# Start backend server in background
|
# Start backend server in background
|
||||||
cd backend
|
cd backend
|
||||||
DATABASE_URL="file:${{ github.workspace }}/backend/prisma/e2e-test.db" FRONTEND_URL="http://localhost:5173" npm run dev &
|
DATABASE_URL="file:${{ github.workspace }}/backend/prisma/e2e-test.db" FRONTEND_URL="http://localhost:6767" npm run dev &
|
||||||
BACKEND_PID=$!
|
BACKEND_PID=$!
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
@@ -132,7 +132,7 @@ jobs:
|
|||||||
# Wait for frontend to be ready
|
# Wait for frontend to be ready
|
||||||
echo "Waiting for frontend server..."
|
echo "Waiting for frontend server..."
|
||||||
for i in {1..30}; do
|
for i in {1..30}; do
|
||||||
if curl -s http://localhost:5173 > /dev/null; then
|
if curl -s http://localhost:6767 > /dev/null; then
|
||||||
echo "Frontend is ready!"
|
echo "Frontend is ready!"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
|||||||
+6
-40
@@ -1,43 +1,9 @@
|
|||||||
CSRF Protection (8a78b2b)
|
Multi user setup is opt-in, single user by default
|
||||||
|
|
||||||
- Implemented comprehensive CSRF (Cross-Site Request Forgery) protection for enhanced security
|
Multi-user support for excalidash
|
||||||
- Added new backend/src/security.ts module for security utilities
|
- Admin dashboard
|
||||||
- Frontend API layer now handles CSRF tokens automatically
|
- Password reset, force user password reset (admin only), account lockout recovery
|
||||||
- Added integration tests for CSRF validation
|
- Rate limits
|
||||||
|
|
||||||
Upload Progress Indicator (8f9b9b4)
|
Deprecates .json and .sqlite database backups in favor of .excalidash archives (user scoped, prevents exporting of senstive information). Legacy import is maintained.
|
||||||
|
|
||||||
- Added a visual upload progress bar when users upload files
|
|
||||||
- New UploadContext for managing upload state across components
|
|
||||||
- New UploadStatus component displaying real-time upload progress
|
|
||||||
- Save status indicator when navigating back from the editor
|
|
||||||
- Improved error handling and recovery for failed uploads
|
|
||||||
|
|
||||||
Bug Fixes
|
|
||||||
|
|
||||||
- Fixed broken e2e tests (cae8f3c)
|
|
||||||
- Replaced deprecated substr() with substring()
|
|
||||||
- Fixed stale state issues in error handling
|
|
||||||
- Fixed missing useEffect dependencies
|
|
||||||
- Fixed CSS class conflicts in progress bar styling
|
|
||||||
- Added error recovery for save state in Editor
|
|
||||||
|
|
||||||
Infrastructure
|
|
||||||
|
|
||||||
- Updated docker-compose configurations with new environment variables
|
|
||||||
- E2E test suite improvements and reliability fixes
|
|
||||||
- Added Kubernetes deployment note in README
|
|
||||||
|
|
||||||
### Kubernetes
|
|
||||||
|
|
||||||
A `CSRF_SECRET` environment variable is now required for CSRF protection. Generate a secure 32+ character random string:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
openssl rand -base64 32
|
|
||||||
|
|
||||||
Add it to your deployment:
|
|
||||||
- Docker Compose: Add CSRF_SECRET=<your-secret> to the backend service environment
|
|
||||||
- Kubernetes: Add to your ConfigMap/Secret and reference in the backend deployment
|
|
||||||
|
|
||||||
If not set, the backend will refuse to start.
|
|
||||||
```
|
|
||||||
|
|||||||
Generated
+7
@@ -1164,6 +1164,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz",
|
||||||
"integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==",
|
"integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.16.0"
|
"undici-types": "~7.16.0"
|
||||||
}
|
}
|
||||||
@@ -2654,6 +2655,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/express/-/express-5.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/express/-/express-5.2.0.tgz",
|
||||||
"integrity": "sha512-XdpJDLxfztVY59X0zPI6sibRiGcxhTPXRD3IhJmjKf2jwMvkRGV1j7loB8U+heeamoU3XvihAaGRTR4aXXUN3A==",
|
"integrity": "sha512-XdpJDLxfztVY59X0zPI6sibRiGcxhTPXRD3IhJmjKf2jwMvkRGV1j7loB8U+heeamoU3XvihAaGRTR4aXXUN3A==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"accepts": "^2.0.0",
|
"accepts": "^2.0.0",
|
||||||
"body-parser": "^2.2.1",
|
"body-parser": "^2.2.1",
|
||||||
@@ -4088,6 +4090,7 @@
|
|||||||
"integrity": "sha512-vtpjW3XuYCSnMsNVBjLMNkTj6OZbudcPPTPYHqX0CJfpcdWciI1dM8uHETwmDxxiqEwCIE6WvXucWUetJgfu/A==",
|
"integrity": "sha512-vtpjW3XuYCSnMsNVBjLMNkTj6OZbudcPPTPYHqX0CJfpcdWciI1dM8uHETwmDxxiqEwCIE6WvXucWUetJgfu/A==",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@prisma/engines": "5.22.0"
|
"@prisma/engines": "5.22.0"
|
||||||
},
|
},
|
||||||
@@ -5100,6 +5103,7 @@
|
|||||||
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"peer": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
@@ -5258,6 +5262,7 @@
|
|||||||
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
"peer": true,
|
||||||
"bin": {
|
"bin": {
|
||||||
"tsc": "bin/tsc",
|
"tsc": "bin/tsc",
|
||||||
"tsserver": "bin/tsserver"
|
"tsserver": "bin/tsserver"
|
||||||
@@ -5348,6 +5353,7 @@
|
|||||||
"integrity": "sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==",
|
"integrity": "sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"esbuild": "^0.25.0",
|
"esbuild": "^0.25.0",
|
||||||
"fdir": "^6.5.0",
|
"fdir": "^6.5.0",
|
||||||
@@ -5441,6 +5447,7 @@
|
|||||||
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"peer": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "backend",
|
"name": "backend",
|
||||||
"version": "0.3.2",
|
"version": "0.4.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
-- Improve dashboard query performance for user-scoped collection and drawing listings.
|
||||||
|
CREATE INDEX IF NOT EXISTS "Collection_userId_updatedAt_idx"
|
||||||
|
ON "Collection" ("userId", "updatedAt");
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS "Drawing_userId_updatedAt_idx"
|
||||||
|
ON "Drawing" ("userId", "updatedAt");
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS "Drawing_userId_collectionId_updatedAt_idx"
|
||||||
|
ON "Drawing" ("userId", "collectionId", "updatedAt");
|
||||||
@@ -49,6 +49,8 @@ model Collection {
|
|||||||
drawings Drawing[]
|
drawings Drawing[]
|
||||||
createdAt DateTime @default(now())
|
createdAt DateTime @default(now())
|
||||||
updatedAt DateTime @updatedAt
|
updatedAt DateTime @updatedAt
|
||||||
|
|
||||||
|
@@index([userId, updatedAt])
|
||||||
}
|
}
|
||||||
|
|
||||||
model Drawing {
|
model Drawing {
|
||||||
@@ -65,6 +67,9 @@ model Drawing {
|
|||||||
collection Collection? @relation(fields: [collectionId], references: [id])
|
collection Collection? @relation(fields: [collectionId], references: [id])
|
||||||
createdAt DateTime @default(now())
|
createdAt DateTime @default(now())
|
||||||
updatedAt DateTime @updatedAt
|
updatedAt DateTime @updatedAt
|
||||||
|
|
||||||
|
@@index([userId, updatedAt])
|
||||||
|
@@index([userId, collectionId, updatedAt])
|
||||||
}
|
}
|
||||||
|
|
||||||
model Library {
|
model Library {
|
||||||
|
|||||||
@@ -0,0 +1,290 @@
|
|||||||
|
import { describe, it, expect, beforeAll, afterAll, beforeEach } from "vitest";
|
||||||
|
import request from "supertest";
|
||||||
|
import fs from "fs";
|
||||||
|
import path from "path";
|
||||||
|
import os from "os";
|
||||||
|
import { getTestPrisma, setupTestDb, cleanupTestDb } from "./testUtils";
|
||||||
|
|
||||||
|
type LegacyDbOptions = {
|
||||||
|
tableStyle: "prisma" | "plural-lower";
|
||||||
|
includeCollections: boolean;
|
||||||
|
includeMigrationsTable: boolean;
|
||||||
|
includeTrashDrawing: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
const createTempDir = () => fs.mkdtempSync(path.join(os.tmpdir(), "excalidash-legacy-"));
|
||||||
|
|
||||||
|
const openWritableDb = (filePath: string): any => {
|
||||||
|
try {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||||
|
const { DatabaseSync } = require("node:sqlite") as any;
|
||||||
|
return new DatabaseSync(filePath, { enableForeignKeyConstraints: false });
|
||||||
|
} catch (_err) {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||||
|
const Database = require("better-sqlite3") as any;
|
||||||
|
return new Database(filePath);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const createLegacySqliteDb = (opts: LegacyDbOptions): string => {
|
||||||
|
const dir = createTempDir();
|
||||||
|
const filePath = path.join(dir, "legacy-export.db");
|
||||||
|
const db = openWritableDb(filePath);
|
||||||
|
|
||||||
|
const tableDrawing = opts.tableStyle === "plural-lower" ? "drawings" : "Drawing";
|
||||||
|
const tableCollection = opts.tableStyle === "plural-lower" ? "collections" : "Collection";
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (opts.includeCollections) {
|
||||||
|
db.exec(`
|
||||||
|
CREATE TABLE "${tableCollection}" (
|
||||||
|
id TEXT PRIMARY KEY NOT NULL,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
createdAt TEXT,
|
||||||
|
updatedAt TEXT
|
||||||
|
);
|
||||||
|
`);
|
||||||
|
db.prepare(`INSERT INTO "${tableCollection}" (id, name, createdAt, updatedAt) VALUES (?, ?, ?, ?)`).run(
|
||||||
|
"legacy-collection-1",
|
||||||
|
"Legacy Collection",
|
||||||
|
new Date("2024-01-01T00:00:00.000Z").toISOString(),
|
||||||
|
new Date("2024-01-02T00:00:00.000Z").toISOString(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
db.exec(`
|
||||||
|
CREATE TABLE "${tableDrawing}" (
|
||||||
|
id TEXT PRIMARY KEY NOT NULL,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
elements TEXT NOT NULL,
|
||||||
|
appState TEXT NOT NULL,
|
||||||
|
files TEXT,
|
||||||
|
preview TEXT,
|
||||||
|
version INTEGER,
|
||||||
|
collectionId TEXT,
|
||||||
|
collectionName TEXT,
|
||||||
|
createdAt TEXT,
|
||||||
|
updatedAt TEXT
|
||||||
|
);
|
||||||
|
`);
|
||||||
|
|
||||||
|
const now = new Date("2024-01-03T00:00:00.000Z").toISOString();
|
||||||
|
const insertDrawing = db.prepare(
|
||||||
|
`INSERT INTO "${tableDrawing}"
|
||||||
|
(id, name, elements, appState, files, preview, version, collectionId, collectionName, createdAt, updatedAt)
|
||||||
|
VALUES
|
||||||
|
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`
|
||||||
|
);
|
||||||
|
|
||||||
|
insertDrawing.run(
|
||||||
|
"legacy-drawing-1",
|
||||||
|
"Legacy Drawing 1",
|
||||||
|
JSON.stringify([]),
|
||||||
|
JSON.stringify({}),
|
||||||
|
JSON.stringify({}),
|
||||||
|
null,
|
||||||
|
1,
|
||||||
|
opts.includeCollections ? "legacy-collection-1" : null,
|
||||||
|
opts.includeCollections ? "Legacy Collection" : null,
|
||||||
|
now,
|
||||||
|
now,
|
||||||
|
);
|
||||||
|
|
||||||
|
insertDrawing.run(
|
||||||
|
"legacy-drawing-2",
|
||||||
|
"Legacy Drawing 2 (unorganized)",
|
||||||
|
JSON.stringify([]),
|
||||||
|
JSON.stringify({}),
|
||||||
|
JSON.stringify({}),
|
||||||
|
null,
|
||||||
|
2,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
now,
|
||||||
|
now,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (opts.includeTrashDrawing) {
|
||||||
|
insertDrawing.run(
|
||||||
|
"legacy-drawing-trash",
|
||||||
|
"Legacy Trash Drawing",
|
||||||
|
JSON.stringify([]),
|
||||||
|
JSON.stringify({}),
|
||||||
|
JSON.stringify({}),
|
||||||
|
null,
|
||||||
|
1,
|
||||||
|
"trash",
|
||||||
|
"Trash",
|
||||||
|
now,
|
||||||
|
now,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.includeMigrationsTable) {
|
||||||
|
db.exec(`
|
||||||
|
CREATE TABLE "_prisma_migrations" (
|
||||||
|
id TEXT PRIMARY KEY NOT NULL,
|
||||||
|
checksum TEXT NOT NULL,
|
||||||
|
finished_at TEXT,
|
||||||
|
migration_name TEXT NOT NULL,
|
||||||
|
logs TEXT,
|
||||||
|
rolled_back_at TEXT,
|
||||||
|
started_at TEXT NOT NULL,
|
||||||
|
applied_steps_count INTEGER NOT NULL DEFAULT 0
|
||||||
|
);
|
||||||
|
`);
|
||||||
|
db.prepare(
|
||||||
|
`INSERT INTO "_prisma_migrations"
|
||||||
|
(id, checksum, finished_at, migration_name, logs, rolled_back_at, started_at, applied_steps_count)
|
||||||
|
VALUES
|
||||||
|
(?, ?, ?, ?, ?, ?, ?, ?)`
|
||||||
|
).run(
|
||||||
|
"m1",
|
||||||
|
"checksum",
|
||||||
|
new Date("2024-01-04T00:00:00.000Z").toISOString(),
|
||||||
|
"20240104000000_initial",
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
new Date("2024-01-04T00:00:00.000Z").toISOString(),
|
||||||
|
1,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
db.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
return filePath;
|
||||||
|
};
|
||||||
|
|
||||||
|
describe("Import compatibility (legacy exports)", () => {
|
||||||
|
const uploadsDir = path.resolve(__dirname, "../../uploads");
|
||||||
|
const userAgent = "vitest-import-compat";
|
||||||
|
let prisma: ReturnType<typeof getTestPrisma>;
|
||||||
|
let app: any;
|
||||||
|
let csrfHeaderName: string;
|
||||||
|
let csrfToken: string;
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
setupTestDb();
|
||||||
|
prisma = getTestPrisma();
|
||||||
|
fs.mkdirSync(uploadsDir, { recursive: true });
|
||||||
|
|
||||||
|
// Import the server AFTER DATABASE_URL is set by setupTestDb/getTestPrisma.
|
||||||
|
({ app } = await import("../index"));
|
||||||
|
|
||||||
|
const csrfRes = await request(app).get("/csrf-token").set("User-Agent", userAgent);
|
||||||
|
csrfHeaderName = csrfRes.body.header;
|
||||||
|
csrfToken = csrfRes.body.token;
|
||||||
|
expect(typeof csrfHeaderName).toBe("string");
|
||||||
|
expect(typeof csrfToken).toBe("string");
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await cleanupTestDb(prisma);
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await prisma.$disconnect();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("verifies a v0.1.x–v0.3.2-style SQLite export (Drawing/Collection tables) and returns migration info when present", async () => {
|
||||||
|
const legacyDb = createLegacySqliteDb({
|
||||||
|
tableStyle: "prisma",
|
||||||
|
includeCollections: true,
|
||||||
|
includeMigrationsTable: true,
|
||||||
|
includeTrashDrawing: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const res = await request(app)
|
||||||
|
.post("/import/sqlite/legacy/verify")
|
||||||
|
.set("User-Agent", userAgent)
|
||||||
|
.set(csrfHeaderName, csrfToken)
|
||||||
|
.attach("db", legacyDb);
|
||||||
|
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(res.body.valid).toBe(true);
|
||||||
|
expect(res.body.drawings).toBe(2);
|
||||||
|
expect(res.body.collections).toBe(1);
|
||||||
|
expect(res.body.latestMigration).toBe("20240104000000_initial");
|
||||||
|
expect(typeof res.body.currentLatestMigration === "string").toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("merge-imports a legacy SQLite export into the current account without replacing the database", async () => {
|
||||||
|
const legacyDb = createLegacySqliteDb({
|
||||||
|
tableStyle: "prisma",
|
||||||
|
includeCollections: true,
|
||||||
|
includeMigrationsTable: false,
|
||||||
|
includeTrashDrawing: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const res = await request(app)
|
||||||
|
.post("/import/sqlite/legacy")
|
||||||
|
.set("User-Agent", userAgent)
|
||||||
|
.set(csrfHeaderName, csrfToken)
|
||||||
|
.attach("db", legacyDb);
|
||||||
|
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(res.body.success).toBe(true);
|
||||||
|
expect(res.body.collections?.created).toBeGreaterThanOrEqual(1);
|
||||||
|
expect(res.body.drawings?.created).toBeGreaterThanOrEqual(3);
|
||||||
|
|
||||||
|
const importedDrawings = await prisma.drawing.findMany({
|
||||||
|
orderBy: { name: "asc" },
|
||||||
|
select: { id: true, name: true, collectionId: true, userId: true },
|
||||||
|
});
|
||||||
|
|
||||||
|
// In single-user mode, imports land on the bootstrap acting user.
|
||||||
|
expect(importedDrawings.every((d) => d.userId === "bootstrap-admin")).toBe(true);
|
||||||
|
expect(importedDrawings.map((d) => d.id)).toEqual(
|
||||||
|
expect.arrayContaining(["legacy-drawing-1", "legacy-drawing-2", "legacy-drawing-trash"])
|
||||||
|
);
|
||||||
|
|
||||||
|
const trash = await prisma.collection.findUnique({ where: { id: "trash" } });
|
||||||
|
expect(trash).toBeTruthy();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("supports older exports with plural/lowercase table names (drawings/collections)", async () => {
|
||||||
|
const legacyDb = createLegacySqliteDb({
|
||||||
|
tableStyle: "plural-lower",
|
||||||
|
includeCollections: true,
|
||||||
|
includeMigrationsTable: false,
|
||||||
|
includeTrashDrawing: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const verify = await request(app)
|
||||||
|
.post("/import/sqlite/legacy/verify")
|
||||||
|
.set("User-Agent", userAgent)
|
||||||
|
.set(csrfHeaderName, csrfToken)
|
||||||
|
.attach("db", legacyDb);
|
||||||
|
|
||||||
|
expect(verify.status).toBe(200);
|
||||||
|
expect(verify.body.drawings).toBe(2);
|
||||||
|
expect(verify.body.collections).toBe(1);
|
||||||
|
|
||||||
|
const res = await request(app)
|
||||||
|
.post("/import/sqlite/legacy")
|
||||||
|
.set("User-Agent", userAgent)
|
||||||
|
.set(csrfHeaderName, csrfToken)
|
||||||
|
.attach("db", legacyDb);
|
||||||
|
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(res.body.success).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails verification if the legacy DB is missing a Drawing table", async () => {
|
||||||
|
const dir = createTempDir();
|
||||||
|
const filePath = path.join(dir, "invalid.db");
|
||||||
|
const db = openWritableDb(filePath);
|
||||||
|
db.exec(`CREATE TABLE "NotDrawing" (id TEXT PRIMARY KEY NOT NULL);`);
|
||||||
|
db.close();
|
||||||
|
|
||||||
|
const res = await request(app)
|
||||||
|
.post("/import/sqlite/legacy/verify")
|
||||||
|
.set("User-Agent", userAgent)
|
||||||
|
.set(csrfHeaderName, csrfToken)
|
||||||
|
.attach("db", filePath);
|
||||||
|
|
||||||
|
expect(res.status).toBe(400);
|
||||||
|
expect(res.body.error).toBe("Invalid legacy DB");
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,240 @@
|
|||||||
|
/**
|
||||||
|
* Security tests for user data sandboxing
|
||||||
|
*
|
||||||
|
* Verifies that:
|
||||||
|
* 1. Drawings cache keys are scoped by userId (prevents cross-user data leakage)
|
||||||
|
* 2. Drawing CRUD operations enforce userId filtering
|
||||||
|
* 3. Collection operations enforce userId filtering
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect, beforeAll, afterAll, beforeEach } from "vitest";
|
||||||
|
import bcrypt from "bcrypt";
|
||||||
|
import {
|
||||||
|
getTestPrisma,
|
||||||
|
setupTestDb,
|
||||||
|
} from "./testUtils";
|
||||||
|
import { PrismaClient } from "../generated/client";
|
||||||
|
|
||||||
|
let prisma: PrismaClient;
|
||||||
|
|
||||||
|
// These tests verify the data isolation logic at the database query level
|
||||||
|
describe("User Data Sandboxing", () => {
|
||||||
|
let userA: { id: string; email: string };
|
||||||
|
let userB: { id: string; email: string };
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
setupTestDb();
|
||||||
|
prisma = getTestPrisma();
|
||||||
|
|
||||||
|
// Create two test users
|
||||||
|
const hashA = await bcrypt.hash("passwordA", 10);
|
||||||
|
const hashB = await bcrypt.hash("passwordB", 10);
|
||||||
|
|
||||||
|
userA = await prisma.user.upsert({
|
||||||
|
where: { email: "usera@test.com" },
|
||||||
|
update: {},
|
||||||
|
create: {
|
||||||
|
email: "usera@test.com",
|
||||||
|
passwordHash: hashA,
|
||||||
|
name: "User A",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
userB = await prisma.user.upsert({
|
||||||
|
where: { email: "userb@test.com" },
|
||||||
|
update: {},
|
||||||
|
create: {
|
||||||
|
email: "userb@test.com",
|
||||||
|
passwordHash: hashB,
|
||||||
|
name: "User B",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await prisma.$disconnect();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await prisma.drawing.deleteMany({});
|
||||||
|
await prisma.collection.deleteMany({});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Drawing isolation", () => {
|
||||||
|
it("should not return User A's drawings when querying as User B", async () => {
|
||||||
|
// Create a drawing for User A
|
||||||
|
await prisma.drawing.create({
|
||||||
|
data: {
|
||||||
|
name: "User A Drawing",
|
||||||
|
elements: "[]",
|
||||||
|
appState: "{}",
|
||||||
|
userId: userA.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Query as User B - should get 0 results
|
||||||
|
const userBDrawings = await prisma.drawing.findMany({
|
||||||
|
where: { userId: userB.id },
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(userBDrawings).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should only return the owning user's drawings", async () => {
|
||||||
|
// Create drawings for both users
|
||||||
|
await prisma.drawing.create({
|
||||||
|
data: {
|
||||||
|
name: "User A Drawing",
|
||||||
|
elements: "[]",
|
||||||
|
appState: "{}",
|
||||||
|
userId: userA.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await prisma.drawing.create({
|
||||||
|
data: {
|
||||||
|
name: "User B Drawing",
|
||||||
|
elements: "[]",
|
||||||
|
appState: "{}",
|
||||||
|
userId: userB.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const userADrawings = await prisma.drawing.findMany({
|
||||||
|
where: { userId: userA.id },
|
||||||
|
});
|
||||||
|
const userBDrawings = await prisma.drawing.findMany({
|
||||||
|
where: { userId: userB.id },
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(userADrawings).toHaveLength(1);
|
||||||
|
expect(userADrawings[0].name).toBe("User A Drawing");
|
||||||
|
|
||||||
|
expect(userBDrawings).toHaveLength(1);
|
||||||
|
expect(userBDrawings[0].name).toBe("User B Drawing");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should not allow User B to access User A's drawing by ID", async () => {
|
||||||
|
const drawing = await prisma.drawing.create({
|
||||||
|
data: {
|
||||||
|
name: "User A Secret Drawing",
|
||||||
|
elements: "[]",
|
||||||
|
appState: "{}",
|
||||||
|
userId: userA.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Simulate the findFirst query used in GET /drawings/:id
|
||||||
|
const result = await prisma.drawing.findFirst({
|
||||||
|
where: {
|
||||||
|
id: drawing.id,
|
||||||
|
userId: userB.id, // User B trying to access
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result).toBeNull();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Collection isolation", () => {
|
||||||
|
it("should not return User A's collections when querying as User B", async () => {
|
||||||
|
await prisma.collection.create({
|
||||||
|
data: {
|
||||||
|
name: "User A Collection",
|
||||||
|
userId: userA.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const userBCollections = await prisma.collection.findMany({
|
||||||
|
where: { userId: userB.id },
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(userBCollections).toHaveLength(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should not allow User B to modify User A's collection", async () => {
|
||||||
|
const collection = await prisma.collection.create({
|
||||||
|
data: {
|
||||||
|
name: "User A Collection",
|
||||||
|
userId: userA.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Simulate the findFirst query used in PUT /collections/:id
|
||||||
|
const result = await prisma.collection.findFirst({
|
||||||
|
where: {
|
||||||
|
id: collection.id,
|
||||||
|
userId: userB.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result).toBeNull();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Cache key user scoping", () => {
|
||||||
|
it("should generate different cache keys for different users with same query params", () => {
|
||||||
|
// This tests the buildDrawingsCacheKey function logic inline
|
||||||
|
// The function was updated to include userId in the cache key
|
||||||
|
const buildDrawingsCacheKey = (keyParts: {
|
||||||
|
userId: string;
|
||||||
|
searchTerm: string;
|
||||||
|
collectionFilter: string;
|
||||||
|
includeData: boolean;
|
||||||
|
}) =>
|
||||||
|
JSON.stringify([
|
||||||
|
keyParts.userId,
|
||||||
|
keyParts.searchTerm,
|
||||||
|
keyParts.collectionFilter,
|
||||||
|
keyParts.includeData ? "full" : "summary",
|
||||||
|
]);
|
||||||
|
|
||||||
|
const keyA = buildDrawingsCacheKey({
|
||||||
|
userId: "user-a-id",
|
||||||
|
searchTerm: "",
|
||||||
|
collectionFilter: "default",
|
||||||
|
includeData: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const keyB = buildDrawingsCacheKey({
|
||||||
|
userId: "user-b-id",
|
||||||
|
searchTerm: "",
|
||||||
|
collectionFilter: "default",
|
||||||
|
includeData: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(keyA).not.toBe(keyB);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should generate same cache key for same user with same query params", () => {
|
||||||
|
const buildDrawingsCacheKey = (keyParts: {
|
||||||
|
userId: string;
|
||||||
|
searchTerm: string;
|
||||||
|
collectionFilter: string;
|
||||||
|
includeData: boolean;
|
||||||
|
}) =>
|
||||||
|
JSON.stringify([
|
||||||
|
keyParts.userId,
|
||||||
|
keyParts.searchTerm,
|
||||||
|
keyParts.collectionFilter,
|
||||||
|
keyParts.includeData ? "full" : "summary",
|
||||||
|
]);
|
||||||
|
|
||||||
|
const key1 = buildDrawingsCacheKey({
|
||||||
|
userId: "same-user",
|
||||||
|
searchTerm: "test",
|
||||||
|
collectionFilter: "default",
|
||||||
|
includeData: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const key2 = buildDrawingsCacheKey({
|
||||||
|
userId: "same-user",
|
||||||
|
searchTerm: "test",
|
||||||
|
collectionFilter: "default",
|
||||||
|
includeData: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(key1).toBe(key2);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
+110
-2063
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,96 @@
|
|||||||
|
import { z } from "zod";
|
||||||
|
|
||||||
|
export const registerSchema = z.object({
|
||||||
|
username: z.string().trim().min(3).max(50).optional(),
|
||||||
|
email: z.string().email().toLowerCase().trim(),
|
||||||
|
password: z.string().min(8).max(100),
|
||||||
|
name: z.string().trim().min(1).max(100),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const loginSchema = z
|
||||||
|
.object({
|
||||||
|
identifier: z.string().trim().min(1).max(255).optional(),
|
||||||
|
email: z.string().email().toLowerCase().trim().optional(),
|
||||||
|
username: z.string().trim().min(1).max(255).optional(),
|
||||||
|
password: z.string(),
|
||||||
|
})
|
||||||
|
.refine((data) => Boolean(data.identifier || data.email || data.username), {
|
||||||
|
message: "identifier/email/username is required",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const registrationToggleSchema = z.object({
|
||||||
|
enabled: z.boolean(),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const adminRoleUpdateSchema = z.object({
|
||||||
|
identifier: z.string().trim().min(1).max(255),
|
||||||
|
role: z.enum(["ADMIN", "USER"]),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const authEnabledToggleSchema = z.object({
|
||||||
|
enabled: z.boolean(),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const adminCreateUserSchema = z.object({
|
||||||
|
username: z.string().trim().min(3).max(50).optional(),
|
||||||
|
email: z.string().email().toLowerCase().trim(),
|
||||||
|
password: z.string().min(8).max(100),
|
||||||
|
name: z.string().trim().min(1).max(100),
|
||||||
|
role: z.enum(["ADMIN", "USER"]).optional(),
|
||||||
|
mustResetPassword: z.boolean().optional(),
|
||||||
|
isActive: z.boolean().optional(),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const adminUpdateUserSchema = z.object({
|
||||||
|
username: z.string().trim().min(3).max(50).nullable().optional(),
|
||||||
|
name: z.string().trim().min(1).max(100).optional(),
|
||||||
|
role: z.enum(["ADMIN", "USER"]).optional(),
|
||||||
|
mustResetPassword: z.boolean().optional(),
|
||||||
|
isActive: z.boolean().optional(),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const impersonateSchema = z
|
||||||
|
.object({
|
||||||
|
userId: z.string().trim().min(1).optional(),
|
||||||
|
identifier: z.string().trim().min(1).optional(),
|
||||||
|
})
|
||||||
|
.refine((data) => Boolean(data.userId || data.identifier), {
|
||||||
|
message: "userId/identifier is required",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const loginRateLimitUpdateSchema = z.object({
|
||||||
|
enabled: z.boolean(),
|
||||||
|
windowMs: z.number().int().min(10_000).max(24 * 60 * 60 * 1000),
|
||||||
|
max: z.number().int().min(1).max(10_000),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const loginRateLimitResetSchema = z.object({
|
||||||
|
identifier: z.string().trim().min(1).max(255),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const passwordResetRequestSchema = z.object({
|
||||||
|
email: z.string().email().toLowerCase().trim(),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const passwordResetConfirmSchema = z.object({
|
||||||
|
token: z.string().min(1),
|
||||||
|
password: z.string().min(8).max(100),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const updateProfileSchema = z.object({
|
||||||
|
name: z.string().trim().min(1).max(100),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const updateEmailSchema = z.object({
|
||||||
|
email: z.string().email().toLowerCase().trim(),
|
||||||
|
currentPassword: z.string().min(1).max(100),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const changePasswordSchema = z.object({
|
||||||
|
currentPassword: z.string(),
|
||||||
|
newPassword: z.string().min(8).max(100),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const mustResetPasswordSchema = z.object({
|
||||||
|
newPassword: z.string().min(8).max(100),
|
||||||
|
});
|
||||||
@@ -24,14 +24,6 @@ interface Config {
|
|||||||
enableAuditLogging: boolean;
|
enableAuditLogging: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const getRequiredEnv = (key: string): string => {
|
|
||||||
const value = process.env[key];
|
|
||||||
if (!value || value.trim().length === 0) {
|
|
||||||
throw new Error(`Missing required environment variable: ${key}`);
|
|
||||||
}
|
|
||||||
return value;
|
|
||||||
};
|
|
||||||
|
|
||||||
const getOptionalEnv = (key: string, defaultValue: string): string => {
|
const getOptionalEnv = (key: string, defaultValue: string): string => {
|
||||||
return process.env[key] || defaultValue;
|
return process.env[key] || defaultValue;
|
||||||
};
|
};
|
||||||
|
|||||||
+210
-1360
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,3 @@
|
|||||||
/**
|
|
||||||
* Authentication middleware for protecting routes
|
|
||||||
*/
|
|
||||||
import { Request, Response, NextFunction } from "express";
|
import { Request, Response, NextFunction } from "express";
|
||||||
import jwt from "jsonwebtoken";
|
import jwt from "jsonwebtoken";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
@@ -16,7 +13,7 @@ type AuthEnabledCache = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let authEnabledCache: AuthEnabledCache | null = null;
|
let authEnabledCache: AuthEnabledCache | null = null;
|
||||||
const AUTH_ENABLED_TTL_MS = 0;
|
const AUTH_ENABLED_TTL_MS = 5000;
|
||||||
|
|
||||||
const getAuthEnabled = async (): Promise<boolean> => {
|
const getAuthEnabled = async (): Promise<boolean> => {
|
||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
@@ -24,17 +21,33 @@ const getAuthEnabled = async (): Promise<boolean> => {
|
|||||||
return authEnabledCache.value;
|
return authEnabledCache.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
const systemConfig = await prisma.systemConfig.upsert({
|
let systemConfig = await prisma.systemConfig.findUnique({
|
||||||
where: { id: DEFAULT_SYSTEM_CONFIG_ID },
|
where: { id: DEFAULT_SYSTEM_CONFIG_ID },
|
||||||
update: {},
|
|
||||||
create: {
|
|
||||||
id: DEFAULT_SYSTEM_CONFIG_ID,
|
|
||||||
authEnabled: false,
|
|
||||||
registrationEnabled: false,
|
|
||||||
},
|
|
||||||
select: { authEnabled: true },
|
select: { authEnabled: true },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!systemConfig) {
|
||||||
|
try {
|
||||||
|
systemConfig = await prisma.systemConfig.create({
|
||||||
|
data: {
|
||||||
|
id: DEFAULT_SYSTEM_CONFIG_ID,
|
||||||
|
authEnabled: false,
|
||||||
|
registrationEnabled: false,
|
||||||
|
},
|
||||||
|
select: { authEnabled: true },
|
||||||
|
});
|
||||||
|
} catch {
|
||||||
|
// Handle race from concurrent initialization.
|
||||||
|
systemConfig = await prisma.systemConfig.findUnique({
|
||||||
|
where: { id: DEFAULT_SYSTEM_CONFIG_ID },
|
||||||
|
select: { authEnabled: true },
|
||||||
|
});
|
||||||
|
if (!systemConfig) {
|
||||||
|
throw new Error("Failed to initialize system config");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
authEnabledCache = { value: systemConfig.authEnabled, fetchedAt: now };
|
authEnabledCache = { value: systemConfig.authEnabled, fetchedAt: now };
|
||||||
return systemConfig.authEnabled;
|
return systemConfig.authEnabled;
|
||||||
};
|
};
|
||||||
@@ -102,9 +115,6 @@ interface JwtPayload {
|
|||||||
impersonatorId?: string;
|
impersonatorId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Type guard to check if decoded JWT is our expected payload structure
|
|
||||||
*/
|
|
||||||
const isJwtPayload = (decoded: unknown): decoded is JwtPayload => {
|
const isJwtPayload = (decoded: unknown): decoded is JwtPayload => {
|
||||||
if (typeof decoded !== "object" || decoded === null) {
|
if (typeof decoded !== "object" || decoded === null) {
|
||||||
return false;
|
return false;
|
||||||
@@ -120,9 +130,6 @@ const isJwtPayload = (decoded: unknown): decoded is JwtPayload => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Extract JWT token from Authorization header
|
|
||||||
*/
|
|
||||||
const extractToken = (req: Request): string | null => {
|
const extractToken = (req: Request): string | null => {
|
||||||
const authHeader = req.headers.authorization;
|
const authHeader = req.headers.authorization;
|
||||||
if (!authHeader || typeof authHeader !== "string") return null;
|
if (!authHeader || typeof authHeader !== "string") return null;
|
||||||
@@ -135,9 +142,6 @@ const extractToken = (req: Request): string | null => {
|
|||||||
return parts[1];
|
return parts[1];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Verify and decode JWT token
|
|
||||||
*/
|
|
||||||
const verifyToken = (token: string): JwtPayload | null => {
|
const verifyToken = (token: string): JwtPayload | null => {
|
||||||
try {
|
try {
|
||||||
const decoded = jwt.verify(token, config.jwtSecret);
|
const decoded = jwt.verify(token, config.jwtSecret);
|
||||||
@@ -170,10 +174,6 @@ const isAllowedWhileMustResetPassword = (req: Request): boolean => {
|
|||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Require authentication middleware
|
|
||||||
* Protects routes that require a valid JWT token
|
|
||||||
*/
|
|
||||||
export const requireAuth = async (
|
export const requireAuth = async (
|
||||||
req: Request,
|
req: Request,
|
||||||
res: Response,
|
res: Response,
|
||||||
@@ -276,10 +276,6 @@ export const requireAuth = async (
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Optional authentication middleware
|
|
||||||
* Attaches user to request if token is present, but doesn't require it
|
|
||||||
*/
|
|
||||||
export const optionalAuth = async (
|
export const optionalAuth = async (
|
||||||
req: Request,
|
req: Request,
|
||||||
res: Response,
|
res: Response,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+1
-31
@@ -552,21 +552,6 @@ const CSRF_TOKEN_FUTURE_SKEW_MS = 5 * 60 * 1000; // 5 minutes clock skew toleran
|
|||||||
const CSRF_NONCE_BYTES = 16;
|
const CSRF_NONCE_BYTES = 16;
|
||||||
const CSRF_TOKEN_MAX_LENGTH = 2048; // sanity limit against abuse
|
const CSRF_TOKEN_MAX_LENGTH = 2048; // sanity limit against abuse
|
||||||
|
|
||||||
/**
|
|
||||||
* IMPORTANT (Horizontal Scaling / K8s)
|
|
||||||
* -----------------------------------
|
|
||||||
* CSRF tokens must validate across multiple stateless instances.
|
|
||||||
*
|
|
||||||
* The prior in-memory Map-based token store breaks under horizontal scaling
|
|
||||||
* because each pod has its own memory. This implementation is stateless:
|
|
||||||
*
|
|
||||||
* - Token payload: { ts, nonce }
|
|
||||||
* - Signature: HMAC_SHA256(secret, `${clientId}|${ts}|${nonce}`)
|
|
||||||
*
|
|
||||||
* As long as all pods share the same `CSRF_SECRET`, any pod can validate
|
|
||||||
* any token without shared state (works on Kubernetes).
|
|
||||||
*/
|
|
||||||
|
|
||||||
let cachedCsrfSecret: Buffer | null = null;
|
let cachedCsrfSecret: Buffer | null = null;
|
||||||
const getCsrfSecret = (): Buffer => {
|
const getCsrfSecret = (): Buffer => {
|
||||||
if (cachedCsrfSecret) return cachedCsrfSecret;
|
if (cachedCsrfSecret) return cachedCsrfSecret;
|
||||||
@@ -577,9 +562,7 @@ const getCsrfSecret = (): Buffer => {
|
|||||||
return cachedCsrfSecret;
|
return cachedCsrfSecret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If not configured, generate an ephemeral secret for this process.
|
// Fallback for local/single-instance setups.
|
||||||
// This keeps single-instance deployments working out of the box, but:
|
|
||||||
// - Horizontal scaling will BREAK unless CSRF_SECRET is set and shared.
|
|
||||||
cachedCsrfSecret = crypto.randomBytes(32);
|
cachedCsrfSecret = crypto.randomBytes(32);
|
||||||
const envLabel = process.env.NODE_ENV ? ` (${process.env.NODE_ENV})` : "";
|
const envLabel = process.env.NODE_ENV ? ` (${process.env.NODE_ENV})` : "";
|
||||||
console.warn(
|
console.warn(
|
||||||
@@ -609,9 +592,7 @@ const base64UrlDecode = (input: string): Buffer => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
type CsrfTokenPayload = {
|
type CsrfTokenPayload = {
|
||||||
/** Issued-at timestamp (ms since epoch) */
|
|
||||||
ts: number;
|
ts: number;
|
||||||
/** Random nonce (base64url) */
|
|
||||||
nonce: string;
|
nonce: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -621,10 +602,6 @@ const signCsrfToken = (clientId: string, payload: CsrfTokenPayload): Buffer => {
|
|||||||
return crypto.createHmac("sha256", secret).update(data, "utf8").digest();
|
return crypto.createHmac("sha256", secret).update(data, "utf8").digest();
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new CSRF token for a client
|
|
||||||
* Returns the token to be sent to the client
|
|
||||||
*/
|
|
||||||
export const createCsrfToken = (clientId: string): string => {
|
export const createCsrfToken = (clientId: string): string => {
|
||||||
const payload: CsrfTokenPayload = {
|
const payload: CsrfTokenPayload = {
|
||||||
ts: Date.now(),
|
ts: Date.now(),
|
||||||
@@ -638,10 +615,6 @@ export const createCsrfToken = (clientId: string): string => {
|
|||||||
return `${payloadB64}.${sigB64}`;
|
return `${payloadB64}.${sigB64}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate a CSRF token for a client
|
|
||||||
* Uses timing-safe comparison to prevent timing attacks
|
|
||||||
*/
|
|
||||||
export const validateCsrfToken = (clientId: string, token: string): boolean => {
|
export const validateCsrfToken = (clientId: string, token: string): boolean => {
|
||||||
if (!token || typeof token !== "string") {
|
if (!token || typeof token !== "string") {
|
||||||
return false;
|
return false;
|
||||||
@@ -688,9 +661,6 @@ export const validateCsrfToken = (clientId: string, token: string): boolean => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Revoke a CSRF token (e.g., on logout or token refresh)
|
|
||||||
*/
|
|
||||||
export const revokeCsrfToken = (clientId: string): void => {
|
export const revokeCsrfToken = (clientId: string): void => {
|
||||||
// Stateless CSRF tokens cannot be selectively revoked without shared state.
|
// Stateless CSRF tokens cannot be selectively revoked without shared state.
|
||||||
// If revocation is required, implement token blacklisting in a shared store
|
// If revocation is required, implement token blacklisting in a shared store
|
||||||
|
|||||||
@@ -1,11 +1,26 @@
|
|||||||
const { parentPort, workerData } = require('worker_threads');
|
const { parentPort, workerData } = require('worker_threads');
|
||||||
const Database = require('better-sqlite3');
|
|
||||||
|
|
||||||
if (!parentPort) throw new Error("Must be run in a worker thread");
|
if (!parentPort) throw new Error("Must be run in a worker thread");
|
||||||
|
|
||||||
|
const openReadonlyDb = (filePath) => {
|
||||||
|
try {
|
||||||
|
const { DatabaseSync } = require("node:sqlite");
|
||||||
|
const db = new DatabaseSync(filePath, {
|
||||||
|
readOnly: true,
|
||||||
|
enableForeignKeyConstraints: false,
|
||||||
|
});
|
||||||
|
return { kind: "node:sqlite", db };
|
||||||
|
} catch (_err) {
|
||||||
|
// Fall back to better-sqlite3 on Node versions that don't have node:sqlite.
|
||||||
|
const Database = require("better-sqlite3");
|
||||||
|
const db = new Database(filePath, { readonly: true, fileMustExist: true });
|
||||||
|
return { kind: "better-sqlite3", db };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { filePath } = workerData;
|
const { filePath } = workerData;
|
||||||
const db = new Database(filePath, { readonly: true, fileMustExist: true });
|
const { db } = openReadonlyDb(filePath);
|
||||||
|
|
||||||
// This is the CPU-heavy operation
|
// This is the CPU-heavy operation
|
||||||
const result = db.prepare("PRAGMA integrity_check;").get();
|
const result = db.prepare("PRAGMA integrity_check;").get();
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ services:
|
|||||||
- DATABASE_URL=file:/app/prisma/dev.db
|
- DATABASE_URL=file:/app/prisma/dev.db
|
||||||
- PORT=8000
|
- PORT=8000
|
||||||
- NODE_ENV=production
|
- NODE_ENV=production
|
||||||
|
# Required for authentication: must be explicitly set to a strong secret (min 32 chars)
|
||||||
|
- JWT_SECRET=${JWT_SECRET}
|
||||||
# Required for horizontal scaling (k8s): uncomment and set to same value on all instances
|
# Required for horizontal scaling (k8s): uncomment and set to same value on all instances
|
||||||
# - CSRF_SECRET=${CSRF_SECRET}
|
# - CSRF_SECRET=${CSRF_SECRET}
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
+2
-2
@@ -8,8 +8,8 @@ services:
|
|||||||
- DATABASE_URL=file:/app/prisma/dev.db
|
- DATABASE_URL=file:/app/prisma/dev.db
|
||||||
- PORT=8000
|
- PORT=8000
|
||||||
- NODE_ENV=production
|
- NODE_ENV=production
|
||||||
# Required for authentication: set a strong secret (min 32 chars)
|
# Required for authentication: must be explicitly set to a strong secret (min 32 chars)
|
||||||
- JWT_SECRET=${JWT_SECRET:-change-this-secret-in-production-min-32-chars}
|
- JWT_SECRET=${JWT_SECRET}
|
||||||
# Required for horizontal scaling (k8s): uncomment and set to same value on all instances
|
# Required for horizontal scaling (k8s): uncomment and set to same value on all instances
|
||||||
# - CSRF_SECRET=${CSRF_SECRET}
|
# - CSRF_SECRET=${CSRF_SECRET}
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { defineConfig, devices } from "@playwright/test";
|
import { defineConfig, devices } from "@playwright/test";
|
||||||
|
|
||||||
// Centralized test environment URLs
|
// Centralized test environment URLs
|
||||||
const FRONTEND_PORT = 5173;
|
const FRONTEND_PORT = 6767;
|
||||||
const BACKEND_PORT = 8000;
|
const BACKEND_PORT = 8000;
|
||||||
const FRONTEND_URL = process.env.BASE_URL || `http://localhost:${FRONTEND_PORT}`;
|
const FRONTEND_URL = process.env.BASE_URL || `http://localhost:${FRONTEND_PORT}`;
|
||||||
const BACKEND_URL = process.env.API_URL || `http://localhost:${BACKEND_PORT}`;
|
const BACKEND_URL = process.env.API_URL || `http://localhost:${BACKEND_PORT}`;
|
||||||
@@ -10,7 +10,7 @@ const BACKEND_URL = process.env.API_URL || `http://localhost:${BACKEND_PORT}`;
|
|||||||
* Playwright configuration for E2E browser testing
|
* Playwright configuration for E2E browser testing
|
||||||
*
|
*
|
||||||
* Environment variables:
|
* Environment variables:
|
||||||
* - BASE_URL: Frontend URL (default: http://localhost:5173)
|
* - BASE_URL: Frontend URL (default: http://localhost:6767)
|
||||||
* - API_URL: Backend API URL (default: http://localhost:8000)
|
* - API_URL: Backend API URL (default: http://localhost:8000)
|
||||||
* - HEADED: Run in headed mode (default: false)
|
* - HEADED: Run in headed mode (default: false)
|
||||||
* - NO_SERVER: Skip starting servers (default: false)
|
* - NO_SERVER: Skip starting servers (default: false)
|
||||||
|
|||||||
@@ -145,9 +145,10 @@ test.describe("Dashboard Workflows", () => {
|
|||||||
await page.goto("/");
|
await page.goto("/");
|
||||||
await page.waitForLoadState("networkidle");
|
await page.waitForLoadState("networkidle");
|
||||||
await applyDashboardSearch(page, prefix);
|
await applyDashboardSearch(page, prefix);
|
||||||
|
await expect(page.locator("[id^='drawing-card-']")).toHaveCount(2);
|
||||||
|
|
||||||
await ensureCardSelected(page, first.id);
|
// Select all filtered cards (2) for a deterministic bulk action.
|
||||||
await ensureCardSelected(page, second.id);
|
await page.getByTitle("Select All").click();
|
||||||
|
|
||||||
await page.getByTitle("Duplicate Selected").click();
|
await page.getByTitle("Duplicate Selected").click();
|
||||||
|
|
||||||
@@ -156,16 +157,32 @@ test.describe("Dashboard Workflows", () => {
|
|||||||
return results.length;
|
return results.length;
|
||||||
}).toBe(4);
|
}).toBe(4);
|
||||||
|
|
||||||
const allPrefixDrawings = await listDrawings(request, { search: prefix });
|
await applyDashboardSearch(page, prefix);
|
||||||
for (const drawing of allPrefixDrawings) {
|
await expect(page.locator("[id^='drawing-card-']")).toHaveCount(4);
|
||||||
await ensureCardSelected(page, drawing.id);
|
|
||||||
|
const bulkMoveToTrash = async () => {
|
||||||
|
await page.getByTitle("Select All").click();
|
||||||
|
await expect(page.getByTitle("Move to Trash")).toBeEnabled();
|
||||||
|
await page.getByTitle("Move to Trash").click();
|
||||||
|
};
|
||||||
|
|
||||||
|
// Move all 4. If one is missed due transient selection flake, recover with extra passes.
|
||||||
|
await bulkMoveToTrash();
|
||||||
|
|
||||||
|
for (let i = 0; i < 2; i++) {
|
||||||
|
const remaining = await listDrawings(request, { search: prefix });
|
||||||
|
if (remaining.length === 0) break;
|
||||||
|
await applyDashboardSearch(page, prefix);
|
||||||
|
await page.waitForTimeout(400);
|
||||||
|
const visibleCount = await page.locator("[id^='drawing-card-']").count();
|
||||||
|
if (visibleCount === 0) continue;
|
||||||
|
await bulkMoveToTrash();
|
||||||
}
|
}
|
||||||
await page.getByTitle("Move to Trash").click();
|
|
||||||
|
|
||||||
await expect.poll(async () => {
|
await expect.poll(async () => {
|
||||||
const trashed = await listDrawings(request, { search: prefix, collectionId: "trash" });
|
const trashed = await listDrawings(request, { search: prefix, collectionId: "trash" });
|
||||||
return trashed.length;
|
return trashed.length;
|
||||||
}).toBe(4);
|
}, { timeout: 15000 }).toBe(4);
|
||||||
|
|
||||||
const trashDrawings = await listDrawings(request, { search: prefix, collectionId: "trash" });
|
const trashDrawings = await listDrawings(request, { search: prefix, collectionId: "trash" });
|
||||||
for (const drawing of trashDrawings) {
|
for (const drawing of trashDrawings) {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user