mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
- bodyLimit: conditional on MAX_UPLOAD_SIZE_MB (0 = 1GB practical max) - rate limiting: disabled when RATE_LIMIT_PER_MIN=0 - shutdown timeout: 8s → 30s - upload plugin: no fileSize/files cap when env=0 - session duration: configurable via SESSION_DURATION_HOURS (default 168h) - login attempts: configurable via LOGIN_ATTEMPT_LIMIT - batch/pipeline/svg-to-raster: skip guard when MAX_BATCH_SIZE=0 - pipeline steps: configurable via MAX_PIPELINE_STEPS (0 = unlimited) - user-files: remove 200 hard cap - stitch canvas: configurable via MAX_CANVAS_PIXELS (0 = unlimited) - PDF pages: configurable via MAX_PDF_PAGES (0 = unlimited) - SVG size: configurable via MAX_SVG_SIZE_MB (0 = unlimited) - logo size: configurable via MAX_LOGO_SIZE_KB (default 2048) - worker threads: auto-detect via resolveWorkerThreads (0 = auto) - megapixels: skip validation when MAX_MEGAPIXELS=0 - seam carving: remove 1200px dimension cap - concurrency: auto-detect via resolveConcurrency (0 = auto)
107 lines
3.5 KiB
TypeScript
107 lines
3.5 KiB
TypeScript
/**
|
|
* Branding routes — custom logo upload, serving, and deletion.
|
|
*
|
|
* POST /api/v1/settings/logo — Upload logo (admin only)
|
|
* GET /api/v1/settings/logo — Serve custom logo as PNG (public)
|
|
* DELETE /api/v1/settings/logo — Remove custom logo (admin only)
|
|
*/
|
|
|
|
import { existsSync, mkdirSync, readFileSync, unlinkSync, writeFileSync } from "node:fs";
|
|
import { join } from "node:path";
|
|
import { eq } from "drizzle-orm";
|
|
import type { FastifyInstance, FastifyReply, FastifyRequest } from "fastify";
|
|
import sharp from "sharp";
|
|
import { env } from "../config.js";
|
|
import { db, schema } from "../db/index.js";
|
|
import { ensureSharpCompat } from "../lib/heic-converter.js";
|
|
import { requireAdmin } from "../plugins/auth.js";
|
|
|
|
const BRANDING_DIR = join(process.cwd(), "data", "branding");
|
|
const LOGO_PATH = join(BRANDING_DIR, "logo.png");
|
|
const maxLogoSize = env.MAX_LOGO_SIZE_KB * 1024;
|
|
|
|
function upsertSetting(key: string, value: string): void {
|
|
const existing = db.select().from(schema.settings).where(eq(schema.settings.key, key)).get();
|
|
if (existing) {
|
|
db.update(schema.settings)
|
|
.set({ value, updatedAt: new Date() })
|
|
.where(eq(schema.settings.key, key))
|
|
.run();
|
|
} else {
|
|
db.insert(schema.settings).values({ key, value }).run();
|
|
}
|
|
}
|
|
|
|
export async function brandingRoutes(app: FastifyInstance): Promise<void> {
|
|
// POST /api/v1/settings/logo — Upload logo (admin only)
|
|
app.post("/api/v1/settings/logo", async (request: FastifyRequest, reply: FastifyReply) => {
|
|
const admin = requireAdmin(request, reply);
|
|
if (!admin) return;
|
|
|
|
const file = await request.file();
|
|
if (!file) {
|
|
return reply.status(400).send({ error: "No file uploaded", code: "VALIDATION_ERROR" });
|
|
}
|
|
|
|
// Validate mimetype
|
|
if (!file.mimetype.startsWith("image/")) {
|
|
return reply.status(400).send({ error: "File must be an image", code: "VALIDATION_ERROR" });
|
|
}
|
|
|
|
// Read file buffer
|
|
const buffer = await file.toBuffer();
|
|
|
|
// Validate size
|
|
if (buffer.length > maxLogoSize) {
|
|
return reply.status(400).send({
|
|
error: `Logo must be ${env.MAX_LOGO_SIZE_KB}KB or smaller`,
|
|
code: "VALIDATION_ERROR",
|
|
});
|
|
}
|
|
|
|
// Decode HEIC/HEIF if needed, then convert to PNG, resize to max 128x128
|
|
const compatBuffer = await ensureSharpCompat(buffer);
|
|
const pngBuffer = await sharp(compatBuffer)
|
|
.resize(128, 128, { fit: "inside", withoutEnlargement: true })
|
|
.png()
|
|
.toBuffer();
|
|
|
|
// Ensure branding directory exists
|
|
mkdirSync(BRANDING_DIR, { recursive: true });
|
|
|
|
// Write file
|
|
writeFileSync(LOGO_PATH, pngBuffer);
|
|
|
|
// Upsert setting
|
|
upsertSetting("customLogo", "true");
|
|
|
|
return reply.send({ ok: true });
|
|
});
|
|
|
|
// GET /api/v1/settings/logo — Serve logo (public, no auth required)
|
|
app.get("/api/v1/settings/logo", async (_request: FastifyRequest, reply: FastifyReply) => {
|
|
if (!existsSync(LOGO_PATH)) {
|
|
return reply.status(404).send({ error: "No custom logo set", code: "NOT_FOUND" });
|
|
}
|
|
|
|
const logoBuffer = readFileSync(LOGO_PATH);
|
|
return reply.type("image/png").send(logoBuffer);
|
|
});
|
|
|
|
// DELETE /api/v1/settings/logo — Remove logo (admin only)
|
|
app.delete("/api/v1/settings/logo", async (request: FastifyRequest, reply: FastifyReply) => {
|
|
const admin = requireAdmin(request, reply);
|
|
if (!admin) return;
|
|
|
|
if (existsSync(LOGO_PATH)) {
|
|
unlinkSync(LOGO_PATH);
|
|
}
|
|
|
|
upsertSetting("customLogo", "false");
|
|
|
|
return reply.send({ ok: true });
|
|
});
|
|
|
|
app.log.info("Branding routes registered");
|
|
}
|