-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
64 lines (56 loc) · 1.81 KB
/
Copy pathindex.js
File metadata and controls
64 lines (56 loc) · 1.81 KB
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
60
61
62
63
64
const express = require('express');
const Joi = require('joi');
const app = express();
app.use(express.json());
const courses = [
{"name": "course1","id":1},
{"name": "course2","id":2,},
{"name": "course3","id":3,}
]
app.get('/', (req, res) => {
res.send('Hello Node Monitor');
res.end();
});
app.get('/api/courses', (req, res) => {
res.send(JSON.stringify(courses));
})
app.get('/api/courses/:id', (req,res) => {
let course = courses.find( c => c.id === parseInt(req.params.id));
if(!course){
res.status(404).send('Course with give ID is not found');
}
res.send(course);
});
app.post('/api/courses', (req,res) => {
const {error} = validateCourse(req.body);
if(error) return res.status(400).send(error.details[0].message);
const course = {
id: courses.length+1,
name: req.body.name
}
courses.push(course);
res.send(courses);
});
app.put('/api/courses/:id', (req,res) => {
const course = courses.find( c => c.id === parseInt(req.params.id));
if(!course) return res.status(404).send('Course with give ID is not found');
const {error} = validateCourse(req.body);
if(error) return res.status(400).send(error.details[0].message);
course.name = req.body.name
res.send(course);
});
app.delete('/api/courses/:id', (req,res) => {
const course = courses.find( c => c.id === parseInt(req.params.id));
if(!course) return res.status(404).send('Course with give ID is not found');
const index = courses.indexOf(course);
courses.splice(index,1);
res.send(course);
})
function validateCourse(course){
const schema = Joi.object({
name : Joi.string().min(3).required()
});
return schema.validate(course);
}
const port = process.env.PORT || 3001
app.listen(port, () => console.log(`listening port ${port}`));