96 lines
3.0 KiB
JavaScript
96 lines
3.0 KiB
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const { Events } = require('../models');
|
|
const multer = require('multer');
|
|
const path = require('path');
|
|
const yup = require('yup');
|
|
|
|
router.post("/", async (req, res) => {
|
|
let data = req.body;
|
|
console.log("Incoming data:", data); // Log incoming data
|
|
const validationSchema = yup.object({
|
|
title: yup.string().trim().min(3).max(100).required(),
|
|
description: yup.string().trim().min(3).max(500).required(),
|
|
date: yup.date().required(),
|
|
time: yup.string().required(),
|
|
location: yup.string().required(),
|
|
category: yup.string().required(),
|
|
imageUrl: yup.string(),
|
|
slotsAvailable: yup.number().integer().required(),
|
|
});
|
|
|
|
try {
|
|
data = await validationSchema.validate(data, { abortEarly: false });
|
|
console.log("Validated data:", data); // Log validated data
|
|
const result = await Events.create(data);
|
|
console.log("Event created:", result); // Log successful creation
|
|
res.json(result);
|
|
} catch (err) {
|
|
console.error("Validation error:", err); // Log the validation error
|
|
res.status(400).json({ errors: err.errors });
|
|
}
|
|
});
|
|
|
|
const upload = multer({ storage: multer.memoryStorage() });
|
|
|
|
router.get("/", async (req, res) => {
|
|
try {
|
|
const list = await Events.findAll({
|
|
order: [['createdAt', 'DESC']],
|
|
});
|
|
res.json(list);
|
|
} catch (error) {
|
|
console.error("Error fetching events:", error);
|
|
res.status(500).json({ message: "Internal Server Error" });
|
|
}
|
|
});
|
|
|
|
router.get("/:id", async (req, res) => {
|
|
const id = req.params.id;
|
|
const event = await Events.findByPk(id);
|
|
if (!event) {
|
|
res.sendStatus(404);
|
|
return;
|
|
}
|
|
res.json(event);
|
|
});
|
|
|
|
router.put("/:id", async (req, res) => {
|
|
const id = req.params.id;
|
|
let data = req.body;
|
|
const validationSchema = yup.object({
|
|
title: yup.string().trim().min(3).max(100),
|
|
description: yup.string().trim().min(3).max(500),
|
|
date: yup.date(),
|
|
time: yup.string(),
|
|
location: yup.string(),
|
|
category: yup.string(),
|
|
imageUrl: yup.string(),
|
|
slotsAvailable: yup.number().integer(),
|
|
});
|
|
|
|
try {
|
|
data = await validationSchema.validate(data, { abortEarly: false });
|
|
const event = await Events.findByPk(id);
|
|
if (!event) {
|
|
return res.status(404).json({ message: "Event not found" });
|
|
}
|
|
await Events.update(data, { where: { id: id } });
|
|
res.json({ message: "Event updated successfully" });
|
|
} catch (err) {
|
|
res.status(400).json({ errors: err.errors });
|
|
}
|
|
});
|
|
|
|
router.delete("/:id", async (req, res) => {
|
|
const id = req.params.id;
|
|
const event = await Events.findByPk(id);
|
|
if (!event) {
|
|
return res.status(404).json({ message: "Event not found" });
|
|
}
|
|
await Events.destroy({ where: { id: id } });
|
|
res.json({ message: "Event deleted successfully" });
|
|
});
|
|
|
|
module.exports = router;
|