-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
47 lines (38 loc) · 1.2 KB
/
app.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
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const Vehicles = require('./vehicles');
app.use(bodyParser.urlencoded());
app.use(bodyParser.json());
app.post('/vehicles', async function(req, res){
let vehicles = await Vehicles.query(req.body.modelYear, req.body.manufacturer, req.body.model);
if(req.query.withRating === 'true'){
await vehicles.populateCrashRatings();
}
res.status(200).json(vehicles);
});
app.get('/vehicles/:year/:manufacturer/:model', async function(req, res){
let vehicles = await Vehicles.query(req.year, req.manufacturer, req.model);
if(req.query.withRating === 'true'){
await vehicles.populateCrashRatings();
}
res.status(200).json(vehicles);
});
app.param('year', function(req, res, next, year){
req.year = 1 * year;
next();
});
app.param('manufacturer', function (req, res, next, manufacturer){
req.manufacturer = manufacturer;
next();
})
app.param('model', function (req, res, next, model){
req.model = model;
next();
})
app.use((req, res) => {
res.status(404).json('Not Found');
})
app.listen(8888, function(){
console.log('serving on: localhost:8888');
});