-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
88 lines (59 loc) · 1.75 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
84
85
86
87
const express = require('express');
const server = express();
server.use(express.json());
//Instanciando o array vazio de projetos
const projectsArray = [];
//MIDDLEWARE CountRequests global
server.use((req, res, next) => {
console.count('Request Counter');
return next();
});
//MIDDLEWARE checkProjectExists para ser usado em alguns métodos
function checkUserExists(req, res, next) {
const { id } = req.params;
const project = projectsArray.find(element => element.id === id);
if(!project) {
return res.status(400).json({error: 'Project not existant'});
}
req.project = project;
return next();
}
//POST /projects
server.post('/projects', (req, res) => {
const { id, title } = req.body;
const project = {
id,
title,
tasks:[]
}
projectsArray.push(project);
return res.json(projectsArray);
})
//GET /projects
server.get('/projects', (req, res) => {
return res.json(projectsArray);
})
//PUT /projects/:id
server.put('/projects/:id', checkUserExists, (req, res) => {
const { id } = req.params;
const { title } = req.body;
const project = projectsArray.find(element => element.id === id);
project.title = title;
return res.json(project);
});
//DELETE /projects/:id
server.delete('/projects/:id', checkUserExists, (req, res) => {
const { id } = req.params;
const index = projectsArray.findIndex(element => element.id === id);
projectsArray.splice(index, 1);
return res.send('Projeto deletado');
});
//POST /projects/:id/tasks
server.post('/projects/:id/tasks', checkUserExists, (req, res) => {
const { id } = req.params;
const { title } = req.body;
const project = projectsArray.find(element => element.id === id);
project.tasks.push(title);
return res.json(project);
});
server.listen(3333);