mirror of
https://github.com/pawelmalak/flame.git
synced 2024-12-20 08:41:48 +03:00
39 lines
937 B
JavaScript
39 lines
937 B
JavaScript
const asyncWrapper = require('../../middleware/asyncWrapper');
|
|
const ErrorResponse = require('../../utils/ErrorResponse');
|
|
const Category = require('../../models/Category');
|
|
const Bookmark = require('../../models/Bookmark');
|
|
|
|
// @desc Get single category
|
|
// @route GET /api/categories/:id
|
|
// @access Public
|
|
const getSingleCategory = asyncWrapper(async (req, res, next) => {
|
|
const visibility = req.isAuthenticated ? {} : { isPublic: true };
|
|
|
|
const category = await Category.findOne({
|
|
where: { id: req.params.id, ...visibility },
|
|
include: [
|
|
{
|
|
model: Bookmark,
|
|
as: 'bookmarks',
|
|
where: visibility,
|
|
},
|
|
],
|
|
});
|
|
|
|
if (!category) {
|
|
return next(
|
|
new ErrorResponse(
|
|
`Category with id of ${req.params.id} was not found`,
|
|
404
|
|
)
|
|
);
|
|
}
|
|
|
|
res.status(200).json({
|
|
success: true,
|
|
data: category,
|
|
});
|
|
});
|
|
|
|
module.exports = getSingleCategory;
|