-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimals.js
59 lines (50 loc) · 1.38 KB
/
animals.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const express = require('express');
const { getElementById, getIndexById, updateElement,
seedElements, createElement } = require('./utils');
let animals = [];
seedElements(animals, 'animals');
animalsRouter = express.Router();
// Get all animals
animalsRouter.get('/', (req, res, next) => {
res.send(animals);
});
// Get a single animal
animalsRouter.get('/:id', (req, res, next) => {
const animal = getElementById(req.params.id, animals);
if (animal) {
res.send(animal);
} else {
res.status(404).send();
}
});
// Create an animal
animalsRouter.post('/', (req, res, next) => {
const receivedAnimal = createElement('animals', req.query);
if (receivedAnimal) {
animals.push(receivedAnimal);
res.status(201).send(receivedAnimal);
} else {
res.status(400).send();
}
});
// Update an animal
animalsRouter.put('/:id', (req, res, next) => {
const animalIndex = getIndexById(req.params.id, animals);
if (animalIndex !== -1) {
updateElement(req.params.id, req.query, animals);
res.send(animals[animalIndex]);
} else {
res.status(404).send();
}
});
// Delete a single animal
animalsRouter.delete('/:id', (req, res, next) => {
const animalIndex = getIndexById(req.params.id, animals);
if (animalIndex !== -1) {
animals.splice(animalIndex, 1);
res.status(204).send();
} else {
res.status(404).send();
}
});
module.exports = animalsRouter;