Files
pp-tcms/backend/routes/cases/index.js
2025-10-16 07:18:09 +09:00

82 lines
2.3 KiB
JavaScript

import express from 'express';
const router = express.Router();
import { DataTypes, Op } from 'sequelize';
import defineCase from '../../models/cases.js';
import defineTag from '../../models/tags.js';
import authMiddleware from '../../middleware/auth.js';
import visibilityMiddleware from '../../middleware/verifyVisible.js';
export default function (sequelize) {
const { verifySignedIn } = authMiddleware(sequelize);
const { verifyProjectVisibleFromFolderId } = visibilityMiddleware(sequelize);
const Case = defineCase(sequelize, DataTypes);
const Tags = defineTag(sequelize, DataTypes);
Case.belongsToMany(Tags, { through: 'caseTags', foreignKey: 'caseId', otherKey: 'tagId' });
Tags.belongsToMany(Case, { through: 'caseTags', foreignKey: 'tagId', otherKey: 'caseId' });
router.get('/', verifySignedIn, verifyProjectVisibleFromFolderId, async (req, res) => {
const { folderId, title, priority, type } = req.query;
if (!folderId) {
return res.status(400).json({ error: 'folderId is required' });
}
try {
const whereClause = {
folderId: folderId,
};
if (title) {
const searchTerm = title.trim();
if (searchTerm.length > 100) {
return res.status(400).json({ error: 'too long title param' });
}
if (searchTerm.length >= 1) {
whereClause[Op.or] = [{ title: { [Op.like]: `%${searchTerm}%` } }];
}
}
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,
include: [
{
model: Tags,
attributes: ['id', 'name'],
through: { attributes: [] },
},
],
});
res.json(cases);
} catch (error) {
console.error(error);
res.status(500).send('Internal Server Error');
}
});
return router;
}