-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest.js
35 lines (26 loc) · 1018 Bytes
/
rest.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
const express = require('express');
const instruments = require('./data/instruments');
var router = express.Router();
router.get('/', function (req, res) {
res.send(instruments);
})
router.get('/:build_id', function (req, res) {
console.log(req.params);
var instrument = instruments.find(function (i) { return i.build == req.params.build_id });
if( !instrument ) {
return res.status(404).send('Could not find instrument with build ' + req.params.build_id);
}
res.send(instrument);
})
router.put('/:build_id', function (req, res) {
var instrument = instruments.find(function (i) { return i.build == req.params.build_id });
if( !instrument ) {
return res.status(404).send('Could not find instrument with build ' + req.params.build_id);
}
console.log(req.body);
instrument.customer = req.body.customer || instrument.customer;
instrument.build = req.body.build || instrument.build;
instrument.product = req.body.product || instrument.product;
res.send(instrument);
})
module.exports = router;