67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const { DataTypes, Op } = require('sequelize');
|
|
const defineCase = require('../../models/cases');
|
|
|
|
module.exports = function (sequelize) {
|
|
const Case = defineCase(sequelize, DataTypes);
|
|
const { verifySignedIn } = require('../../middleware/auth')(sequelize);
|
|
const { verifyProjectVisibleFromFolderId } = require('../../middleware/verifyVisible')(sequelize);
|
|
|
|
router.get('/', verifySignedIn, verifyProjectVisibleFromFolderId, async (req, res) => {
|
|
const { folderId, priority, type, q } = req.query;
|
|
|
|
if (!folderId) {
|
|
return res.status(400).json({ error: 'folderId is required' });
|
|
}
|
|
|
|
try {
|
|
const whereClause = {
|
|
folderId: folderId,
|
|
};
|
|
|
|
if (q) {
|
|
const searchTerm = q.trim();
|
|
|
|
if (searchTerm.length > 100) {
|
|
return res.status(400).json({ error: 'Search term too long' });
|
|
}
|
|
|
|
if (searchTerm.length >= 2) {
|
|
whereClause[Op.or] = [{ title: { [Op.like]: `%${q}%` } }];
|
|
}
|
|
}
|
|
|
|
if (priority) {
|
|
const priorityValues = priority
|
|
.split(',')
|
|
.map((p) => parseInt(p.trim(), 10))
|
|
.filter((p) => !isNaN(p));
|
|
if (priorityValues.length > 0) {
|
|
whereClause.priority = { [Op.in]: priorityValues };
|
|
}
|
|
}
|
|
|
|
if (type) {
|
|
const typeValues = type
|
|
.split(',')
|
|
.map((t) => parseInt(t.trim(), 10))
|
|
.filter((t) => !isNaN(t));
|
|
if (typeValues.length > 0) {
|
|
whereClause.type = { [Op.in]: typeValues };
|
|
}
|
|
}
|
|
|
|
const cases = await Case.findAll({
|
|
where: whereClause,
|
|
});
|
|
res.json(cases);
|
|
} catch (error) {
|
|
console.error(error);
|
|
res.status(500).send('Internal Server Error');
|
|
}
|
|
});
|
|
|
|
return router;
|
|
};
|