|
| 1 | +const { models } = require('../../sequelize'); |
| 2 | +const { getIdParam } = require('../helpers'); |
| 3 | + |
| 4 | +async function getAll(req, res) { |
| 5 | + const orchestras = 'includeInstruments' in req.query ? |
| 6 | + await models.orchestra.findAll({ include: models.instrument }) : |
| 7 | + await models.orchestra.findAll(); |
| 8 | + res.status(200).json(orchestras); |
| 9 | +}; |
| 10 | + |
| 11 | +async function getById(req, res) { |
| 12 | + const id = getIdParam(req); |
| 13 | + const orchestra = 'includeInstruments' in req.query ? |
| 14 | + await models.orchestra.findByPk(id, { include: models.instrument }) : |
| 15 | + await models.orchestra.findByPk(id); |
| 16 | + if (orchestra) { |
| 17 | + res.status(200).json(orchestra); |
| 18 | + } else { |
| 19 | + res.status(404).send('404 - Not found'); |
| 20 | + } |
| 21 | +}; |
| 22 | + |
| 23 | +async function create(req, res) { |
| 24 | + if (req.body.id) { |
| 25 | + res.status(400).send(`Bad request: ID should not be provided, since it is determined automatically by the database.`) |
| 26 | + } else { |
| 27 | + await models.orchestra.create(req.body); |
| 28 | + res.status(201).end(); |
| 29 | + } |
| 30 | +}; |
| 31 | + |
| 32 | +async function update(req, res) { |
| 33 | + const id = getIdParam(req); |
| 34 | + |
| 35 | + // We only accept an UPDATE request if the `:id` param matches the body `id` |
| 36 | + if (req.body.id === id) { |
| 37 | + await models.orchestra.update(req.body, { |
| 38 | + where: { |
| 39 | + id: id |
| 40 | + } |
| 41 | + }); |
| 42 | + res.status(200).end(); |
| 43 | + } else { |
| 44 | + res.status(400).send(`Bad request: param ID (${id}) does not match body ID (${req.body.id}).`); |
| 45 | + } |
| 46 | +}; |
| 47 | + |
| 48 | +async function remove(req, res) { |
| 49 | + const id = getIdParam(req); |
| 50 | + await models.orchestra.destroy({ |
| 51 | + where: { |
| 52 | + id: id |
| 53 | + } |
| 54 | + }); |
| 55 | + res.status(200).end(); |
| 56 | +}; |
| 57 | + |
| 58 | +module.exports = { |
| 59 | + getAll, |
| 60 | + getById, |
| 61 | + create, |
| 62 | + update, |
| 63 | + remove, |
| 64 | +}; |
0 commit comments