- Add centralized Zod schemas (server/utils/schemas.js) and validateBody utility for all API endpoints - Fix critical mass assignment in member creation: raw body no longer passed to new Member(), only validated fields (email, name, circle, contributionTier) are accepted - Apply Zod validation to login, profile patch, event registration, updates, verify-payment, and admin event creation endpoints - Fix logout cookie flags to match login (httpOnly: true, secure conditional on NODE_ENV) - Delete unauthenticated test/debug endpoints (test-connection, test-subscription, test-bot) - Remove sensitive console.log statements from Helcim and member endpoints - Remove unused bcryptjs dependency - Add 10MB file size limit on image uploads - Use runtime config for JWT secret across all endpoints - Add 38 validation tests (117 total, all passing)
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import jwt from "jsonwebtoken";
|
|
import Update from "../../models/update.js";
|
|
import { connectDB } from "../../utils/mongoose.js";
|
|
import { validateBody } from "../../utils/validateBody.js";
|
|
import { updateCreateSchema } from "../../utils/schemas.js";
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
await connectDB();
|
|
|
|
const token = getCookie(event, "auth-token");
|
|
|
|
if (!token) {
|
|
throw createError({
|
|
statusCode: 401,
|
|
statusMessage: "Not authenticated",
|
|
});
|
|
}
|
|
|
|
let memberId;
|
|
try {
|
|
const decoded = jwt.verify(token, useRuntimeConfig().jwtSecret);
|
|
memberId = decoded.memberId;
|
|
} catch (err) {
|
|
throw createError({
|
|
statusCode: 401,
|
|
statusMessage: "Invalid or expired token",
|
|
});
|
|
}
|
|
|
|
const body = await validateBody(event, updateCreateSchema);
|
|
|
|
try {
|
|
const update = await Update.create({
|
|
author: memberId,
|
|
content: body.content,
|
|
images: body.images || [],
|
|
privacy: body.privacy || "members",
|
|
commentsEnabled: body.commentsEnabled ?? true,
|
|
});
|
|
|
|
// Populate author details
|
|
await update.populate("author", "name avatar");
|
|
|
|
return update;
|
|
} catch (error) {
|
|
console.error("Create update error:", error);
|
|
throw createError({
|
|
statusCode: 500,
|
|
statusMessage: "Failed to create update",
|
|
});
|
|
}
|
|
});
|