Files
sena_db_api_layer/controllers/categoryController.js
silverpro89 f96833a7e4
All checks were successful
Deploy to Production / deploy (push) Successful in 20s
U
2026-02-27 20:10:15 +07:00

452 lines
10 KiB
JavaScript

const { Categories, Subject } = require('../models');
const { cacheUtils } = require('../config/redis');
/**
* Categories Controller - Quản lý danh mục
*/
class CategoryController {
/**
* Get all categories with pagination and caching
*/
async getAllCategories(req, res, next) {
try {
const { page = 1, limit = 50, is_active } = req.query;
const offset = (page - 1) * limit;
// Generate cache key
const cacheKey = `categories:list:${page}:${limit}:${is_active || 'all'}`;
// Try to get from cache first
const cached = await cacheUtils.get(cacheKey);
if (cached) {
return res.json({
success: true,
data: cached,
cached: true,
});
}
// Build query conditions
const where = {};
if (is_active !== undefined) where.is_active = is_active === 'true';
// Query from database (through ProxySQL)
const { count, rows } = await Categories.findAndCountAll({
where,
limit: parseInt(limit),
offset: parseInt(offset),
order: [['category_code', 'ASC']],
});
const result = {
categories: rows,
pagination: {
total: count,
page: parseInt(page),
limit: parseInt(limit),
totalPages: Math.ceil(count / limit),
},
};
// Cache the result
await cacheUtils.set(cacheKey, result, 7200); // Cache for 2 hours
res.json({
success: true,
data: result,
cached: false,
});
} catch (error) {
next(error);
}
}
/**
* Get category by ID with caching
*/
async getCategoryById(req, res, next) {
try {
const { id } = req.params;
const cacheKey = `category:${id}`;
// Try cache first
const cached = await cacheUtils.get(cacheKey);
if (cached) {
return res.json({
success: true,
data: cached,
cached: true,
});
}
// Query from database
const category = await Categories.findByPk(id);
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
// Cache the result
await cacheUtils.set(cacheKey, category, 7200); // Cache for 2 hours
res.json({
success: true,
data: category,
cached: false,
});
} catch (error) {
next(error);
}
}
/**
* Get category by code with caching
*/
async getCategoryByCode(req, res, next) {
try {
const { code } = req.params;
const cacheKey = `category:code:${code}`;
// Try cache first
const cached = await cacheUtils.get(cacheKey);
if (cached) {
return res.json({
success: true,
data: cached,
cached: true,
});
}
// Query from database
const category = await Categories.findOne({
where: { category_code: code },
});
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
// Cache the result
await cacheUtils.set(cacheKey, category, 7200); // Cache for 2 hours
res.json({
success: true,
data: category,
cached: false,
});
} catch (error) {
next(error);
}
}
/**
* Create new category
*/
async createCategory(req, res, next) {
try {
const categoryData = req.body;
const category = await Categories.create(categoryData);
await cacheUtils.deletePattern('categories:list:*');
res.status(201).json({
success: true,
message: 'Category created successfully',
data: category,
});
} catch (error) {
next(error);
}
}
/**
* Update category
*/
async updateCategory(req, res, next) {
try {
const { id } = req.params;
const updates = req.body;
const category = await Categories.findByPk(id);
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
await category.update(updates);
await cacheUtils.delete(`category:${id}`);
await cacheUtils.deletePattern('categories:list:*');
res.json({
success: true,
message: 'Category updated successfully',
data: category,
});
} catch (error) {
next(error);
}
}
/**
* Delete category
*/
async deleteCategory(req, res, next) {
try {
const { id } = req.params;
const category = await Categories.findByPk(id);
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
await category.destroy();
await cacheUtils.delete(`category:${id}`);
await cacheUtils.deletePattern('categories:list:*');
res.json({
success: true,
message: 'Category deleted successfully',
});
} catch (error) {
next(error);
}
}
/**
* Get active categories (frequently used)
*/
async getActiveCategories(req, res, next) {
try {
const cacheKey = 'categories:active';
// Try cache first
const cached = await cacheUtils.get(cacheKey);
if (cached) {
return res.json({
success: true,
data: cached,
cached: true,
});
}
// Query from database
const categories = await Categories.findAll({
where: { is_active: true },
order: [['category_code', 'ASC']],
});
// Cache for 4 hours (this data changes infrequently)
await cacheUtils.set(cacheKey, categories, 14400);
res.json({
success: true,
data: categories,
cached: false,
});
} catch (error) {
next(error);
}
}
/**
* Get category datatypes
*/
async getCategoryDatatypes(req, res, next) {
try {
const datatypes = Categories.rawAttributes;
res.json({
success: true,
data: datatypes,
});
} catch (error) {
next(error);
}
}
/**
* Get subjects by category ID
*/
async getSubjectsByCategory(req, res, next) {
try {
const { id } = req.params;
const { page = 1, limit = 50, is_active } = req.query;
const offset = (page - 1) * limit;
// Generate cache key
const cacheKey = `category:${id}:subjects:${page}:${limit}:${is_active || 'all'}`;
/* Try cache first
const cached = await cacheUtils.get(cacheKey);
if (cached) {
return res.json({
success: true,
data: cached,
cached: true,
});
}
*/
// Check if category exists
const category = await Categories.findByPk(id);
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
// Build query conditions
const where = { category_id: id };
if (is_active !== undefined) where.is_active = is_active === 'true';
// Query subjects
const { count, rows } = await Subject.findAndCountAll({
where,
limit: parseInt(limit),
offset: parseInt(offset),
order: [['subject_code', 'ASC']],
});
const result = {
category: {
id: category.id,
category_code: category.category_code,
category_name: category.category_name,
},
subjects: rows,
pagination: {
total: count,
page: parseInt(page),
limit: parseInt(limit),
totalPages: Math.ceil(count / limit),
},
};
// Cache the result
await cacheUtils.set(cacheKey, result, 3600); // Cache for 1 hour
res.json({
success: true,
data: result,
cached: false,
});
} catch (error) {
next(error);
}
}
/**
* Add subject to category (Create subject within category context)
*/
async addSubjectToCategory(req, res, next) {
try {
const { categoryId } = req.params;
const { id } = req.body;
if (!id) {
return res.status(400).json({
success: false,
message: 'Subject id is required',
});
}
// Check if category exists
const category = await Categories.findByPk(categoryId);
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
// Find existing subject
const subject = await Subject.findByPk(id);
if (!subject) {
return res.status(404).json({
success: false,
message: 'Subject not found',
});
}
// Assign category
await subject.update({ category_id: categoryId });
// Clear cache
await cacheUtils.deletePattern('subjects:list:*');
await cacheUtils.deletePattern(`category:${categoryId}:subjects:*`);
res.json({
success: true,
message: 'Subject added to category successfully',
data: subject,
});
} catch (error) {
next(error);
}
}
/**
* Remove subject from category (Delete subject within category context)
*/
async removeSubjectFromCategory(req, res, next) {
try {
const { categoryId, subjectId } = req.params;
// Check if category exists
const category = await Categories.findByPk(categoryId);
if (!category) {
return res.status(404).json({
success: false,
message: 'Category not found',
});
}
// Find subject
const subject = await Subject.findOne({
where: {
id: subjectId,
category_id: categoryId,
},
});
if (!subject) {
return res.status(404).json({
success: false,
message: 'Subject not found in this category',
});
}
await subject.destroy();
// Clear cache
await cacheUtils.delete(`subject:${subjectId}`);
await cacheUtils.deletePattern('subjects:list:*');
await cacheUtils.deletePattern(`category:${categoryId}:subjects:*`);
res.json({
success: true,
message: 'Subject removed from category successfully',
});
} catch (error) {
next(error);
}
}
}
module.exports = new CategoryController();