-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
83 lines (58 loc) · 1.62 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const express = require('express')
const server = express()
server.use(express.json())
let requisitionsCount = 0
let projects = [
{
id: "0",
title: "A cool project",
tasks: ["Task 1", "Task 2"]
}
]
function verifyIdExistence (req, res, next) {
let { id } = req.params
const project = projects.find(p => p.id === id)
if (!project) {
return res.status(400).json({error: 'Project not found'})
}
return next()
}
server.use((res, req, next) => {
requisitionsCount += 1
console.log(`Requisitions count: ${requisitionsCount}`)
return next()
})
server.post('/projects', (req, res) => {
let project = req.body
let id = project.id
let projectWithId = projects.find(p => p.id === id)
if (!projectWithId) {
projects.push(project)
return res.json(projects)
}
return res.status(400).json({error: 'A project with this ID has been exists'})
})
server.get('/projects', (req, res) => {
return res.json(projects)
})
server.put('/projects/:id', verifyIdExistence, (req, res) => {
let { id } = req.params
let { title } = req.body
const project = projects.find(p => p.id === id)
project.title = title
return res.json(projects)
})
server.delete('/projects/:id', verifyIdExistence, (req, res) => {
let { id } = req.params
const index = projects.findIndex(p => p.id === id)
projects.splice(index, 1)
return res.send('')
})
server.post('/projects/:id/tasks', verifyIdExistence, (req, res) => {
const { id } = req.params
const task = req.body.title
const project = projects.find(p => p.id === id)
project.tasks.push(task)
return res.json(projects)
})
server.listen(3000)