const express = require('express'); const MealsService = require('../services/meals'); const MealsDBApi = require('../db/api/meals'); const wrapAsync = require('../helpers').wrapAsync; const router = express.Router(); const { parse } = require('json2csv'); const { checkCrudPermissions } = require('../middlewares/check-permissions'); router.use(checkCrudPermissions('meals')); /** * @swagger * components: * schemas: * Meals: * type: object * properties: * meal_description: * type: string * default: meal_description * calories: * type: integer * format: int64 * protein: * type: integer * format: int64 * carbs: * type: integer * format: int64 * fats: * type: integer * format: int64 */ /** * @swagger * tags: * name: Meals * description: The Meals managing API */ /** * @swagger * /api/meals: * post: * security: * - bearerAuth: [] * tags: [Meals] * summary: Add new item * description: Add new item * requestBody: * required: true * content: * application/json: * schema: * properties: * data: * description: Data of the updated item * type: object * $ref: "#/components/schemas/Meals" * responses: * 200: * description: The item was successfully added * content: * application/json: * schema: * $ref: "#/components/schemas/Meals" * 401: * $ref: "#/components/responses/UnauthorizedError" * 405: * description: Invalid input data * 500: * description: Some server error */ router.post( '/', wrapAsync(async (req, res) => { const referer = req.headers.referer || `${req.protocol}://${req.hostname}${req.originalUrl}`; const link = new URL(referer); await MealsService.create(req.body.data, req.currentUser, true, link.host); const payload = true; res.status(200).send(payload); }), ); /** * @swagger * /api/budgets/bulk-import: * post: * security: * - bearerAuth: [] * tags: [Meals] * summary: Bulk import items * description: Bulk import items * requestBody: * required: true * content: * application/json: * schema: * properties: * data: * description: Data of the updated items * type: array * items: * $ref: "#/components/schemas/Meals" * responses: * 200: * description: The items were successfully imported * content: * application/json: * schema: * $ref: "#/components/schemas/Meals" * 401: * $ref: "#/components/responses/UnauthorizedError" * 405: * description: Invalid input data * 500: * description: Some server error * */ router.post( '/bulk-import', wrapAsync(async (req, res) => { const referer = req.headers.referer || `${req.protocol}://${req.hostname}${req.originalUrl}`; const link = new URL(referer); await MealsService.bulkImport(req, res, true, link.host); const payload = true; res.status(200).send(payload); }), ); /** * @swagger * /api/meals/{id}: * put: * security: * - bearerAuth: [] * tags: [Meals] * summary: Update the data of the selected item * description: Update the data of the selected item * parameters: * - in: path * name: id * description: Item ID to update * required: true * schema: * type: string * requestBody: * description: Set new item data * required: true * content: * application/json: * schema: * properties: * id: * description: ID of the updated item * type: string * data: * description: Data of the updated item * type: object * $ref: "#/components/schemas/Meals" * required: * - id * responses: * 200: * description: The item data was successfully updated * content: * application/json: * schema: * $ref: "#/components/schemas/Meals" * 400: * description: Invalid ID supplied * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Item not found * 500: * description: Some server error */ router.put( '/:id', wrapAsync(async (req, res) => { await MealsService.update(req.body.data, req.body.id, req.currentUser); const payload = true; res.status(200).send(payload); }), ); /** * @swagger * /api/meals/{id}: * delete: * security: * - bearerAuth: [] * tags: [Meals] * summary: Delete the selected item * description: Delete the selected item * parameters: * - in: path * name: id * description: Item ID to delete * required: true * schema: * type: string * responses: * 200: * description: The item was successfully deleted * content: * application/json: * schema: * $ref: "#/components/schemas/Meals" * 400: * description: Invalid ID supplied * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Item not found * 500: * description: Some server error */ router.delete( '/:id', wrapAsync(async (req, res) => { await MealsService.remove(req.params.id, req.currentUser); const payload = true; res.status(200).send(payload); }), ); /** * @swagger * /api/meals/deleteByIds: * post: * security: * - bearerAuth: [] * tags: [Meals] * summary: Delete the selected item list * description: Delete the selected item list * requestBody: * required: true * content: * application/json: * schema: * properties: * ids: * description: IDs of the updated items * type: array * responses: * 200: * description: The items was successfully deleted * content: * application/json: * schema: * $ref: "#/components/schemas/Meals" * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Items not found * 500: * description: Some server error */ router.post( '/deleteByIds', wrapAsync(async (req, res) => { await MealsService.deleteByIds(req.body.data, req.currentUser); const payload = true; res.status(200).send(payload); }), ); /** * @swagger * /api/meals: * get: * security: * - bearerAuth: [] * tags: [Meals] * summary: Get all meals * description: Get all meals * responses: * 200: * description: Meals list successfully received * content: * application/json: * schema: * type: array * items: * $ref: "#/components/schemas/Meals" * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Data not found * 500: * description: Some server error */ router.get( '/', wrapAsync(async (req, res) => { const filetype = req.query.filetype; const currentUser = req.currentUser; const payload = await MealsDBApi.findAll(req.query, { currentUser }); if (filetype && filetype === 'csv') { const fields = [ 'id', 'meal_description', 'calories', 'protein', 'carbs', 'fats', ]; const opts = { fields }; try { const csv = parse(payload.rows, opts); res.status(200).attachment(csv); res.send(csv); } catch (err) { console.error(err); } } else { res.status(200).send(payload); } }), ); /** * @swagger * /api/meals/count: * get: * security: * - bearerAuth: [] * tags: [Meals] * summary: Count all meals * description: Count all meals * responses: * 200: * description: Meals count successfully received * content: * application/json: * schema: * type: array * items: * $ref: "#/components/schemas/Meals" * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Data not found * 500: * description: Some server error */ router.get( '/count', wrapAsync(async (req, res) => { const currentUser = req.currentUser; const payload = await MealsDBApi.findAll(req.query, null, { countOnly: true, currentUser, }); res.status(200).send(payload); }), ); /** * @swagger * /api/meals/autocomplete: * get: * security: * - bearerAuth: [] * tags: [Meals] * summary: Find all meals that match search criteria * description: Find all meals that match search criteria * responses: * 200: * description: Meals list successfully received * content: * application/json: * schema: * type: array * items: * $ref: "#/components/schemas/Meals" * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Data not found * 500: * description: Some server error */ router.get('/autocomplete', async (req, res) => { const payload = await MealsDBApi.findAllAutocomplete( req.query.query, req.query.limit, req.query.offset, ); res.status(200).send(payload); }); /** * @swagger * /api/meals/{id}: * get: * security: * - bearerAuth: [] * tags: [Meals] * summary: Get selected item * description: Get selected item * parameters: * - in: path * name: id * description: ID of item to get * required: true * schema: * type: string * responses: * 200: * description: Selected item successfully received * content: * application/json: * schema: * $ref: "#/components/schemas/Meals" * 400: * description: Invalid ID supplied * 401: * $ref: "#/components/responses/UnauthorizedError" * 404: * description: Item not found * 500: * description: Some server error */ router.get( '/:id', wrapAsync(async (req, res) => { const payload = await MealsDBApi.findBy({ id: req.params.id }); res.status(200).send(payload); }), ); router.use('/', require('../helpers').commonErrorHandler); module.exports = router;